/* ============================================================
   WB TUILE PROTECT – SUITE ELEMENTOR  |  wbtp-style.css
   Rouge : #bc1818  |  Noir : #34393d
   ============================================================ */

:root {
    --wbtp-rouge: #bc1818;
    --wbtp-noir:  #34393d;
    --wbtp-gris:  #f5f5f5;
    --wbtp-blanc: #ffffff;
    --wbtp-rouge-dark: #921212;
    --wbtp-radius: 12px;
    --wbtp-shadow: 0 8px 32px rgba(52,57,61,.15);
    --wbtp-transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ────────────────────────────────────────────────────────────
   UTILITAIRES COMMUNS
   ──────────────────────────────────────────────────────────── */
.wbtp-rouge-text { color: var(--wbtp-rouge); }
.wbtp-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 12px auto 24px;
}

/* ────────────────────────────────────────────────────────────
   FORMULAIRE DEVIS
   ──────────────────────────────────────────────────────────── */
.wbtp-devis-wrap {
    background: var(--wbtp-blanc);
    border-radius: var(--wbtp-radius);
    overflow: hidden;
    box-shadow: var(--wbtp-shadow);
    font-family: inherit;
}
.wbtp-devis-header {
    background: linear-gradient(135deg, var(--wbtp-noir) 0%, #1a1f22 100%);
    color: var(--wbtp-blanc);
    text-align: center;
    padding: 48px 32px 40px;
    position: relative;
    overflow: hidden;
}
.wbtp-devis-header::before {
    content:'';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(188,24,24,.35) 0%, transparent 60%);
    pointer-events: none;
}
.wbtp-devis-icon-wrap {
    width: 72px; height: 72px;
    background: var(--wbtp-rouge);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--wbtp-blanc);
    box-shadow: 0 0 0 8px rgba(188,24,24,.2);
    animation: wbtp-pulse 2.5s infinite;
}
@keyframes wbtp-pulse {
    0%,100%{ box-shadow: 0 0 0 8px rgba(188,24,24,.2); }
    50%    { box-shadow: 0 0 0 14px rgba(188,24,24,.08); }
}
.wbtp-devis-titre {
    font-size: clamp(20px,3vw,28px);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--wbtp-blanc);
    line-height: 1.25;
}
.wbtp-devis-sous-titre {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin: 0;
}
.wbtp-devis-deco {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 28px;
    background: var(--wbtp-blanc);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.wbtp-devis-form {
    padding: 40px 36px 32px;
}
.wbtp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media(max-width:640px){ .wbtp-row{ grid-template-columns: 1fr; } }
.wbtp-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.wbtp-full { grid-column: 1 / -1; }
.wbtp-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--wbtp-noir);
    margin-bottom: 7px;
    letter-spacing: .3px;
}
.wbtp-field label span { color: var(--wbtp-rouge); }
.wbtp-field input,
.wbtp-field select,
.wbtp-field textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--wbtp-noir);
    background: #fafafa;
    transition: border-color var(--wbtp-transition), box-shadow var(--wbtp-transition), background var(--wbtp-transition);
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.wbtp-field input:focus,
.wbtp-field select:focus,
.wbtp-field textarea:focus {
    border-color: var(--wbtp-rouge);
    background: var(--wbtp-blanc);
    box-shadow: 0 0 0 4px rgba(188,24,24,.1);
}
.wbtp-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2334393d' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 22px; padding-right: 40px; }
.wbtp-field textarea { resize: vertical; min-height: 110px; }
.wbtp-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
}
.wbtp-rgpd input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    accent-color: var(--wbtp-rouge);
    margin-top: 2px;
    cursor: pointer;
}
.wbtp-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--wbtp-rouge) 0%, #8b1010 100%);
    color: var(--wbtp-blanc);
    border: none;
    border-radius: 10px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform var(--wbtp-transition), box-shadow var(--wbtp-transition);
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
}
.wbtp-btn-submit::before {
    content:'';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--wbtp-transition);
}
.wbtp-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(188,24,24,.4);
}
.wbtp-btn-submit:hover::before { background: rgba(255,255,255,.08); }
.wbtp-btn-submit:active { transform: translateY(0); }
.wbtp-form-msg {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.wbtp-form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.wbtp-form-msg.error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }
.wbtp-devis-garanties {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 18px 32px 28px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}
.wbtp-garantie-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.wbtp-garantie-item i { color: var(--wbtp-rouge); font-size: 16px; }

/* ────────────────────────────────────────────────────────────
   FORMULAIRE CONTACT
   ──────────────────────────────────────────────────────────── */
