/* ═══════════════════════════════════════════════════════════
   ABAYA NOW — HOMEPAGE V2 — DESIGN PREMIUM
   Palette réelle : Navy #001f33 | Beige #f0e5db | Sand #ded4ca
   Fonts réels : Fondamento | Figtree | Lora | Cormorant Garamond
   Max-width réel : 1720px
   ═══════════════════════════════════════════════════════════ */

/*
 * OXYGEN OVERRIDE — Ciblé UNIQUEMENT sur les parents directs du shortcode.
 * NE TOUCHE PAS au header ni au footer Oxygen.
 * Le wrapper #abhv2-homepage / .abhv2 utilise width:100vw + left:50% + margin-left:-50vw
 * pour casser le conteneur Oxygen, donc on a juste besoin que le parent
 * ne coupe pas le débordement.
 */

/* Le conteneur Oxygen qui contient le shortcode (section + inner-wrap) */
.ct-section:has(#abhv2-homepage),
.ct-section:has(#abhv2-homepage) > .ct-section-inner-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Fallback plus large pour navigateurs sans :has() — 
   ne cibler que le contenu inner, pas header/footer */
#ct-inner-content .ct-section-inner-wrap:has(#abhv2-homepage) {
    max-width: 100% !important;
    padding: 0 !important;
}

/* ── VARIABLES ── */
.abhv2 {
    --navy: #001f33;
    --beige: #f0e5db;
    --sand: #ded4ca;
    --taupe: #aca09a;
    --brown: #3d3633;
    --brown-light: #736c69;
    --teal: #65bec2;
    --gold: #c9a96e;
    --white: #ffffff;
    --black: #000000;
    --max-w: 1720px;
    --font-display: 'Fondamento', serif;
    --font-body: 'Figtree', sans-serif;
    --font-accent: 'Lora', serif;
    --font-comp: 'Cormorant Garamond', serif;

    font-family: var(--font-body);
    color: var(--brown);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Casser le conteneur parent Oxygen pour être plein écran */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.abhv2 *, .abhv2 *::before, .abhv2 *::after { box-sizing: border-box; }
.abhv2 img { max-width: 100%; height: auto; display: block; }
.abhv2 a { text-decoration: none; color: inherit; }
/* Boutons : forcer la couleur du texte (évite l'héritage qui rendait le texte invisible) */
.abhv2 a.abhv2-btn--gold,
.abhv2 a.abhv2-btn--gold:hover { color: var(--navy) !important; }
.abhv2 a.abhv2-btn--dark,
.abhv2 a.abhv2-btn--dark:hover { color: var(--white) !important; }
.abhv2 a.abhv2-btn--white,
.abhv2 a.abhv2-btn--white:hover { color: var(--navy) !important; }
.abhv2 a.abhv2-btn--outline,
.abhv2 a.abhv2-btn--outline:hover { color: var(--white) !important; }

.abhv2-container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ── REVEAL ANIMATIONS ── */
.abhv2-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.abhv2-reveal.abhv2-visible { opacity: 1; transform: translateY(0); }
.abhv2-reveal--delay-1 { transition-delay: 0.1s; }
.abhv2-reveal--delay-2 { transition-delay: 0.2s; }
.abhv2-reveal--delay-3 { transition-delay: 0.3s; }
.abhv2-reveal--delay-4 { transition-delay: 0.4s; }

/* ── SECTION HEADER ── */
.abhv2-section-header { text-align: center; margin-bottom: 50px; }
.abhv2-overline {
    display: block;
    font-family: var(--font-comp);
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--brown-light);
    margin-bottom: 10px;
}
.abhv2-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
}

/* ── BUTTONS ── */
.abhv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.abhv2-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.abhv2-btn:hover::before { transform: translateX(0); }
.abhv2-btn > * { position: relative; z-index: 1; }

.abhv2-btn--gold {
    background: var(--gold);
    color: var(--navy);
}
.abhv2-btn--gold:hover { background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.15); transform: translateY(-2px); }

.abhv2-btn--dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}
.abhv2-btn--dark:hover { background: var(--beige); color: var(--navy); }

.abhv2-btn--white {
    background: var(--white);
    color: var(--navy);
}
.abhv2-btn--white:hover { background: var(--gold); box-shadow: 0 10px 40px rgba(0,0,0,0.2); transform: translateY(-2px); }

