/* ============================================================
   WAHOUZ — HOMEPAGE
   Fichier : wahouz-homepage.css
   ============================================================ */

/* ==================== WISHLIST BUTTON (coeur sur cards homepage) ==================== */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--wahouz-gris-moyen, #5f5f5d);
    fill: none;
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn:hover svg {
    stroke: #e74c3c;
}

.wishlist-btn.active svg {
    stroke: #e74c3c;
    fill: #e74c3c;
}

/* ==================== WISHLIST BUTTON WRAP (plugin WooCommerce Wishlists — catégorie/produit) ==================== */
.wishlist-btn-wrap {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

.wishlist-btn-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0;
    color: transparent;
    text-decoration: none !important;
    overflow: hidden;
    padding: 0;
}

.wishlist-btn-wrap a::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f5f5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    flex-shrink: 0;
}

.wishlist-btn-wrap a:hover {
    transform: scale(1.1);
}

.wishlist-btn-wrap a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
}

/* Hide plugin button text */
.wishlist-btn-wrap span,
.wishlist-btn-wrap img {
    display: none !important;
}

/* ==================== LANDING (100vh wrapper) ==================== */
.landing {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(18, 15, 12, 0.75) 0%,
        rgba(18, 15, 12, 0.2) 50%,
        rgba(18, 15, 12, 0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
}

/* --- Hero : Colonne gauche (texte) --- */
.hero-text {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 72px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-slogan {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 300;
    color: var(--wahouz-white);
    line-height: 1.3;
    margin-bottom: 4px;
}

.hero-slogan-bar {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: linear-gradient(to right, var(--wahouz-bleu-vert), var(--wahouz-bleu-vert-dark));
    margin-bottom: 12px;
}

.hero-description {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 8px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.hero-cta--primary {
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    border: 2px solid var(--wahouz-bleu-vert);
}

.hero-cta--primary:hover {
    background: linear-gradient(to right, var(--wahouz-bleu-vert-light), var(--wahouz-bleu-vert-dark));
    border-color: var(--wahouz-bleu-vert-dark);
}

.hero-cta--secondary {
    background: transparent;
    color: var(--wahouz-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--wahouz-white);
}

/* --- Hero : Colonne droite (blocs catégories style carte noire) --- */
.hero-categories {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 0;
}

.hero-category {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    width: 400px;
    background: var(--wahouz-noir-pur);
    padding: 0 14px 14px;
}

.hero-category-label {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--wahouz-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 14px 2px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-category-dot {
    width: 6px;
    height: 6px;
    background: var(--wahouz-bleu-vert);
    flex-shrink: 0;
    display: inline-block;
}

.hero-category-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.hero-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}

/* Hover : zoom + darken + texte "Découvrir" */
.hero-category-img-wrap::after {
    content: 'Découvrir';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--wahouz-white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.hero-category:hover .hero-category-img {
    transform: scale(1.12);
    filter: brightness(0.5);
}

.hero-category:hover .hero-category-img-wrap::after {
    opacity: 1;
}


/* ==================== BARRE STATS + FOURNISSEURS ==================== */
.stats-bar {
    background: var(--wahouz-noir-pur);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-bar-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 900;
    color: var(--wahouz-bleu-vert);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: capitalize;
}

.stats-logo {
    height: 60px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
}

.stats-logo:hover {
    transform: scale(1.1);
}


/* ==================== RESPONSIVE — HERO + STATS ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding: 24px 24px;
        gap: 24px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-slogan {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-category {
        width: 220px;
    }

    .hero-category-img-wrap {
        height: 140px;
    }

    .hero-category-label {
        font-size: 13px;
        padding: 12px 14px 8px;
    }

    .stats-bar {
        padding: 16px 20px;
    }

    .stats-numbers {
        gap: 32px;
    }

    .stat-value {
        font-size: 26px;
    }

    .stats-suppliers-logos img {
        height: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .landing {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
        padding: 24px 16px 20px;
        gap: 20px;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-slogan {
        font-size: 18px;
    }

    .hero-slogan-bar {
        max-width: 240px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 13px;
    }

    .hero-categories {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        align-self: auto;
    }

    .hero-category {
        width: 100%;
    }

    .hero-category-img-wrap {
        height: 120px;
    }

    .hero-category-label {
        font-size: 12px;
        padding: 10px 12px 8px;
    }

    /* Stats bar mobile : masquer chiffres, garder logos fournisseurs */
    .stats-bar {
        padding: 14px 16px;
    }

    .stat-item {
        display: none;
    }

    .stats-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stats-logo {
        height: 36px;
    }
}


/* ============================================================
   SECTION : NOUVEAUTÉS
   ============================================================ */
.section-nouveautes {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    background: var(--wahouz-white, #F8F8F8);
}

.section-nouveautes-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-nouveautes-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-nouveautes-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--wahouz-noir-pur);
    line-height: 1;
}

.section-nouveautes-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--wahouz-bleu-vert), var(--wahouz-bleu-vert-dark));
}