.wbtp-contact-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 520px;
    border-radius: var(--wbtp-radius);
    overflow: hidden;
    box-shadow: var(--wbtp-shadow);
}
@media(max-width:768px){
    .wbtp-contact-wrap { grid-template-columns: 1fr; }
}
.wbtp-contact-sidebar {
    background: linear-gradient(160deg, var(--wbtp-noir) 0%, #1a1f22 100%);
    position: relative;
    overflow: hidden;
}
.wbtp-contact-sidebar::before {
    content:'';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom left, rgba(188,24,24,.4) 0%, transparent 60%);
}
.wbtp-contact-sidebar-inner {
    position: relative;
    z-index: 1;
    padding: 48px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wbtp-cs-icon-wrap {
    width: 64px; height: 64px;
    background: var(--wbtp-rouge);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--wbtp-blanc);
    margin-bottom: 24px;
}
.wbtp-contact-titre {
    font-size: 26px;
    font-weight: 800;
    color: var(--wbtp-blanc);
    margin: 0 0 12px;
}
.wbtp-contact-sous-titre {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin: 0 0 36px;
    line-height: 1.6;
}
.wbtp-contact-infos { flex: 1; }
.wbtp-ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.5;
}
.wbtp-ci-item i {
    color: var(--wbtp-rouge);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.wbtp-ci-item a { color: inherit; text-decoration: none; }
.wbtp-ci-item a:hover { color: var(--wbtp-blanc); }
.wbtp-cs-deco-lines {
    margin-top: auto;
    display: flex;
    gap: 6px;
}
.wbtp-cs-deco-lines span {
    height: 3px;
    border-radius: 2px;
    background: var(--wbtp-rouge);
    opacity: .6;
    flex: 1;
}
.wbtp-cs-deco-lines span:nth-child(1){ opacity: 1; }
.wbtp-cs-deco-lines span:nth-child(2){ opacity: .5; flex: 2; }
.wbtp-cs-deco-lines span:nth-child(3){ opacity: .25; flex: 3; }

.wbtp-contact-form-col {
    background: var(--wbtp-blanc);
    padding: 48px 40px;
}
@media(max-width:480px){ .wbtp-contact-form-col{ padding: 32px 20px; } }

/* ────────────────────────────────────────────────────────────
   STATISTIQUES
   ──────────────────────────────────────────────────────────── */
.wbtp-stats-wrap { padding: 60px 20px; }
.wbtp-stats-header { text-align: center; margin-bottom: 50px; }
.wbtp-stats-titre {
    font-size: clamp(24px,4vw,38px);
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 8px;
}
.wbtp-stats-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.wbtp-stats-sous-titre { color: #666; font-size: 16px; margin: 0; }
.wbtp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Dark style */
.wbtp-stats-dark .wbtp-stat-card {
    background: linear-gradient(145deg, #1a1f22 0%, var(--wbtp-noir) 100%);
    color: var(--wbtp-blanc);
}
.wbtp-stats-dark .wbtp-stat-label  { color: rgba(255,255,255,.75); }
.wbtp-stats-dark .wbtp-stat-desc   { color: rgba(255,255,255,.4); }

/* Light style */
.wbtp-stats-light .wbtp-stat-card {
    background: var(--wbtp-blanc);
    color: var(--wbtp-noir);
    border: 2px solid #e8e8e8;
}
.wbtp-stats-light .wbtp-stat-label { color: #555; }
.wbtp-stats-light .wbtp-stat-desc  { color: #999; }
.wbtp-stats-light .wbtp-stat-number,
.wbtp-stats-light .wbtp-stat-suffix{ color: var(--wbtp-rouge); }

/* Rouge style */
.wbtp-stats-rouge .wbtp-stat-card {
    background: linear-gradient(145deg, var(--wbtp-rouge), #8b1010);
    color: var(--wbtp-blanc);
}
.wbtp-stats-rouge .wbtp-stat-icon i { color: rgba(255,255,255,.7); }
.wbtp-stats-rouge .wbtp-stat-label { color: rgba(255,255,255,.8); }
.wbtp-stats-rouge .wbtp-stat-desc  { color: rgba(255,255,255,.5); }

.wbtp-stat-card {
    border-radius: 16px;
    padding: 36px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--wbtp-transition), box-shadow var(--wbtp-transition);
    cursor: default;
}
.wbtp-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(188,24,24,.2);
}
.wbtp-stat-glow {
    position: absolute;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(188,24,24,.25) 0%, transparent 70%);
    top: -30px; right: -30px;
    border-radius: 50%;
    pointer-events: none;
}
.wbtp-stat-icon {
    font-size: 32px;
    color: var(--wbtp-rouge);
    margin-bottom: 16px;
    transition: transform var(--wbtp-transition);
}
.wbtp-stat-card:hover .wbtp-stat-icon { transform: scale(1.15); }
.wbtp-stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}
.wbtp-stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--wbtp-blanc);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.wbtp-stats-light .wbtp-stat-number { color: var(--wbtp-rouge); }
.wbtp-stats-rouge .wbtp-stat-number { color: var(--wbtp-blanc); }
.wbtp-stat-suffix {
    font-size: 26px;
    font-weight: 800;
    color: var(--wbtp-rouge);
}
.wbtp-stats-rouge .wbtp-stat-suffix { color: rgba(255,255,255,.8); }
.wbtp-stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.wbtp-stat-desc { font-size: 12px; }

/* ────────────────────────────────────────────────────────────
   ÉTAPES TIMELINE
   ──────────────────────────────────────────────────────────── */
.wbtp-etapes-wrap { padding: 60px 20px; }
.wbtp-etapes-header { text-align: center; margin-bottom: 56px; }
.wbtp-etapes-titre {
    font-size: clamp(24px,4vw,38px);
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 8px;
}
.wbtp-etapes-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.wbtp-etapes-sous-titre { color: #666; font-size: 16px; margin: 0; max-width: 600px; margin: 0 auto; }

/* Horizontal timeline */
.wbtp-etapes-horizontal .wbtp-etapes-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
@media(max-width:900px){
    .wbtp-etapes-horizontal .wbtp-etapes-timeline {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:540px){
    .wbtp-etapes-horizontal .wbtp-etapes-timeline {
        grid-template-columns: 1fr;
    }
}
.wbtp-etapes-horizontal .wbtp-etapes-line {
    display: none;
}

/* Vertical timeline */
.wbtp-etapes-vertical .wbtp-etapes-timeline {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.wbtp-etapes-vertical .wbtp-etapes-line {
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--wbtp-rouge), rgba(188,24,24,.1));
    border-radius: 2px;
}
.wbtp-etapes-vertical .wbtp-etape-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-left: 0;
    position: relative;
}
.wbtp-etapes-vertical .wbtp-etape-connector {
    flex-shrink: 0;
    width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wbtp-etape-dot {
    width: 20px; height: 20px;
    background: var(--wbtp-rouge);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(188,24,24,.2);
    margin-top: 18px;
}
.wbtp-etape-dot-inner {
    width: 8px; height: 8px;
    background: var(--wbtp-blanc);
    border-radius: 50%;
}

/* Card étapes commune */
.wbtp-etape-card {
    background: var(--wbtp-blanc);
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(52,57,61,.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: transform var(--wbtp-transition), box-shadow var(--wbtp-transition), border-color var(--wbtp-transition);
    flex: 1;
    margin: 12px;
    text-align: center;
}
.wbtp-etape-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(188,24,24,.15);
    border-color: var(--wbtp-rouge);
}
.wbtp-etape-number {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(188,24,24,.06);
    line-height: 1;
    pointer-events: none;
    font-variant-numeric: tabular-nums;
}
.wbtp-etape-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--wbtp-rouge), #8b1010);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--wbtp-blanc);
    margin: 0 auto 18px;
    transition: transform var(--wbtp-transition);
}
.wbtp-etape-card:hover .wbtp-etape-icon { transform: scale(1.1) rotate(-5deg); }
.wbtp-etape-titre {
    font-size: 16px;
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 10px;
}
.wbtp-etape-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
}
.wbtp-etape-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(188,24,24,.08);
    color: var(--wbtp-rouge);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
}