.abhv2-btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.abhv2-btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* Bouton bloc : pleine largeur du conteneur, centré, plus grand pour mieux convertir */
.abhv2-btn--block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 28px;
    font-size: 13px;
    letter-spacing: 1.8px;
}
.abhv2-btn__inner { position: relative; z-index: 1; }

.abhv2-moon {
    font-size: 32px;
    color: var(--navy);
    opacity: 0.3;
    margin-bottom: 12px;
}
.abhv2-moon--light { color: var(--white); opacity: 0.5; }

/* ═══════════════════════════════════════════════════════════
   HERO — Full screen, video background, impact maximal
   ═══════════════════════════════════════════════════════════ */
.abhv2-hero {
    position: relative;
    height: calc(100vh - 140px); /* Soustrait la hauteur du header Oxygen sticky (~140px) */
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}

.abhv2-hero__media {
    position: absolute;
    inset: 0;
}
.abhv2-hero__media img,
.abhv2-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abhv2-hero__img {
    z-index: 0;
    animation: abhv2-hero-zoom 25s ease-in-out infinite alternate;
}
@keyframes abhv2-hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}
.abhv2-hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.abhv2-hero.abhv2-hero--video-ready .abhv2-hero__video { opacity: 1; }

/* Mode vidéo seule : pas de fade, afficher immédiatement */
.abhv2-hero.abhv2-hero--video-only .abhv2-hero__video {
    opacity: 1;
    transition: none;
}

.abhv2-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Le background principal (opacité uniforme) vient du style inline via l'admin.
       On ajoute un gradient subtil en bas pour renforcer la lisibilité du texte hero. */
}
/* Gradient bas additionnel — toujours présent pour la lisibilité du texte */
.abhv2-hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
    pointer-events: none;
}

.abhv2-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.abhv2-hero__text { max-width: 720px; }

.abhv2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}
.abhv2-stars { color: var(--gold); letter-spacing: 2px; }

.abhv2-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 20px;
}
.abhv2-hero__title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}
.abhv2-hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    opacity: 0.4;
}

.abhv2-hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(15px, 1.3vw, 18px);
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 0 0 35px;
    max-width: 550px;
}

.abhv2-hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 420px;
}
.abhv2-hero__ctas .abhv2-btn--block { max-width: 100%; }

.abhv2-hero__proof {
    text-align: right;
    flex-shrink: 0;
}
.abhv2-hero__proof-number {
    font-family: var(--font-comp);
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.abhv2-hero__proof-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.abhv2-hero__proof-label span { color: var(--gold); }

/* Scroll indicator */
.abhv2-hero__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.abhv2-hero__scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 11px;
    position: relative;
}
.abhv2-hero__scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: abhv2-scroll-dot 2s infinite;
}
@keyframes abhv2-scroll-dot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR — Masquée car le header Oxygen a déjà la top row
   ═══════════════════════════════════════════════════════════ */
.abhv2-trust {
    background: var(--navy);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: none; /* Le header Oxygen (template #11) a déjà ces infos */
}
.abhv2-trust__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.abhv2-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}
.abhv2-trust__icon { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES — Grille 4 colonnes, aspect 9:16
   ═══════════════════════════════════════════════════════════ */
.abhv2-categories {
    padding: 90px 0;
    background: var(--white);
}
.abhv2-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.abhv2-cat-card {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    display: block;
}
.abhv2-cat-card__media {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.abhv2-cat-card:hover .abhv2-cat-card__media { transform: scale(1.06); }
.abhv2-cat-card__media img,
.abhv2-cat-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abhv2-cat-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,31,51,0.85) 0%, rgba(0,31,51,0.05) 45%, transparent 100%);
    transition: background 0.5s;
}
.abhv2-cat-card:hover .abhv2-cat-card__overlay {
    background: linear-gradient(to top, rgba(0,31,51,0.95) 0%, rgba(0,31,51,0.3) 60%, rgba(0,31,51,0.1) 100%);
}
.abhv2-cat-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}
.abhv2-cat-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin: 0 0 6px;
}
.abhv2-cat-card__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}
.abhv2-cat-card:hover .abhv2-cat-card__desc { opacity: 1; transform: translateY(0); }

