/* Product Grid Styles */
.product-grid-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #000;
    color: #fff;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.results-count {
    font-size: 0.9rem;
    color: #666;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    background: #fff;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.exclusive {
    background: #000;
}

.product-badge.new {
    background: #3498db;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    background: #000;
    color: white;
}

.wishlist-btn.active {
    background: #e74c3c;
    color: white;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #ffffff;
    overflow: hidden;
    display: block;
}

.product-image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image-container img {
    transform: translate(-50%, -50%) scale(1.05);
}

.product-info {
    padding: 20px 10px;
}

.product-brand {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
    min-height: 48px;
}

.product-name a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #666;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.product-colors {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.color-indicator {
    font-size: 0.85rem;
    color: #666;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

.product-features {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    background: #f0f0f0;
    color: #666;
    border-radius: 3px;
}

.feature-tag.polarized {
    background: #000;
    color: #fff;
}

/* Promotional Banner */
.promo-banner {
    grid-column: 1 / -1;
    position: relative;
    height: 400px;
    background: #000;
    overflow: hidden;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.promo-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.promo-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-grid-section {
        padding: 40px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-name {
        font-size: 0.9rem;
        min-height: auto;
    }

    .product-price {
        font-size: 1rem;
    }

    .promo-banner {
        height: 300px;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