/* ────────────────────────────────────────────────────────────
   ACTIVITÉS COVERFLOW 3D
   ──────────────────────────────────────────────────────────── */
.wbtp-cf-wrap {
    padding: 60px 20px;
    overflow: hidden;
}
.wbtp-cf-header { text-align: center; margin-bottom: 48px; }
.wbtp-cf-titre {
    font-size: clamp(24px,4vw,38px);
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 8px;
}
.wbtp-cf-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.wbtp-cf-sous-titre { color: #666; font-size: 16px; margin: 0 auto; max-width: 600px; }

.wbtp-coverflow-stage {
    position: relative;
    perspective: 1400px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
@media(max-width:640px){ .wbtp-coverflow-stage{ height: 340px; } }
.wbtp-cf-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wbtp-cf-card {
    position: absolute;
    width: 280px;
    min-height: 360px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--wbtp-noir) 0%, #1a1f22 100%);
    color: var(--wbtp-blanc);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s, box-shadow .5s;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
    transform-origin: center center;
    border: 1px solid rgba(255,255,255,.06);
    will-change: transform;
}
@media(max-width:640px){ .wbtp-cf-card{ width: 220px; min-height: 300px; } }

.wbtp-cf-card-glow {
    position: absolute;
    width: 180px; height: 180px;
    background: radial-gradient(circle, var(--accent, var(--wbtp-rouge)) 0%, transparent 70%);
    top: -40px; right: -40px;
    opacity: .35;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity .5s;
}
.wbtp-cf-card.active .wbtp-cf-card-glow { opacity: .6; }
.wbtp-cf-card-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.02) 0px,
        rgba(255,255,255,.02) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
}
.wbtp-cf-card-content {
    position: relative;
    z-index: 1;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.wbtp-cf-card-num {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    position: absolute;
    bottom: 16px; right: 20px;
    line-height: 1;
    pointer-events: none;
}
.wbtp-cf-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent, var(--wbtp-rouge)), rgba(188,24,24,.5));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--wbtp-blanc);
    margin-bottom: 20px;
    transition: transform var(--wbtp-transition);
}
.wbtp-cf-card.active .wbtp-cf-card-icon { transform: scale(1.1); }
.wbtp-cf-card-titre {
    font-size: 18px;
    font-weight: 800;
    color: var(--wbtp-blanc);
    margin: 0 0 12px;
    line-height: 1.2;
}
.wbtp-cf-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
}
.wbtp-cf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wbtp-cf-tag {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
}
.wbtp-cf-card.active .wbtp-cf-tag {
    background: rgba(188,24,24,.2);
    border-color: rgba(188,24,24,.3);
    color: #ff9999;
}