.abhv2-cat-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.15s;
}
.abhv2-cat-card:hover .abhv2-cat-card__cta { opacity: 1; transform: translateY(0); }
.abhv2-cat-card__cta svg { transition: transform 0.3s; }
.abhv2-cat-card:hover .abhv2-cat-card__cta svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   VALUE PROPOSITION — Double banner
   ═══════════════════════════════════════════════════════════ */
.abhv2-value { padding: 0; }
.abhv2-value__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}
.abhv2-value__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 45px;
    overflow: hidden;
}
.abhv2-value__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}
.abhv2-value__card:hover .abhv2-value__bg { transform: scale(1.04); }

.abhv2-value__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,31,51,0.7) 0%, rgba(0,31,51,0.2) 50%, transparent 100%);
    z-index: 1;
}
.abhv2-value__card-overlay--light {
    background: linear-gradient(to top, rgba(240,229,219,0.85) 0%, rgba(240,229,219,0.5) 50%, rgba(240,229,219,0.2) 100%);
}

.abhv2-value__card-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}
.abhv2-value__card-content .abhv2-btn--block { max-width: 100%; }
.abhv2-value__card--dark h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 36px);
    color: var(--white);
    line-height: 1.25;
    margin: 0 0 16px;
}
.abhv2-value__card--dark p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 28px;
}
.abhv2-value__card--light h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    color: var(--navy);
    margin: 0 0 8px;
}
.abhv2-value__tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 16px;
    color: var(--brown-light);
    margin: 0 0 25px;
}

.abhv2-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.abhv2-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.5;
}
.abhv2-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS — Grid avec video hover
   ═══════════════════════════════════════════════════════════ */
.abhv2-products {
    padding: 90px 0;
    background: var(--beige);
}
.abhv2-products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}
.abhv2-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
    padding-bottom: 3px;
    transition: all 0.3s;
}
.abhv2-view-all:hover { color: var(--gold); border-color: var(--gold); }
.abhv2-view-all svg { transition: transform 0.3s; }
.abhv2-view-all:hover svg { transform: translateX(4px); }

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

.abhv2-products__cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 31, 51, 0.08);
}
.abhv2-products__cta-text {
    font-size: 15px;
    color: var(--navy);
    opacity: 0.85;
    margin: 0 0 20px;
}
.abhv2-products__cta .abhv2-btn { margin: 0 auto; }
.abhv2-products__cta .abhv2-btn--block { max-width: 380px; }

.abhv2-product-card { position: relative; border-radius: 16px; overflow: hidden; background: var(--beige); }
.abhv2-product-card__media {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: var(--sand);
}
.abhv2-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
}
.abhv2-product-card__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}
.abhv2-product-card:hover .abhv2-product-card__media video { opacity: 1; }
.abhv2-product-card:hover .abhv2-product-card__media > img { opacity: 0; }

.abhv2-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    z-index: 3;
}
.abhv2-product-badge--sale { background: var(--teal); color: var(--white); border-radius: 20px; }

.abhv2-product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 1px;
    z-index: 4;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.abhv2-product-card:hover .abhv2-product-card__actions {
    opacity: 1;
    transform: translateY(0);
}

.abhv2-product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.abhv2-product-action:hover { background: var(--gold); color: var(--navy); }
.abhv2-product-action--main { flex: 1; }
.abhv2-product-action--icon { flex: 0 0 48px; background: rgba(0,31,51,0.8); }
.abhv2-product-action--icon:hover { background: var(--navy); }
.abhv2-product-action--icon svg { stroke: var(--white); }

.abhv2-product-card__info {
    display: block;
    padding: 16px 4px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.abhv2-product-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.3;
}
.abhv2-product-card__price {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}
.abhv2-old-price {
    text-decoration: line-through;
    color: var(--taupe);
    font-weight: 400;
    margin-right: 6px;
}

/* ═══════════════════════════════════════════════════════════
   PROMO BANNER — Urgence
   ═══════════════════════════════════════════════════════════ */
.abhv2-promo {
    position: relative;
    padding: 80px 40px;
    background: var(--navy);
    text-align: center;
    overflow: hidden;
}
.abhv2-promo__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><path d="M40 0L80 40L40 80L0 40Z" fill="none" stroke="white" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
}
.abhv2-promo__inner { position: relative; max-width: 800px; margin: 0 auto; }
.abhv2-promo__logo { height: 40px; margin: 0 auto 25px; }
.abhv2-promo__subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin: 0 0 12px;
}
.abhv2-promo__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 35px;
}
.abhv2-promo__title em { font-style: normal; color: var(--gold); }