.section-nouveautes-btn {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-bleu-vert);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    align-self: center;
}

.section-nouveautes-btn:hover {
    color: var(--wahouz-bleu-vert-dark);
}

/* Grille des 4 cards */
.section-nouveautes-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card produit */
.nouveaute-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nouveaute-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.nouveaute-card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.nouveaute-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Badge Nouveau */
.nouveaute-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    z-index: 2;
}

.nouveaute-card-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nouveaute-card-name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-noir-pur);
}

.nouveaute-card-specs {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
    letter-spacing: 0.02em;
}

.nouveaute-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 4px;
}

.nouveaute-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nouveaute-card-price-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.nouveaute-card-price {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 900;
    color: var(--wahouz-bleu-vert);
}

.nouveaute-card-price-unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.nouveaute-card-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--wahouz-bleu-vert);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nouveaute-card:hover .nouveaute-card-link {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   SECTION : PIERRE NATURELLE
   ============================================================ */
.section-pierre-naturelle {
    height: 30vh;
    background: var(--wahouz-noir-pur);
    padding: 14px;
}

.section-pierre-naturelle-inner {
    width: 100%;
    height: 100%;
}

.section-pierre-naturelle-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.section-pierre-naturelle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-pierre-naturelle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(18, 15, 12, 0.65) 0%,
        rgba(18, 15, 12, 0.25) 60%,
        rgba(18, 15, 12, 0) 100%
    );
    z-index: 1;
}

.section-pierre-naturelle-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    max-width: 550px;
}

.section-pierre-naturelle-title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1.1;
}

.section-pierre-naturelle-desc {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.section-pierre-naturelle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    margin-top: 4px;
}

.section-pierre-naturelle-btn:hover {
    background: linear-gradient(to right, var(--wahouz-bleu-vert-light), var(--wahouz-bleu-vert-dark));
}


/* ==================== RESPONSIVE — NOUVEAUTÉS + PIERRE NATURELLE ==================== */

@media (max-width: 1024px) {
    .section-nouveautes {
        height: auto;
        padding: 48px 24px;
    }

    .section-nouveautes-title {
        font-size: 36px;
    }

    .section-nouveautes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-pierre-naturelle-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .section-nouveautes {
        padding: 40px 16px;
        overflow: hidden;
    }

    .section-nouveautes-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 24px;
    }

    .section-nouveautes-title {
        font-size: 32px;
    }

    .section-nouveautes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
    }

    .section-nouveautes-grid::-webkit-scrollbar {
        display: none;
    }

    .nouveaute-card {
        min-width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        width: calc(100vw - 32px) !important;
        scroll-snap-align: center;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .nouveaute-card-info {
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-pierre-naturelle {
        height: 30vh;
    }

    .section-pierre-naturelle-content {
        padding: 24px 20px;
    }

    .section-pierre-naturelle-title {
        font-size: 22px;
    }

    .section-pierre-naturelle-desc {
        font-size: 13px;
    }

    .section-pierre-naturelle-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}


/* ============================================================
   SECTION : COUP DE COEUR (100vh — fond teal)
   ============================================================ */
.section-coup-de-coeur {
    min-height: 100vh;
    background: var(--wahouz-bleu-vert);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
}

.coup-de-coeur-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- Colonne gauche : visuel produit --- */
.coup-de-coeur-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coup-de-coeur-img-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

/* Liseré décoratif décalé derrière l'image */
.coup-de-coeur-img-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
    pointer-events: none;
}

.coup-de-coeur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coup-de-coeur-img-frame:hover .coup-de-coeur-img {
    transform: scale(1.04);
}

/* --- Colonne droite : contenu --- */
.coup-de-coeur-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}

/* Badge "Coup de coeur" */
.coup-de-coeur-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wahouz-jaune-ocre, #d8af55);
    color: var(--wahouz-white);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    align-self: flex-start;
}