.wbtp-cf-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: var(--wbtp-blanc);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--wbtp-noir);
    transition: all var(--wbtp-transition);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.wbtp-cf-nav:hover {
    background: var(--wbtp-rouge);
    border-color: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
    transform: translateY(-50%) scale(1.1);
}
.wbtp-cf-prev { left: 0; }
.wbtp-cf-next { right: 0; }
@media(max-width:400px){
    .wbtp-cf-prev{ left: -10px; }
    .wbtp-cf-next{ right: -10px; }
}
.wbtp-cf-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.wbtp-cf-dot {
    width: 10px; height: 10px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--wbtp-transition);
    padding: 0;
}
.wbtp-cf-dot.active {
    background: var(--wbtp-rouge);
    transform: scale(1.35);
    width: 28px;
    border-radius: 5px;
}
.wbtp-cf-label-display {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--wbtp-noir);
    letter-spacing: .3px;
    min-height: 22px;
    transition: opacity .3s;
}
.wbtp-cf-current-label { opacity: .75; }

/* ────────────────────────────────────────────────────────────
   FAQ ACCORDÉON
   ──────────────────────────────────────────────────────────── */
.wbtp-faq-wrap { padding: 60px 20px; }
.wbtp-faq-header { text-align: center; margin-bottom: 48px; }
.wbtp-faq-titre {
    font-size: clamp(24px,4vw,38px);
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 8px;
}
.wbtp-faq-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.wbtp-faq-sous-titre { color: #666; font-size: 16px; margin: 0 auto; max-width: 580px; }
.wbtp-faq-list { max-width: 820px; margin: 0 auto; }

/* Style moderne */
.wbtp-faq-moderne .wbtp-faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
}
.wbtp-faq-moderne .wbtp-faq-item:first-child { border-top: 1px solid #eee; }
.wbtp-faq-moderne .wbtp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    transition: color var(--wbtp-transition);
}
.wbtp-faq-moderne .wbtp-faq-item.wbtp-faq-open .wbtp-faq-question { color: var(--wbtp-rouge); }
.wbtp-faq-moderne .wbtp-faq-answer-inner { padding: 0 8px 20px 68px; }

/* Style card */
.wbtp-faq-card .wbtp-faq-item {
    background: var(--wbtp-blanc);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(52,57,61,.08);
    border: 1px solid transparent;
    overflow: hidden;
    transition: border-color var(--wbtp-transition), box-shadow var(--wbtp-transition);
}
.wbtp-faq-card .wbtp-faq-item.wbtp-faq-open {
    border-color: var(--wbtp-rouge);
    box-shadow: 0 4px 20px rgba(188,24,24,.12);
}
.wbtp-faq-card .wbtp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
}
.wbtp-faq-card .wbtp-faq-answer-inner { padding: 0 22px 20px 70px; }

/* Style lateral */
.wbtp-faq-lateral .wbtp-faq-item {
    border-left: 4px solid #e0e0e0;
    margin-bottom: 16px;
    padding-left: 20px;
    transition: border-color var(--wbtp-transition);
}
.wbtp-faq-lateral .wbtp-faq-item.wbtp-faq-open { border-color: var(--wbtp-rouge); }
.wbtp-faq-lateral .wbtp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}
.wbtp-faq-lateral .wbtp-faq-answer-inner { padding: 0 0 14px 0; }

