/* Phat Gorrilla POD Grid - Isolated Styles */
#phat-gorrilla-store { max-width: 1200px; margin: 40px auto; }
.pg-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pg-card { background: #1a1a1a; border: 1px solid #333; border-radius: 8px; overflow: hidden; color: #fff; text-align: left; }
.pg-image-box { position: relative; width: 100%; aspect-ratio: 1/1; background: #000; }
.pg-image-box img { width: 100%; height: 100%; object-fit: cover; }
.pg-badge { position: absolute; top: 10px; left: 10px; background: #fff; color: #000; padding: 4px 8px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; border-radius: 3px; }
.pg-info { padding: 20px; }
.pg-title { font-size: 1.1rem; margin: 0 0 5px 0; color: #fff; font-weight: bold; }
.pg-price { font-weight: bold; color: #ccc; margin-bottom: 10px; }
.pg-desc { font-size: 0.9rem; color: #888; margin-bottom: 20px; line-height: 1.4; }
.pg-buy-btn { display: block; width: 100%; text-align: center; background: #fff; color: #000; padding: 12px; text-decoration: none; font-weight: bold; text-transform: uppercase; border-radius: 4px; transition: 0.2s; }
.pg-buy-btn:hover { background: #e0e0e0; }