.abhv2-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.abhv2-countdown__unit { text-align: center; }
.abhv2-countdown__value {
    display: block;
    font-family: var(--font-comp);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}
.abhv2-countdown__label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-top: 6px;
}
.abhv2-countdown__sep {
    font-family: var(--font-comp);
    font-size: 36px;
    color: rgba(255,255,255,0.2);
    margin-top: -15px;
}

.abhv2-promo__code {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px dashed rgba(201,169,110,0.4);
    padding: 16px 32px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}
.abhv2-promo__code:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); }
.abhv2-promo__code-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}
.abhv2-promo__code-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gold);
}
.abhv2-promo__code-action svg { stroke: var(--gold); }

.abhv2-promo__code.abhv2-copied { border-color: var(--teal); }
.abhv2-promo__code.abhv2-copied .abhv2-promo__code-action { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════
   VIDEO CTA
   ═══════════════════════════════════════════════════════════ */
.abhv2-video-cta {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}
.abhv2-video-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abhv2-video-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,31,51,0.35);
    z-index: 1;
}
.abhv2-video-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 30px;
}
.abhv2-video-cta__content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 42px);
    color: var(--white);
    margin: 0 0 30px;
    line-height: 1.2;
}
.abhv2-video-cta__content .abhv2-btn--block { max-width: 360px; }

/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.abhv2-marquee {
    background: var(--sand);
    padding: 22px 0;
    overflow: hidden;
}
.abhv2-marquee__track {
    display: flex;
    width: max-content;
    animation: abhv2-marquee 40s linear infinite;
}
@keyframes abhv2-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.abhv2-marquee__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    white-space: nowrap;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 15px;
    color: var(--brown);
}
.abhv2-marquee__dot { color: var(--gold); font-size: 10px; }

/* ═══════════════════════════════════════════════════════════
   REASSURANCE
   ═══════════════════════════════════════════════════════════ */
.abhv2-reassurance {
    padding: 60px 0;
    background: var(--beige);
}
.abhv2-reassurance__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.abhv2-reassurance__item {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
}
.abhv2-reassurance__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    color: var(--navy);
}
.abhv2-reassurance__icon svg { width: 100%; height: 100%; }
.abhv2-reassurance__title {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 6px;
}
.abhv2-reassurance__desc {
    font-size: 12px;
    color: var(--brown-light);
}
.abhv2-reassurance__sep {
    width: 1px;
    height: 50px;
    background: var(--white);
    align-self: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.abhv2-testimonials {
    padding: 90px 0 90px;
    background: var(--sand);
}
.abhv2-testimonials__slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 40px 30px;
    padding-left: max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
    scrollbar-width: none;
}
.abhv2-testimonials__slider::-webkit-scrollbar { display: none; }

.abhv2-testimonial-card {
    min-width: 370px;
    max-width: 370px;
    background: var(--white);
    padding: 35px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}
.abhv2-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.abhv2-testimonial-card__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.abhv2-testimonial-card__text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14px;
    color: var(--brown-light);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}
.abhv2-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.abhv2-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--beige);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.abhv2-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.abhv2-testimonial-card__avatar span {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
}
.abhv2-testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--navy); }
.abhv2-testimonial-card__role { font-size: 12px; color: var(--taupe); }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER — Section premium configurable
   ═══════════════════════════════════════════════════════════ */