/* Common FAQ elements */
.wbtp-faq-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
}
.wbtp-faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--wbtp-noir);
    line-height: 1.4;
}
.wbtp-faq-chevron {
    flex-shrink: 0;
    color: var(--wbtp-rouge);
    font-size: 13px;
    transition: transform var(--wbtp-transition);
}
.wbtp-faq-open .wbtp-faq-chevron { transform: rotate(180deg); }
.wbtp-faq-answer-inner {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.wbtp-faq-answer-inner p { margin: 0 0 8px; }

/* ────────────────────────────────────────────────────────────
   GALERIE CARROUSEL (style filmled)
   ──────────────────────────────────────────────────────────── */
.wbtp-galerie-wrap { padding: 60px 20px; }
.wbtp-galerie-header { text-align: center; margin-bottom: 36px; }
.wbtp-galerie-titre {
    font-size: clamp(24px,4vw,38px);
    font-weight: 800;
    color: var(--wbtp-noir);
    margin: 0 0 8px;
}
.wbtp-galerie-underline {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--wbtp-rouge), #ff5252);
    border-radius: 2px;
    margin: 0 auto 16px;
}
.wbtp-galerie-sous-titre { color: #666; font-size: 16px; margin: 0 auto; max-width: 580px; }

.wbtp-galerie-filtres {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.wbtp-filtre {
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid #ddd;
    background: var(--wbtp-blanc);
    color: var(--wbtp-noir);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--wbtp-transition);
}
.wbtp-filtre:hover { border-color: var(--wbtp-rouge); color: var(--wbtp-rouge); }
.wbtp-filtre.active {
    background: var(--wbtp-rouge);
    border-color: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
}

.wbtp-galerie-scene {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
@media(max-width:768px){
    .wbtp-galerie-scene { grid-template-columns: 1fr; }
    .wbtp-galerie-strip { display: flex; flex-direction: row; overflow-x: auto; gap: 8px; max-height: none; }
    .wbtp-galerie-thumb { flex-shrink: 0; width: 100px; height: 80px; }
}
.wbtp-galerie-main-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
    min-height: 380px;
}
@media(max-width:640px){ .wbtp-galerie-main-wrap{ min-height: 240px; } }
.wbtp-galerie-main-slide { position: relative; width: 100%; height: 100%; }
.wbtp-galerie-main-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.wbtp-galerie-main-item.active { opacity: 1; z-index: 1; }
.wbtp-galerie-main-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.wbtp-galerie-main-item.active img { animation: wbtp-zoom-in 8s linear forwards; }
@keyframes wbtp-zoom-in {
    from{ transform: scale(1); }
    to  { transform: scale(1.06); }
}
.wbtp-galerie-main-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
    padding: 60px 24px 24px;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: all .5s ease .2s;
}
.wbtp-galerie-main-item.active .wbtp-galerie-main-overlay {
    transform: translateY(0);
    opacity: 1;
}
.wbtp-galerie-cat-badge {
    display: inline-block;
    background: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.wbtp-galerie-main-info h3 {
    color: var(--wbtp-blanc);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
}
.wbtp-galerie-main-info p {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    margin: 0;
}
.wbtp-galerie-main-info p i { color: var(--wbtp-rouge); margin-right: 4px; }

.wbtp-galerie-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--wbtp-noir);
    z-index: 5;
    transition: all var(--wbtp-transition);
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.wbtp-galerie-nav:hover {
    background: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
    transform: translateY(-50%) scale(1.1);
}
.wbtp-galerie-prev { left: 12px; }
.wbtp-galerie-next { right: 12px; }

.wbtp-galerie-progress-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.2);
    z-index: 6;
}
.wbtp-galerie-progress-fill {
    height: 100%;
    background: var(--wbtp-rouge);
    width: 0%;
    transition: width linear;
}

/* Strip de vignettes vertical */
.wbtp-galerie-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 520px;
    scrollbar-width: thin;
    scrollbar-color: var(--wbtp-rouge) #f0f0f0;
}
.wbtp-galerie-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    border: 3px solid transparent;
    transition: border-color var(--wbtp-transition), transform var(--wbtp-transition);
}
.wbtp-galerie-thumb:hover { transform: scale(1.02); border-color: rgba(188,24,24,.5); }
.wbtp-galerie-thumb.active { border-color: var(--wbtp-rouge); }
.wbtp-galerie-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.wbtp-galerie-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
    transition: opacity var(--wbtp-transition);
}
.wbtp-galerie-thumb.active .wbtp-galerie-thumb-overlay,
.wbtp-galerie-thumb:hover .wbtp-galerie-thumb-overlay { opacity: 0; }

.wbtp-galerie-counter {
    text-align: right;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
}
.wbtp-galerie-current { color: var(--wbtp-rouge); font-size: 22px; font-weight: 900; }
.wbtp-galerie-sep { margin: 0 4px; }

/* hidden thumb (filtered out) */
.wbtp-galerie-thumb.wbtp-hidden { display: none; }
.wbtp-galerie-main-item.wbtp-hidden { display: none; }

/* ────────────────────────────────────────────────────────────
   TEXTE SEO (h3 rouge)
   ──────────────────────────────────────────────────────────── */
.wbtp-seo-content h1 {
    font-size: clamp(26px,4vw,42px);
    font-weight: 900;
    color: var(--wbtp-noir);
    margin-bottom: 12px;
}
.wbtp-seo-content h3 {
    color: #bc1818;
    font-size: clamp(16px,2.5vw,21px);
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 16px;
}
.wbtp-seo-content h3::before {
    content:'';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 70%;
    background: #bc1818;
    border-radius: 3px;
}
.wbtp-seo-content p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.wbtp-seo-content strong { color: var(--wbtp-noir); font-weight: 700; }
.wbtp-seo-contact-block {
    background: linear-gradient(135deg, var(--wbtp-noir), #1a1f22);
    color: var(--wbtp-blanc);
    border-radius: var(--wbtp-radius);
    padding: 32px 36px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.wbtp-seo-contact-block p { color: rgba(255,255,255,.75); margin: 0; }
.wbtp-seo-contact-block a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wbtp-rouge);
    color: var(--wbtp-blanc);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all var(--wbtp-transition);
}
.wbtp-seo-contact-block a:hover { background: #8b1010; transform: translateY(-2px); }

/* ────────────────────────────────────────────────────────────
   HERO SLIDER
   ──────────────────────────────────────────────────────────── */

/* Wrapper principal */
.wbtp-hs-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    font-family: inherit;
    --hs-txt: #fff;
    --hs-nav: #fff;
    display: block !important;
    box-sizing: border-box;
}