.coup-de-coeur-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Titre produit */
.coup-de-coeur-title {
    font-family: var(--font-main);
    font-size: 56px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

/* Spécifications produit */
.coup-de-coeur-specs {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

/* Séparateur */
.coup-de-coeur-separator {
    width: 60px;
    height: 3px;
    background: var(--wahouz-jaune-ocre, #d8af55);
}

/* Description */
.coup-de-coeur-desc {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Prix */
.coup-de-coeur-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.coup-de-coeur-price-from {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.coup-de-coeur-price-value {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.coup-de-coeur-price-unit {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* CTAs */
.coup-de-coeur-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.coup-de-coeur-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    text-align: center;
}

.coup-de-coeur-cta--primary {
    background: var(--wahouz-white);
    color: var(--wahouz-bleu-vert);
    border: 2px solid var(--wahouz-white);
}

.coup-de-coeur-cta--primary:hover {
    background: transparent;
    color: var(--wahouz-white);
}

.coup-de-coeur-cta--secondary {
    background: transparent;
    color: var(--wahouz-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.coup-de-coeur-cta--secondary:hover {
    border-color: var(--wahouz-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== RESPONSIVE — COUP DE COEUR ==================== */

@media (max-width: 1024px) {
    .section-coup-de-coeur {
        padding: 60px 24px;
    }

    .coup-de-coeur-inner {
        gap: 48px;
    }

    .coup-de-coeur-title {
        font-size: 42px;
    }

    .coup-de-coeur-price-value {
        font-size: 34px;
    }

    .coup-de-coeur-img-frame {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .section-coup-de-coeur {
        padding: 48px 16px;
    }

    .coup-de-coeur-inner {
        flex-direction: column;
        gap: 32px;
    }

    .coup-de-coeur-visual {
        width: 100%;
    }

    .coup-de-coeur-img-frame {
        max-width: 100%;
        aspect-ratio: 3 / 2;
    }

    .coup-de-coeur-img-frame::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .coup-de-coeur-content {
        max-width: 100%;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .coup-de-coeur-badge {
        align-self: center;
    }

    .coup-de-coeur-title {
        font-size: 36px;
    }

    .coup-de-coeur-price-value {
        font-size: 32px;
    }

    .coup-de-coeur-cta {
        width: 100%;
        padding: 14px 24px;
    }
}


/* ============================================================
   SECTION : PRODUITS À LA UNE + POSE & OUTILLAGE (100vh)
   ============================================================ */
.section-une-pose {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ====== Partie haute : Produits à la une (70vh) ====== */
.section-une {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    background: var(--wahouz-white, #F8F8F8);
}

.section-une-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-une-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-une-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--wahouz-noir-pur);
    line-height: 1;
}

.section-une-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--wahouz-bleu-vert), var(--wahouz-bleu-vert-dark));
}

.section-une-btn {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-bleu-vert);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    align-self: center;
}

.section-une-btn:hover {
    color: var(--wahouz-bleu-vert-dark);
}

/* Grille des 4 cards */
.section-une-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card produit à la une (même style que nouveautés) */
.une-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.une-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.une-card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.une-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.une-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wahouz-noir-pur, #120F0C);
    color: #fff;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    z-index: 2;
}

.une-card-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.une-card-name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-noir-pur);
}

.une-card-specs {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
    letter-spacing: 0.02em;
}

.une-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 4px;
}

.une-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.une-card-price-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.une-card-price {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 900;
    color: var(--wahouz-bleu-vert);
}

.une-card-price-unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.une-card-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--wahouz-bleu-vert);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.une-card:hover .une-card-link {
    opacity: 1;
    transform: translateX(0);
}

/* ====== Partie basse : Pose & Outillage (30vh, fond noir) ====== */
.section-pose-outillage {
    height: 30vh;
    background: var(--wahouz-noir-pur);
    padding: 14px;
}

.section-pose-outillage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

/* Carte Pose / Outillage */
.pose-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.pose-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pose-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pose-card:hover .pose-card-bg img {
    transform: scale(1.06);
}

/* Overlay gradient sur l'image */
.pose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(18, 15, 12, 0.85) 0%,
        rgba(18, 15, 12, 0.4) 50%,
        rgba(18, 15, 12, 0.15) 100%
    );
    z-index: 1;
}

.pose-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pose-card-title {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1.15;
}

.pose-card-desc {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 420px;
}

.pose-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    transition: all var(--transition-smooth);
    align-self: flex-start;
    margin-top: 4px;
}

.pose-card:hover .pose-card-cta {
    background: linear-gradient(to right, var(--wahouz-bleu-vert-light), var(--wahouz-bleu-vert-dark));
}

/* ==================== RESPONSIVE — PRODUITS À LA UNE + POSE ==================== */