.abhv2-newsletter {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1628 50%, #071020 100%);
    overflow: hidden;
}
/* Décos lumineuses */
.abhv2-newsletter__deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.abhv2-newsletter__deco--1 {
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,.1) 0%, transparent 65%);
}
.abhv2-newsletter__deco--2 {
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 65%);
}
.abhv2-newsletter__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.abhv2-newsletter__media {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(201,169,110,.15);
}
.abhv2-newsletter__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.abhv2-newsletter__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,15,30,.5) 0%, transparent 50%);
    pointer-events: none;
}
.abhv2-newsletter:hover .abhv2-newsletter__media img {
    transform: scale(1.04);
}
.abhv2-newsletter__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(201,169,110,.2), rgba(201,169,110,.08));
    border: 1px solid rgba(201,169,110,.35);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.abhv2-newsletter__content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 46px);
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -.01em;
}
.abhv2-newsletter__content p {
    font-size: 15px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    margin: 0 0 32px;
    max-width: 460px;
}
.abhv2-newsletter__incentive {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(201,169,110,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(201,169,110,.2);
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}
.abhv2-newsletter__incentive-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), #b8963f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(201,169,110,.3);
}
.abhv2-newsletter__incentive-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}
.abhv2-newsletter__incentive-text strong {
    color: var(--gold);
    font-weight: 700;
}
/* Trust mini sous le formulaire */
.abhv2-newsletter__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}
.abhv2-newsletter__trust span {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    letter-spacing: .5px;
}
.abhv2-newsletter__form {
    display: flex;
    gap: 0;
    max-width: 460px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.abhv2-newsletter__form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: #fff;
    border-right: none;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}
.abhv2-newsletter__form input:focus { outline: none; }
.abhv2-newsletter__form input::placeholder { color: #999; }
.abhv2-newsletter__form button,
.abhv2-newsletter__form .abhv2-btn {
    flex-shrink: 0;
    padding: 16px 28px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
}
.abhv2-newsletter__form button:hover,
.abhv2-newsletter__form .abhv2-btn:hover {
    background: #b8963f;
}
/* MailPoet form override inside newsletter */
.abhv2-newsletter .mailpoet_form { max-width: 460px; }
.abhv2-newsletter .mailpoet_text_label { color: rgba(255,255,255,.5) !important; font-size: 12px; }
.abhv2-newsletter .mailpoet_text input[type="email"],
.abhv2-newsletter .mailpoet_text input[type="text"] {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    transition: border-color .3s !important;
}
.abhv2-newsletter .mailpoet_text input:focus {
    border-color: var(--gold) !important;
    outline: none !important;
}
.abhv2-newsletter .mailpoet_text input::placeholder { color: rgba(255,255,255,.35) !important; }
.abhv2-newsletter .mailpoet_submit {
    background: linear-gradient(135deg, var(--gold), #b8963f) !important;
    color: var(--navy) !important;
    border: none !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    font-size: 12px !important;
    cursor: pointer;
    transition: transform .2s, box-shadow .3s !important;
    box-shadow: 0 4px 20px rgba(201,169,110,.3);
}
.abhv2-newsletter .mailpoet_submit:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 25px rgba(201,169,110,.4) !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .abhv2-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .abhv2-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1019px) {
    .abhv2-container { padding: 0 30px; }
    .abhv2-value__grid { grid-template-columns: 1fr; }
    .abhv2-value__card { min-height: 500px; }
    .abhv2-hero__content { flex-direction: column; align-items: flex-start; }
    .abhv2-hero__proof { text-align: left; }
    .abhv2-newsletter__grid { grid-template-columns: 1fr; gap: 40px; }
    .abhv2-newsletter__media { max-height: 400px; }
    .abhv2-newsletter__content { text-align: center; }
    .abhv2-newsletter__content p { max-width: none; }
    .abhv2-newsletter__badge { margin-left: auto; margin-right: auto; }
    .abhv2-newsletter__trust { justify-content: center; }
    .abhv2-reassurance__sep { display: none; }
    .abhv2-reassurance__grid { flex-wrap: wrap; }
    .abhv2-reassurance__item { flex: 0 0 33.33%; }
}
@media (max-width: 767px) {
    .abhv2-container { padding: 0 20px; }
    .abhv2-hero__content { padding: 0 20px 50px; }
    .abhv2-hero__proof { display: none; }
    .abhv2-cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .abhv2-product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .abhv2-products__header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .abhv2-reassurance__item { flex: 0 0 50%; }
    .abhv2-testimonial-card { min-width: 300px; max-width: 300px; }
    .abhv2-categories, .abhv2-products, .abhv2-testimonials { padding: 60px 0; }
}
@media (max-width: 479px) {
    .abhv2-cat-grid { grid-template-columns: 1fr; }
    .abhv2-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .abhv2-reassurance__item { flex: 0 0 100%; }
    .abhv2-countdown__value { font-size: 32px; }
    .abhv2-hero__title { font-size: 32px; }
    .abhv2-hero { height: calc(100vh - 100px); }
}

/* ═══════════════════════════════════════════════════════════
   OXYGEN PARENT OVERRIDES — Ciblés sur la zone de contenu uniquement
   Le header et le footer Oxygen restent intacts
   ═══════════════════════════════════════════════════════════ */

/* Seulement le code-block Oxygen contenant notre shortcode */
.ct-code-block:has(#abhv2-homepage) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Reset margins sur les headings Oxygen qui pourraient interférer */
.abhv2 h1, .abhv2 h2, .abhv2 h3, .abhv2 h4, .abhv2 h5, .abhv2 h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.abhv2 p { margin: 0; }
.abhv2 ul { margin: 0; padding: 0; list-style: none; }

/* Empêcher les styles WooCommerce globaux de polluer nos sections */
.abhv2 .woocommerce { max-width: 100%; }

/* S'assurer que les sections plein écran cassent le conteneur */
.abhv2-hero,
.abhv2-trust,
.abhv2-value,
.abhv2-promo,
.abhv2-video-cta,
.abhv2-marquee {
    width: 100%;
    max-width: none;
}

/* Sections avec fond coloré : s'assurer qu'elles couvrent tout */
.abhv2-categories { background: var(--white); }
.abhv2-products { background: var(--beige); }
.abhv2-reassurance { background: var(--beige); }
.abhv2-testimonials { background: var(--sand); }

/* ═══════════════════════════════════════════════════════════
   FOOTER V2
   ═══════════════════════════════════════════════════════════ */
.abhv2-footer {
    background: linear-gradient(180deg, var(--navy) 0%, #071020 100%);
    padding: 60px 0 30px;
    color: #fff;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 100;
}
.abhv2-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}
.abhv2-footer__brand {
    max-width: 420px;
}
.abhv2-footer__logo {
    max-height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
    display: block;
}
.abhv2-footer__about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin: 0;
}
.abhv2-footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.abhv2-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: all .3s ease;
}
.abhv2-footer__social a:hover {
    color: var(--gold);
    background: rgba(201,169,110,.12);
    border-color: rgba(201,169,110,.3);
    transform: translateY(-2px);
}
.abhv2-footer__sep {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,.25), transparent);
    margin: 0 0 30px;
}
.abhv2-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.abhv2-footer__copyright {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    letter-spacing: .3px;
}
.abhv2-footer__legal {
    display: flex;
    gap: 20px;
}
.abhv2-footer__legal a {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .3s;
    letter-spacing: .3px;
}
.abhv2-footer__legal a:hover {
    color: #fff;
}
.abhv2-footer__payment {
    display: flex;
    align-items: center;
    gap: 8px;
}
.abhv2-footer__payment-icon {
    display: flex;
    align-items: center;
    opacity: .5;
    transition: opacity .3s;
}
.abhv2-footer__payment-icon:hover {
    opacity: .9;
}

