/* Specific styles for women page */
.women-banner {
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: visible;
}

.women-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.women-banner h1 {
    position: absolute;
    color: white;
    font-size: 3rem;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.women-page .container {
    padding-top: 0;
}

.page-header {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.page-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
}

/* Women page hover colors: light blue card tint */
.women-page .product-card:hover {
    background: rgba(11, 77, 186, 0.12);
    border-color: rgba(11, 77, 186, 0.35);
}

.women-page .product-card:hover h3,
.women-page .product-card:hover p {
    color: #111;
}

/* Enforce 3 columns for product grid on women page */
.women-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .women-page .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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