/* Collection Page Styles */
:root {
    --primary-color: #ff0066;
    --secondary-color: #000000;
    --accent-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #444444;
    --font-main: 'Montserrat', sans-serif;
    --gold-accent: #d4af37;
}

/* Collection Banner */
.collection-banner {
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.hero-banner {
    height: 500px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    filter: contrast(1.1) saturate(1.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.banner-content {
    padding: 30px 20px;
    max-width: 800px;
    z-index: 2;
    margin-bottom: 40px;
}

.collection-title {
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.collection-subtitle {
    color: var(--light-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Filter Section */
.filter-section {
    padding: 0 0 40px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: 8px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.filter-group, .sort-group {
    flex: 1;
    min-width: 200px;
}

.filter-group h3, .sort-group h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brand-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.filter-label:hover {
    color: var(--primary-color);
}

.filter-label input {
    margin-right: 10px;
}

.price-filter {
    width: 100%;
}

.price-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 2px;
    margin-bottom: 10px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.sort-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background-color: var(--light-color);
    cursor: pointer;
}

/* Products Grid */
.products-section {
    padding: 20px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-item {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom effect on hover - subtle scale between 5-10% */
.product-item:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.product-sizes span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-sizes span:hover, .product-sizes span.selected {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-color: var(--secondary-color);
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background-color: var(--primary-color);
}

.view-set-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.view-set-btn:hover {
    background-color: var(--primary-color);
}

.load-more {
    text-align: center;
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .filter-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-group, .sort-group {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .collection-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .collection-banner {
        padding: 20px 0 30px;
    }
    
    .collection-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-sizes {
        gap: 5px;
    }
    
    .product-sizes span {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .add-to-cart {
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* Animation for new products */
@keyframes newProductBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