.elementor-widget-wbtp_hero_slider,
.elementor-widget-wbtp_hero_slider .elementor-widget-container {
    display: block;
    overflow: hidden;
}

/* ── Track & Slides : toujours position absolute ── */
.wbtp-hs-track {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.wbtp-hs-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: none;
    z-index: 0;
}
.wbtp-hs-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* ── Médias : couvrent tout ── */
.wbtp-hs-media {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/* ── Image background div ── */
.wbtp-hs-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* background-image, size, position, repeat définis inline par PHP */
    transform: scale(1);
    transition: transform 8s linear;
    will-change: transform;
}
.wbtp-hs-slide.active .wbtp-hs-bg { transform: scale(1.07); }
.wbtp-hs-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ── Mobile : boutons en colonne, texte adapté ── */
@media(max-width:767px){
    .wbtp-hs-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .wbtp-hs-btn {
        justify-content: center;
        text-align: center;
        padding: 13px 18px;
    }
    .wbtp-hs-scroll-indicator,
    .wbtp-hs-counter { display: none; }
}

/* ── Transitions ── */
.wbtp-hs-tr-fade .wbtp-hs-slide { transition: opacity var(--hs-tr, 0.8s) ease; }

.wbtp-hs-tr-slide .wbtp-hs-slide {
    transform: translateX(100%);
    transition: transform var(--hs-tr, 0.8s) cubic-bezier(.4,0,.2,1), opacity 0s;
    opacity: 1;
}
.wbtp-hs-tr-slide .wbtp-hs-slide.prev-slide { transform: translateX(-100%); }
.wbtp-hs-tr-slide .wbtp-hs-slide.active      { transform: translateX(0); }

.wbtp-hs-tr-zoom .wbtp-hs-slide {
    transition: opacity var(--hs-tr, 0.8s) ease, transform var(--hs-tr, 0.8s) ease;
    transform: scale(1.06);
}
.wbtp-hs-tr-zoom .wbtp-hs-slide.active { transform: scale(1); }
.wbtp-hs-iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 178%; height: 178%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    border: none;
}

/* ── Overlay ── */
.wbtp-hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── Contenu texte ── */
.wbtp-hs-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    padding-top:    clamp(24px,5vw,80px);
    padding-bottom: clamp(24px,5vw,80px);
    padding-left:   clamp(20px,8vw,120px);
    padding-right:  clamp(20px,8vw,120px);
    color: var(--hs-txt);
    align-items: center;
    justify-content: center;
}
.wbtp-hs-align-left   .wbtp-hs-content { justify-content: flex-start; }
.wbtp-hs-align-center .wbtp-hs-content { justify-content: center; }
.wbtp-hs-align-right  .wbtp-hs-content { justify-content: flex-end; }

.wbtp-hs-align-left   .wbtp-hs-content-inner { text-align: left;   align-items: flex-start; }
.wbtp-hs-align-center .wbtp-hs-content-inner { text-align: center; align-items: center;     margin-left: auto; margin-right: auto; }
.wbtp-hs-align-right  .wbtp-hs-content-inner { text-align: right;  align-items: flex-end;   margin-left: auto; }

.wbtp-hs-v-top    .wbtp-hs-content { align-items: flex-start; padding-top: clamp(40px,8vh,120px); }
.wbtp-hs-v-center .wbtp-hs-content { align-items: center; }
.wbtp-hs-v-bottom .wbtp-hs-content { align-items: flex-end; padding-bottom: clamp(60px,10vh,140px); }

.wbtp-hs-content-inner {
    display: flex;
    flex-direction: column;
    max-width: 820px;
    width: 100%;
}

/* ── Titre & textes ── */
.wbtp-hs-titre {
    font-size: var(--titre-px, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 18px;
    color: inherit;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    letter-spacing: -0.02em;
}
@media(max-width:767px){ .wbtp-hs-titre{ font-size: calc(var(--titre-px,52px) * 0.55); } }
@media(max-width:480px){ .wbtp-hs-titre{ font-size: calc(var(--titre-px,52px) * 0.45); } }

.wbtp-hs-sous-titre {
    font-size: var(--st-px, 18px);
    line-height: 1.6;
    margin: 0 0 14px;
    color: inherit;
    opacity: .9;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,.2);
    max-width: 640px;
}
@media(max-width:767px){ .wbtp-hs-sous-titre{ font-size: calc(var(--st-px,18px) * 0.9); } }