@media (max-width: 1024px) {
    .section-une {
        padding: 48px 24px;
    }

    .section-une-title {
        font-size: 36px;
    }

    .section-une-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-pose-outillage-inner {
        height: 100%;
    }

    .pose-card-title {
        font-size: 24px;
    }

    .pose-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .section-une-pose {
        min-height: auto;
    }

    .section-une {
        height: auto;
        padding: 40px 16px;
        overflow: hidden;
    }

    .section-une-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .section-une-btn {
        align-self: center;
    }

    .section-une-title {
        font-size: 32px;
    }

    .section-une-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
    }

    .section-une-grid::-webkit-scrollbar {
        display: none;
    }

    .une-card {
        min-width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        width: calc(100vw - 32px) !important;
        scroll-snap-align: center;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .une-card-info {
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .une-card-img-wrap {
        aspect-ratio: 4 / 3;
        flex: none;
    }

    .section-pose-outillage {
        display: none;
    }
}


/* ============================================================
   SECTION : PROMOTIONS
   ============================================================ */
.section-promos {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    background: var(--wahouz-white, #F8F8F8);
}

.section-promos-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-promos-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-promos-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--wahouz-noir-pur);
    line-height: 1;
}

.section-promos-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--wahouz-bleu-vert), var(--wahouz-bleu-vert-dark));
}

.section-promos-btn {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-bleu-vert);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    align-self: center;
}

.section-promos-btn:hover {
    color: var(--wahouz-bleu-vert-dark);
}

/* Grille des 4 cards promo */
.section-promos-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card promo */
.promo-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.promo-card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.promo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Badge promo (rouge/ocre) */
.promo-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c0392b;
    color: #fff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    z-index: 2;
}

.promo-card-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-card-name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-noir-pur);
}

.promo-card-specs {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
    letter-spacing: 0.02em;
}

.promo-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 4px;
}

.promo-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-card-price-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.promo-card-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.promo-card-old-price {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
    text-decoration: line-through;
}

.promo-card-price {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 900;
    color: #c0392b;
}

.promo-card-price-unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

.promo-card-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--wahouz-bleu-vert);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-card:hover .promo-card-link {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== RESPONSIVE — PROMOTIONS ==================== */

@media (max-width: 1024px) {
    .section-promos {
        padding: 48px 24px;
    }

    .section-promos-title {
        font-size: 36px;
    }

    .section-promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-promos {
        padding: 40px 16px;
        overflow: hidden;
    }

    .section-promos-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 24px;
    }

    .section-promos-title {
        font-size: 32px;
    }

    .section-promos-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
    }

    .section-promos-grid::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        min-width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        width: calc(100vw - 32px) !important;
        scroll-snap-align: center;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .promo-card-info {
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


/* ============================================================
   SECTION : CONTACT RAPIDE + FAQ
   ============================================================ */
.section-faq {
    background: var(--wahouz-white, #F8F8F8);
    padding: 80px 40px;
}

.section-faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* --- Bloc contact rapide (gauche) --- */
.faq-contact {
    background: var(--wahouz-noir-pur);
    padding: 48px 40px;
    position: sticky;
    top: 40px;
}

.faq-contact-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-contact-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wahouz-bleu-vert);
}

.faq-contact-title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 900;
    color: var(--wahouz-white);
    line-height: 1.15;
}

.faq-contact-desc {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    border: 2px solid var(--wahouz-bleu-vert);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    margin-top: 16px;
}

.faq-contact-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-contact-cta:hover {
    background: transparent;
    color: var(--wahouz-bleu-vert);
}

/* --- FAQ accordéon (droite) --- */
.faq-questions-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--wahouz-noir-pur);
    line-height: 1;
    margin-bottom: 32px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--wahouz-noir-pur);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-item-header:hover {
    color: var(--wahouz-bleu-vert);
}

.faq-item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--wahouz-bleu-vert);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-item-icon {
    transform: rotate(45deg);
}

.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-item-body {
    max-height: 200px;
}

.faq-item-body p {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
    line-height: 1.7;
    padding-bottom: 20px;
}

/* ==================== RESPONSIVE — FAQ ==================== */

@media (max-width: 1024px) {
    .section-faq {
        padding: 60px 24px;
    }

    .section-faq-inner {
        gap: 40px;
    }

    .faq-contact-title {
        font-size: 26px;
    }

    .faq-contact-phone a {
        font-size: 24px;
    }

    .faq-questions-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-faq {
        padding: 40px 16px;
    }

    .section-faq-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-contact {
        padding: 32px 24px;
        position: static;
    }

    .faq-contact-content {
        align-items: center;
        text-align: center;
    }

    .faq-contact-title {
        font-size: 24px;
    }

    .faq-contact-cta {
        width: 100%;
        text-align: center;
        align-self: center;
    }

    .faq-questions-title {
        font-size: 32px;
        text-align: center;
    }

    .faq-item-header {
        font-size: 15px;
        padding: 16px 0;
    }
}


