/* assets/css/women.css */

:root {
    --mauve: #B79AC5;
    --noir: #1A1A1A;
    --or: #D4AF8C;
    --blanc-casse: #F9F7F5;
    --gris: #3E3E3E;
    --rose-pale: #FCE4EC;
    --charcoal: #2C2C2C;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Montserrat', sans-serif;
}

/* ----- RESET SUPPLEMENTAIRE POUR MOBILE (comme men.css) ----- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ----- HERO ----- */
.women-hero {
    padding: 60px 0;
    background: linear-gradient(145deg, #FDF8F5 0%, #F9F0ED 100%);
}
.women-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.women-hero-text h1 {
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 700;
    color: var(--noir);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gris);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
}
.women-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-png {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
}

/* ----- COLLECTIONS ----- */
.women-collections {
    padding: 80px 0;
    background: white;
}
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}
.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(183, 154, 197, 0.1);
}
.collection-card .card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.collection-card:hover img {
    transform: scale(1.05);
}
.collection-names {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--noir);
}
.collection-name {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

/* ----- FULL-WIDTH BANNER – texte noir ----- */
.women-banner {
    width: 100%;
    padding: 0;
}
.banner-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner-full-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
}
.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    text-shadow: 0 2px 8px rgba(255,255,255,0.3);
    width: 80%;
    max-width: 800px;
}
.banner-text-overlay h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.banner-text-overlay p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ----- PRODUCTS CAROUSEL – sans barres, sans flèches ----- */
.women-products-carousel {
    padding: 80px 0;
    background: white;
}
.products-scroll-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 40px;
    padding-bottom: 10px;
}
.products-scroll-container::-webkit-scrollbar {
    display: none;
}
.products-scroll-track {
    display: flex;
    gap: 25px;
    width: max-content;
}
.product-card {
    flex: 0 0 260px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s;
}
.product-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}
.product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.product-card h4 {
    font-family: var(--font-texte);
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 15px 5px;
    color: var(--noir);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-price {
    margin: 0 15px 15px;
    font-weight: 600;
    color: var(--mauve);
    font-size: 1.1rem;
}
.add-to-cart-btn {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 20px;
    padding: 12px 0;
    background: var(--noir);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    min-height: 45px; /* hauteur uniforme */
}
.add-to-cart-btn:hover {
    background: var(--mauve);
    color: white;
}

/* ----- INTERACTIVE COLORS – portraits 260px avec prix ----- */
.women-colors-interactive {
    padding: 80px 0;
    background: var(--blanc-casse);
}
.color-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.color-filter-circles {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.color-circle.active {
    border-color: var(--noir);
    transform: scale(1.1);
}
.color-circle:hover {
    transform: scale(1.1);
}
.color-showcase-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.color-landscape {
    flex: 0 0 55%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.color-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color-portraits-scroll {
    flex: 0 0 40%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}
.color-portraits-scroll::-webkit-scrollbar {
    display: none;
}
.portraits-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.portrait-item {
    flex: 0 0 260px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}
.portrait-item img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.portrait-info {
    padding: 15px 12px;
}
.portrait-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--noir);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portrait-price {
    font-weight: 600;
    color: var(--mauve);
    font-size: 1rem;
}
.color-shop-link {
    text-align: center;
    margin-top: 30px;
}
.color-shop-link a {
    color: var(--mauve);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
.color-shop-link a:hover {
    border-bottom-color: var(--mauve);
}

/* ----- FOOTER (IDENTIQUE À MEN.CSS) ----- */
.site-footer {
    background-color: var(--noir);
    color: var(--blanc-casse);
    padding: 60px 0 30px;
    font-family: var(--font-texte);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 12px;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.footer-col a:hover {
    color: var(--mauve);
}
.footer-logo {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    color: white;
}
.footer-contact p {
    margin: 5px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.payment-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
}
.payment-icons i {
    transition: color 0.2s;
}
.payment-icons i:hover {
    color: var(--mauve);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ----- RESPONSIVE (spécifique à la page + footer identique à men.css) ----- */
@media (max-width: 1024px) {
    .women-hero-content { grid-template-columns: 1fr; text-align: center; }
    .women-hero-image { order: -1; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-names { font-size: 1.1rem; }
    .color-showcase-layout { flex-direction: column; }
    .color-landscape { flex: auto; width: 100%; }
    .color-portraits-scroll { flex: auto; width: 100%; }
    .portrait-item { flex: 0 0 220px; }
    /* Footer optionnel – desktop reste 4 colonnes, pas de changement */
}

@media (max-width: 768px) {
    /* Conteneur principal – mêmes règles que men.css */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Hero */
    .women-hero-text h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    /* Collections */
    .collections-grid { grid-template-columns: 1fr; }
    .collection-names { font-size: 1rem; }
    
    /* Bannière */
    .banner-full-image { aspect-ratio: 16/6; }
    .banner-text-overlay h3 { font-size: 1.6rem; }
    .banner-text-overlay p { font-size: 1rem; }
    
    /* Produits */
    .product-card { flex: 0 0 220px; }
    
    /* Interactive colors */
    .portrait-item { flex: 0 0 200px; }
    .color-circle { width: 35px; height: 35px; }
    
    /* Bouton ajout panier */
    .add-to-cart-btn {
        padding: 10px 0;
        min-height: 42px;
        font-size: 0.75rem;
    }

    /* ----- FOOTER (identique à men.css 768px) ----- */
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .payment-icons {
        font-size: 1.8rem;
        gap: 12px;
        flex-wrap: wrap;
    }
    .footer-col ul {
        margin-bottom: 10px;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    /* Hero */
    .women-hero-text h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    
    /* Collections */
    .collection-names { flex-direction: column; gap: 10px; }
    
    /* Produits */
    .product-card { flex: 0 0 180px; }
    
    /* Interactive colors */
    .portrait-item { flex: 0 0 180px; }
    .color-circle { width: 30px; height: 30px; }
    .color-filter-circles { gap: 10px; }
    
    /* Bannière */
    .banner-text-overlay h3 { font-size: 1.3rem; }
    .banner-text-overlay p { font-size: 0.85rem; }
    
    /* Bouton ajout panier */
    .add-to-cart-btn {
        min-height: 40px;
        font-size: 0.7rem;
    }

    /* ----- FOOTER (identique à men.css 576px) ----- */
    .payment-icons {
        font-size: 1.6rem;
        gap: 10px;
    }
    .footer-contact p {
        font-size: 0.8rem;
    }
}

/* ----- FOOTER – très petits écrans (identique à men.css) ----- */
@media (max-width: 400px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .payment-icons {
        font-size: 1.4rem;
    }
}