.wbtp-hs-description {
    font-size: 15px;
    line-height: 1.7;
    color: inherit;
    opacity: .8;
    margin: 0 0 20px;
    max-width: 600px;
}
.wbtp-hs-description p { margin: 0 0 8px; }

/* ── Animations des éléments texte ── */
/*
 * RÈGLE CRITIQUE :
 * - Par défaut : éléments visibles (opacity:1, pas de transform)
 *   → empêche la disparition si le JS est lent ou si un slide
 *     passe en .active sans que le JS ait eu le temps de reset.
 * - .wbtp-hs-anim--hidden : état "caché" appliqué par le JS
 *   sur l'ancien slide AVANT qu'il perde .active.
 * - .wbtp-hs-slide.active .wbtp-hs-anim : déclenche l'animation
 *   d'entrée uniquement sur le slide actif.
 */
.wbtp-hs-anim {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s ease;
}
/* État caché : posé par le JS sur l'ancien slide */
.wbtp-hs-anim.wbtp-hs-hidden {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: none !important;
}
/* Animation d'entrée sur le slide actif */
.wbtp-hs-slide.wbtp-hs-entering .wbtp-hs-anim {
    opacity: 0;
    transform: translateY(30px);
}
.wbtp-hs-slide.wbtp-hs-entered .wbtp-hs-anim {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s ease;
}
.wbtp-hs-slide.wbtp-hs-entered [data-delay="100"] { transition-delay: 100ms; }
.wbtp-hs-slide.wbtp-hs-entered [data-delay="200"] { transition-delay: 200ms; }
.wbtp-hs-slide.wbtp-hs-entered [data-delay="300"] { transition-delay: 300ms; }

/* ── Boutons ── */
.wbtp-hs-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.wbtp-hs-align-center .wbtp-hs-btns { justify-content: center; }
.wbtp-hs-align-right  .wbtp-hs-btns { justify-content: flex-end; }

.wbtp-hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s, color .25s, border-color .25s;
    white-space: nowrap;
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.wbtp-hs-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background .25s;
}
.wbtp-hs-btn:hover { transform: translateY(-3px); }
.wbtp-hs-btn:hover::before { background: rgba(255,255,255,.08); }
.wbtp-hs-btn:active { transform: translateY(-1px); }

/* Solid */
.wbtp-hs-btn--solid {
    background: var(--btn-rouge, var(--wbtp-rouge));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 18px rgba(188,24,24,.45);
}
.wbtp-hs-btn--solid:hover { box-shadow: 0 8px 28px rgba(188,24,24,.55); }

/* Outline */
.wbtp-hs-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.8);
    backdrop-filter: blur(4px);
}
.wbtp-hs-btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}

/* Ghost */
.wbtp-hs-btn--ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
}
.wbtp-hs-btn--ghost:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.5);
}

.wbtp-hs-btn-icon { display: flex; align-items: center; font-size: 14px; flex-shrink: 0; }

@media(max-width:480px){
    .wbtp-hs-btn { padding: 11px 18px; font-size: 13px; }
    .wbtp-hs-btns { gap: 8px; }
}

/* ── Navigation flèches ── */
.wbtp-hs-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--hs-nav);
    z-index: 10;
    transition: all .25s ease;
}
.wbtp-hs-nav svg { width: 22px; height: 22px; }
.wbtp-hs-nav:hover {
    background: var(--wbtp-rouge);
    border-color: var(--wbtp-rouge);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 18px rgba(188,24,24,.5);
}
.wbtp-hs-prev { left: clamp(12px,3vw,32px); }
.wbtp-hs-next { right: clamp(12px,3vw,32px); }
@media(max-width:480px){
    .wbtp-hs-nav { width: 40px; height: 40px; }
    .wbtp-hs-nav svg { width: 17px; height: 17px; }
    .wbtp-hs-prev { left: 8px; }
    .wbtp-hs-next { right: 8px; }
}

/* ── Dots ── */
.wbtp-hs-dots {
    position: absolute;
    bottom: clamp(16px,3vh,36px);
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 10;
}
.wbtp-hs-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer; padding: 0;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.wbtp-hs-dot-fill {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 50%;
    transform: scale(0);
    transition: transform .3s ease;
}
.wbtp-hs-dot.active {
    width: 32px;
    border-radius: 5px;
    background: rgba(255,255,255,.3);
}
.wbtp-hs-dot.active .wbtp-hs-dot-fill { transform: scale(1); border-radius: 5px; }

/* ── Barre de progression ── */
.wbtp-hs-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(255,255,255,.2);
    z-index: 11;
}
.wbtp-hs-progress-fill {
    height: 100%;
    background: var(--wbtp-rouge);
    width: 0%;
    transition: width linear;
    box-shadow: 0 0 8px var(--wbtp-rouge);
}

