/* ========================================
   WOMEN.CSS - Women's Collection Page Styles
   ======================================== */

/* ========== CATEGORY HERO ========== */
.category-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    margin-top: 0;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.men-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                      url('https://images.unsplash.com/photo-1617137968427-85924c800a22?w=1200&auto=format&fit=crop');
}

.women-hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                      url('https://images.unsplash.com/photo-1567401893414-76b7b1e5a7a5?w=1200&auto=format&fit=crop');
}

.category-hero-content {
    position: relative;
    z-index: 1;
}

.category-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.category-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ========== CATEGORY FILTER BAR ========== */
.category-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 15px;
}

.filter-left,
.filter-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FILTER DROPDOWNS ========== */
.filter-select-wrapper {
    position: relative;
    display: inline-block;
}

.filter-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 12px 45px 12px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111111;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.filter-select:hover {
    border-color: #D4AF37;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.filter-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.filter-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #777777;
    font-size: 0.7rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.filter-select-wrapper:hover::after {
    color: #D4AF37;
}

/* ========== FILTER PILL BUTTONS ========== */
.filter-options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-option-btn {
    padding: 10px 24px;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    background: #FFFFFF;
    color: #777777;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option-btn:hover {
    border-color: #D4AF37;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.filter-option-btn.active {
    border-color: #D4AF37;
    background: #D4AF37;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.filter-option-btn.active:hover {
    background: #C49A2E;
    border-color: #C49A2E;
}

/* ========== CATEGORY PRODUCTS ========== */
.category-products {
    padding-top: 40px;
}

.category-products .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ========== RESPONSIVE ========== */

/* Tablets & Small Laptops */
@media screen and (max-width: 992px) {
    .category-hero {
        height: 280px;
    }
    
    .category-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .category-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px;
    }
    
    .filter-left,
    .filter-right {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .filter-select {
        min-width: 140px;
        padding: 10px 40px 10px 16px;
        font-size: 0.85rem;
    }
    
    .category-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .category-hero {
        height: 220px;
    }
    
    .category-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .category-hero-content p {
        font-size: 1rem;
    }
    
    .category-filter-bar {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .filter-left,
    .filter-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .filter-select-wrapper {
        flex: 1;
        min-width: 120px;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
        padding: 10px 35px 10px 14px;
        font-size: 0.8rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .filter-options-group {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .filter-option-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .category-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-products {
        padding-top: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .category-hero {
        height: 180px;
    }
    
    .category-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .category-hero-content p {
        font-size: 0.85rem;
    }
    
    .category-filter-bar {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .filter-left,
    .filter-right {
        gap: 8px;
    }
    
    .filter-select-wrapper {
        flex: 1;
        min-width: 100px;
    }
    
    .filter-select {
        padding: 8px 30px 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .filter-select-wrapper::after {
        right: 12px;
        font-size: 0.6rem;
    }
    
    .filter-label {
        font-size: 0.7rem;
        min-width: 40px;
    }
    
    .filter-options-group {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .filter-option-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 30px;
    }
    
    .category-products .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .category-products {
        padding-top: 20px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 375px) {
    .category-hero {
        height: 150px;
    }
    
    .category-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .category-hero-content p {
        font-size: 0.75rem;
    }
    
    .filter-options-group {
        gap: 5px;
    }
    
    .filter-option-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .category-products .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}