/* Footer link columns */
.abhv2-footer__columns {
    display: flex;
    gap: 40px;
    padding: 30px 0 40px;
}
.abhv2-footer__col {
    flex: 1;
    min-width: 0;
}
.abhv2-footer__col-title {
    font-family: 'Fondamento', serif;
    font-size: 15px;
    font-weight: 400;
    color: #c9a96e !important;
    margin: 0 0 16px;
    letter-spacing: .3px;
}
.abhv2-footer__col-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.abhv2-footer__col-links li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.abhv2-footer__col-links li::before,
.abhv2-footer__col-links li::marker {
    content: none !important;
    display: none !important;
}
.abhv2-footer .abhv2-footer__col-links a,
.abhv2-footer__col-links a,
.abhv2-footer__col-links li a {
    font-size: 13px !important;
    color: rgba(255,255,255,.55) !important;
    text-decoration: none !important;
    transition: color .3s;
    letter-spacing: .2px;
    line-height: 1.5;
}
.abhv2-footer .abhv2-footer__col-links a:hover,
.abhv2-footer__col-links a:hover,
.abhv2-footer__col-links li a:hover {
    color: #fff !important;
}

/* Footer responsive */
@media (max-width: 767px) {
    .abhv2-footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .abhv2-footer__brand {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .abhv2-footer__columns {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .abhv2-footer__col-links {
        align-items: center;
    }
    .abhv2-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .abhv2-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .abhv2-footer__payment {
        justify-content: center;
        flex-wrap: wrap;
    }
}