/* ── Compteur ── */
.wbtp-hs-counter {
    position: absolute;
    bottom: clamp(14px,3vh,34px);
    right: clamp(16px,3vw,40px);
    z-index: 10;
    display: flex; align-items: baseline; gap: 3px;
    color: rgba(255,255,255,.6);
    font-size: 13px; font-weight: 600;
    letter-spacing: .5px;
}
.wbtp-hs-cnt-cur { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.wbtp-hs-cnt-sep { margin: 0 3px; }

/* ── Indicateur scroll ── */
.wbtp-hs-scroll-indicator {
    position: absolute;
    bottom: clamp(12px,3vh,30px);
    left: clamp(16px,3vw,40px);
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.wbtp-hs-scroll-line {
    display: block;
    width: 1.5px; height: 40px;
    background: rgba(255,255,255,.5);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}
.wbtp-hs-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; right: 0;
    height: 100%;
    background: #fff;
    border-radius: 1px;
    animation: wbtp-scroll-drop 1.8s ease infinite;
}
@keyframes wbtp-scroll-drop {
    0%   { top: -100%; opacity: 1; }
    100% { top: 100%;  opacity: 0; }
}
.wbtp-hs-scroll-label {
    font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase; letter-spacing: 1.5px;
    writing-mode: vertical-rl;
}
@media(max-width:640px){
    .wbtp-hs-scroll-indicator { display: none; }
}

/* ── Titre de page (hors slider) ── */
.wbtp-hs-page-title {
    position: relative;
    padding-left: 18px;
    margin: 0 0 20px;
    line-height: 1.2;
}
.wbtp-hs-page-title-bar {
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 80%;
    background: var(--wbtp-rouge);
    border-radius: 3px;
    min-height: 22px;
}

/* ── Titre de page dans le bandeau ── */
.wbtp-hs-inside-page-title {
    margin-bottom: 12px;
}
.wbtp-hs-inside-page-title * {
    color: inherit;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 0.6em !important;
    opacity: .75;
    margin: 0;
}

/* ────────────────────────────────────────────────────────────
   ANIMATIONS D'ENTRÉE
   ──────────────────────────────────────────────────────────── */
@keyframes wbtp-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.wbtp-anim-up {
    animation: wbtp-fade-up .6s ease both;
}
.wbtp-anim-up:nth-child(1){ animation-delay: .0s; }
.wbtp-anim-up:nth-child(2){ animation-delay: .1s; }
.wbtp-anim-up:nth-child(3){ animation-delay: .2s; }
.wbtp-anim-up:nth-child(4){ animation-delay: .3s; }
.wbtp-anim-up:nth-child(5){ animation-delay: .4s; }
.wbtp-anim-up:nth-child(6){ animation-delay: .5s; }

/* ═══════════════════════════════════════════════════════════
   GALERIE — IMAGE CENTRÉE + FILTRES + MOBILE 2 COLONNES
   ═══════════════════════════════════════════════════════════ */
.wbtp-galerie-main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    aspect-ratio: 16/9;
    min-height: 340px;
}
.wbtp-galerie-main-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    overflow: hidden;
}
.wbtp-galerie-main-item.active { opacity: 1; z-index: 1; }
.wbtp-galerie-main-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
/* Filtres fonctionnels */
.wbtp-filtre { cursor: pointer; user-select: none; }
.wbtp-galerie-main-item.wbtp-hidden,
.wbtp-galerie-thumb.wbtp-hidden { display: none !important; }

/* Mobile : vignettes 2 colonnes */
@media(max-width:767px){
    .wbtp-galerie-scene { grid-template-columns: 1fr !important; }
    .wbtp-galerie-strip {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .wbtp-galerie-thumb {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4/3;
    }
}

/* ── MOBILE : image principale centrée et contenue ── */
@media(max-width:767px){
    .wbtp-galerie-wrap {
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .wbtp-galerie-scene {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .wbtp-galerie-main-wrap {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-height: 220px !important;
        aspect-ratio: 16/9 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    .wbtp-galerie-main-slide {
        width: 100% !important;
        height: 100% !important;
    }
    .wbtp-galerie-main-item {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    .wbtp-galerie-main-item img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
    .wbtp-galerie-nav {
        width: 36px !important;
        height: 36px !important;
    }
    .wbtp-galerie-prev { left: 8px !important; }
    .wbtp-galerie-next { right: 8px !important; }
}

/* ── Bouton zoom sur image principale ── */
.wbtp-galerie-zoom {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    background: rgba(0,0,0,.5);
    border: none; border-radius: 50%;
    color: #fff; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5;
    opacity: 0;
    transition: opacity .25s, background .2s, transform .2s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.wbtp-galerie-main-item.active .wbtp-galerie-zoom { opacity: 1; }
.wbtp-galerie-zoom:hover { background: var(--wbtp-rouge,#bc1818); transform: scale(1.12); }
.wbtp-galerie-main-item.active img { cursor: zoom-in; }

/* ── Mobile : bouton zoom toujours visible ── */
@media (hover: none) {
    .wbtp-galerie-zoom {
        opacity: 1 !important;
        width: 44px;
        height: 44px;
        font-size: 16px;
        background: rgba(0,0,0,.65);
        touch-action: manipulation;
    }
}