/* ============================================================
   SECTION : RÉASSURANCE + AVIS CLIENTS (100vh)
   ============================================================ */
.section-reassurance-avis {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ====== Partie haute : Réassurance (fond teal) ====== */
.section-reassurance {
    background: var(--wahouz-bleu-vert);
    padding: 60px 40px;
}

.section-reassurance-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.reassurance-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
}

.reassurance-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 10px;
}

.reassurance-icon svg {
    width: 24px;
    height: 24px;
    color: var(--wahouz-white);
    stroke: var(--wahouz-white);
}

.reassurance-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reassurance-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--wahouz-white);
}

.reassurance-desc {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.reassurance-separator {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* ====== Partie basse : Avis clients (fond blanc) ====== */
.section-avis {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    background: var(--wahouz-white, #F8F8F8);
}

.section-avis-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-avis-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-avis-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--wahouz-noir-pur);
    line-height: 1;
}

.section-avis-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--wahouz-bleu-vert), var(--wahouz-bleu-vert-dark));
}

.section-avis-btn {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--wahouz-bleu-vert);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
    align-self: center;
}

.section-avis-btn:hover {
    color: var(--wahouz-bleu-vert-dark);
}

/* Grille des 4 avis */
.section-avis-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card avis */
.avis-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.avis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.avis-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.avis-card-stars svg {
    width: 18px;
    height: 18px;
    color: var(--wahouz-jaune-ocre, #d8af55);
    fill: var(--wahouz-jaune-ocre, #d8af55);
}

.avis-card-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--wahouz-noir-pur);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.avis-card-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 14px;
}

.avis-card-name {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--wahouz-noir-pur);
}

.avis-card-date {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: var(--wahouz-gris-moyen, #5f5f5d);
}

/* ==================== RESPONSIVE — RÉASSURANCE + AVIS ==================== */

@media (max-width: 1024px) {
    .section-reassurance {
        padding: 40px 24px;
    }

    .section-reassurance-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    .reassurance-item {
        flex: 1 1 40%;
        padding: 0 16px;
    }

    .reassurance-separator {
        display: none;
    }

    .section-avis {
        padding: 48px 24px;
    }

    .section-avis-title {
        font-size: 36px;
    }

    .section-avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-reassurance {
        padding: 32px 16px;
    }

    .section-reassurance-avis {
        min-height: auto;
    }

    .section-reassurance-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reassurance-item {
        flex: 1 1 100%;
        padding: 0 16px;
        justify-content: flex-start;
    }

    .section-avis {
        flex: none;
        padding: 40px 16px;
    }

    .reassurance-separator {
        display: none;
    }

    .section-avis-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .section-avis-title {
        font-size: 32px;
    }

    .section-avis-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 0;
    }

    .section-avis-grid::-webkit-scrollbar {
        display: none;
    }

    .avis-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 24px 20px;
        box-sizing: border-box;
    }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--wahouz-noir-pur);
}

.footer-main {
    padding: 60px 40px 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 48px;
}

/* Titres de colonnes */
.footer-col-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--wahouz-bleu-vert);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

/* Colonne Contact */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--wahouz-bleu-vert);
    stroke: var(--wahouz-bleu-vert);
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--wahouz-white);
}

/* Réseaux sociaux */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
    fill: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0.6);
}

.footer-social:hover {
    border-color: var(--wahouz-bleu-vert);
    background: var(--wahouz-bleu-vert);
}

.footer-social:hover svg {
    color: var(--wahouz-white);
    fill: var(--wahouz-white);
    stroke: var(--wahouz-white);
}

/* Colonnes liens */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--wahouz-white);
}

/* Colonne Bon à savoir */
.footer-bonasavoir {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-bonasavoir-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bonasavoir-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.footer-bonasavoir-icon svg {
    width: 20px;
    height: 20px;
    color: var(--wahouz-bleu-vert);
    stroke: var(--wahouz-bleu-vert);
}

.footer-bonasavoir-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-bonasavoir-label {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--wahouz-white);
}

.footer-bonasavoir-desc {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* Barre légale */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer contact button (même style que header/FAQ) */
.footer-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--wahouz-bleu-vert);
    color: var(--wahouz-white);
    border: 2px solid var(--wahouz-bleu-vert);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-top: 8px;
}

.footer-contact-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact-cta:hover {
    background: transparent;
    color: var(--wahouz-bleu-vert);
}

/* ==================== RESPONSIVE — FOOTER ==================== */

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 16px 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-contact-items {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bonasavoir-item {
        justify-content: center;
    }

    .footer-contact-cta {
        align-self: center;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}
