/* Women's Page Specific Styles */

.womens-hero {
    display: flex;
    height: 80vh;
    margin-top: 80px;
    background-color: #F9F9F9;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
}

.category-tag {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.hero-text-side h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text-side p {
    color: #555;
    max-width: 400px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.explore-btn {
    align-self: flex-start;
    padding: 1rem 3rem;
    border: 1px solid var(--black);
    text-decoration: none;
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--black);
    color: var(--white);
}

.hero-image-side {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
}

/* Filter Bar */
.womens-filter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
}

.filter-link {
    background: none;
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.filter-link.active, .filter-link:hover {
    color: var(--gold);
}

.filter-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

/* Women's Product Grid */
.womens-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.womens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.img-wrapper {
    position: relative;
    height: 450px;
    background: #fff;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.womens-card:hover img {
    transform: scale(1.08);
}

.wishlist-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--black);
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-icon:hover {
    color: var(--gold);
}

.womens-info {
    padding: 1.5rem 0;
    text-align: left;
}

.womens-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.womens-info .price {
    font-weight: 300;
    color: #666;
    margin-bottom: 1rem;
}

.shop-now {
    background: none;
    border: none;
    border-bottom: 1px solid var(--black);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding-bottom: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-now:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 800px) {
    .womens-hero { flex-direction: column; height: auto; }
    .hero-image-side { height: 400px; order: -1; }
    .hero-text-side { padding: 3rem 1.5rem; }
    .womens-filter { overflow-x: auto; justify-content: flex-start; padding: 2rem 1rem; }
}