/**
 * ImmoAdresse — Frontend CSS additionnel
 */

/* ════ Print ════ */
@media print {
    .site-header, .site-footer, .contact-card, .breadcrumb__actions, .modal-overlay { display: none !important; }
    .detail-layout { grid-template-columns: 1fr !important; }
    .detail-gallery { height: 300px !important; }
}

/* ════ No results ════ */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
    font-size: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    grid-column: 1 / -1;
}
.no-results::before { content: '🔍'; display: block; font-size: 2.5rem; margin-bottom: 1rem; }

/* ════ Skeleton Loader ════ */
.skeleton {
    background: linear-gradient(90deg, var(--bg) 25%, var(--bg2) 50%, var(--bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 6px;
}
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ════ Alert box ════ */
.vichou-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: .9375rem;
}
.vichou-alert--success { background: #e6f9f0; border-color: var(--green); color: #1a6b41; }
.vichou-alert--error   { background: #fdecea; border-color: var(--red);   color: #7b2020; }
.vichou-alert--info    { background: #ebf4fb; border-color: #2980b9;      color: #1a4f75; }
.vichou-alert--warning { background: #fef9e7; border-color: var(--gold);  color: #7d5a0a; }

/* ════ Chips de filtres actifs ════ */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}
.filter-chip {
    padding: .3125rem .875rem;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 20px;
    font-size: .8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .375rem;
    cursor: pointer;
}
.filter-chip:hover { background: var(--teal); color: var(--white); }
.filter-chip__remove { font-size: 1rem; line-height: 1; }

/* ════ Account page ════ */
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}
.account-sidebar {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 86px;
}
.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.account-name {
    text-align: center;
    font-weight: 900;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: .25rem;
}
.account-email {
    text-align: center;
    font-size: .8125rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.account-nav { display: flex; flex-direction: column; gap: .25rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.account-nav a {
    padding: .625rem .875rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--dark2);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.account-nav a:hover, .account-nav a.active { background: var(--teal-light); color: var(--teal); }

/* ════ Bien statuts labels ════ */
.statut-disponible { color: var(--green); }
.statut-vendu      { color: var(--red); }
.statut-loue       { color: #2980b9; }
.statut-sous_offre { color: var(--gold); }

/* ════ Comparateur ════ */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 998;
    transform: translateY(100%);
    transition: transform .3s;
}
.compare-bar.show { transform: translateY(0); }
.compare-items { display: flex; gap: 1rem; align-items: center; }
.compare-item {
    background: rgba(255,255,255,.12);
    padding: .375rem .875rem;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
}

/* ════ Estimation page ════ */
.estimation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}
.estimation-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--border);
}
.estim-step { text-align: center; position: relative; }
.estim-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    transition: all .3s;
}
.estim-step.active .estim-step__num,
.estim-step.done   .estim-step__num {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.estim-step__label { font-size: .8125rem; font-weight: 700; color: var(--muted); }
.estim-step.active .estim-step__label { color: var(--teal); }

/* ════ Responsive fixes ════ */
@media (max-width: 900px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .estimation-steps { grid-template-columns: 1fr 1fr; }
    .compare-bar { padding: .75rem 1rem; }
}
@media (max-width: 600px) {
    .estimation-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .estimation-steps::before { display: none; }
}

/* ═══════════════════════════════════════════
   SLIDER PROPRIÉTÉS
═══════════════════════════════════════════ */
.props-slider-wrap { overflow: hidden; position: relative; }
.props-slider { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
.props-slider::-webkit-scrollbar { display: none; }
.props-slide { flex: 0 0 calc(25% - .95rem); min-width: 260px; scroll-snap-align: start; }
@media(max-width:1100px) { .props-slide { flex: 0 0 calc(33.333% - .85rem); } }
@media(max-width:768px)  { .props-slide { flex: 0 0 calc(50% - .625rem); } }
@media(max-width:520px)  { .props-slide { flex: 0 0 90%; } }

/* Navigation sliders */
.slider-nav { display: flex; gap: .5rem; }
.snav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border2); background: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; font-weight: 700; }
.snav-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* Dots */
.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.sdot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border2); cursor: pointer; transition: all .25s; padding: 0; }
.sdot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════
   SECTION AVANTAGES
═══════════════════════════════════════════ */
.avantages-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.avantages-list { display: flex; flex-direction: column; gap: 1.75rem; position: relative; }
.avantages-list::before { content: ''; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--teal-mid)); border-radius: 2px; }
.avantage-item { display: flex; gap: 1.125rem; align-items: flex-start; }
.avantage-icon { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; position: relative; z-index: 1; transition: all .3s; }
.avantage-icon--active,
.avantage-item:hover .avantage-icon { background: var(--teal); border-color: var(--teal); color: var(--white); }
.avantage-title { font-weight: 900; font-size: 1.0625rem; color: var(--dark); margin-bottom: .375rem; }
.avantage-desc { font-size: .9rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* Cards biens (style Yakeey) */
.avantages-right { display: flex; flex-direction: column; gap: 1rem; }
.avantage-card { display: grid; grid-template-columns: 200px 1fr; background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .25s; text-decoration: none; color: inherit; position: relative; }
.avantage-card:hover { box-shadow: 0 8px 32px rgba(43,181,160,.15); border-color: transparent; transform: translateX(4px); }
.avantage-card__img { height: 140px; overflow: hidden; }
.avantage-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.avantage-card:hover .avantage-card__img img { transform: scale(1.05); }
.avantage-card__body { padding: 1rem 1.125rem; display: flex; flex-direction: column; justify-content: center; gap: .3rem; }
.avantage-card__price { font-size: 1.25rem; font-weight: 900; color: var(--dark); letter-spacing: -.5px; }
.avantage-card__type { font-size: .8125rem; color: var(--mid); font-weight: 600; }
.avantage-card__loc { font-size: .8125rem; color: var(--muted); }
.avantage-card__specs { display: flex; gap: .75rem; font-size: .8125rem; color: var(--text); font-weight: 600; flex-wrap: wrap; margin-top: .25rem; }
.avantage-card__badge { display: inline-flex; align-items: center; gap: .25rem; font-size: .7rem; font-weight: 800; color: var(--teal); background: var(--teal-light); padding: .25rem .625rem; border-radius: 20px; margin-top: .375rem; width: fit-content; }
.avantage-card__fav { position: absolute; top: .75rem; right: .75rem; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; font-size: .9375rem; color: var(--mid); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.avantage-card__fav:hover { color: var(--red); background: var(--white); }

@media(max-width:900px) {
  .avantages-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .avantage-card { grid-template-columns: 160px 1fr; }
  .avantage-card__img { height: 120px; }
}
@media(max-width:600px) {
  .avantage-card { grid-template-columns: 1fr; }
  .avantage-card__img { height: 200px; }
}

/* ═══════════════════════════════════════════
   SIMULATEUR DE CRÉDIT
═══════════════════════════════════════════ */
.simulateur-section { background: var(--bg); }
.simulateur-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.simulateur-img-wrap { margin-top: 2.5rem; border-radius: 24px 0 0 24px; overflow: hidden; height: 280px; }
.simulateur-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Carte simulateur */
.sim-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.875rem; box-shadow: 0 8px 40px rgba(0,0,0,.06); position: sticky; top: 86px; }
.sim-title { font-size: 1.125rem; font-weight: 900; color: var(--dark); margin-bottom: 1.25rem; }

/* Tabs simulateur */
.sim-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem; }
.sim-tab { padding: .75rem .75rem; background: var(--white); border: none; font-family: var(--font); font-size: .8125rem; font-weight: 700; color: var(--mid); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: .4rem; transition: all .2s; border-right: 1.5px solid var(--border); text-align: center; line-height: 1.3; }
.sim-tab:last-child { border-right: none; }
.sim-tab.active { background: var(--teal-light); color: var(--teal); }

/* Panels */
.sim-panel { display: none; }
.sim-panel.active { display: block; }

/* Champs */
.sim-field { margin-bottom: 1.25rem; }
.sim-field__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .625rem; }
.sim-field__head label { font-size: .8125rem; font-weight: 700; color: var(--dark2); }
.sim-field__val { display: flex; align-items: center; gap: .375rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: .375rem .75rem; }
.sim-field__val input { width: 80px; border: none; outline: none; font-family: var(--font); font-size: .9375rem; font-weight: 800; color: var(--dark); text-align: right; background: transparent; }
.sim-field__val span { font-size: .8125rem; font-weight: 600; color: var(--mid); white-space: nowrap; }

/* Slider range custom */
.sim-slider { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: linear-gradient(to right, var(--teal) 0%, var(--teal) var(--val, 50%), var(--border) var(--val, 50%), var(--border) 100%); border-radius: 4px; outline: none; cursor: pointer; }
.sim-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(43,181,160,.4); cursor: grab; }
.sim-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(43,181,160,.4); cursor: grab; border: 3px solid var(--white); }
.sim-slider-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); margin-top: .375rem; }

/* Résultat */
.sim-result { background: var(--teal-light); border-radius: 12px; padding: 1.375rem; margin-bottom: 1.25rem; }
.sim-result__label { font-size: .875rem; font-weight: 700; color: var(--dark2); margin-bottom: .25rem; }
.sim-result__val { font-size: 2.125rem; font-weight: 900; color: var(--dark); letter-spacing: -1px; line-height: 1.1; }
.sim-result__val span { font-size: 1.125rem; color: var(--teal); }
.sim-result__note { font-size: .8125rem; color: var(--mid); margin-top: .5rem; margin-bottom: 0; }

/* Récapitulatif */
.sim-recap { background: rgba(255,255,255,.7); border-radius: 8px; padding: .875rem 1rem; margin-top: .875rem; display: flex; flex-direction: column; gap: .5rem; }
.sim-recap__row { display: flex; justify-content: space-between; font-size: .8125rem; font-weight: 600; color: var(--dark2); }
.sim-recap__row span:last-child { font-weight: 800; color: var(--dark); }

@media(max-width:1000px) {
  .simulateur-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sim-card { position: static; }
  .simulateur-img-wrap { display: none; }
}

/* ═══════════════════════════════════════════
   SECTION REJOIGNEZ-NOUS
═══════════════════════════════════════════ */
@media(max-width:900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HERO FULLSCREEN SLIDESHOW
═══════════════════════════════════════════════════════════ */

/* Navbar transparente sur le hero */
body.home .site-header,
body.front-page .site-header {
    background: transparent;
    border-bottom-color: transparent;
    position: fixed;
    top: 0; left: 0; right: 0;
    transition: background .35s, border-color .35s, box-shadow .35s;
}
body.home .site-header.scrolled,
body.front-page .site-header.scrolled {
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    backdrop-filter: blur(8px);
}
/* Logo + liens blancs quand transparent */
body.home .site-header:not(.scrolled) .site-logo__name,
body.home .site-header:not(.scrolled) .site-logo__tag,
body.home .site-header:not(.scrolled) .main-nav a,
body.home .site-header:not(.scrolled) .nav-login,
body.home .site-header:not(.scrolled) .nav-home-icon,
body.home .site-header:not(.scrolled) .search-more { color: rgba(255,255,255,.9); }
body.home .site-header:not(.scrolled) .nav-home-icon { border-color: rgba(255,255,255,.3); }
body.home .site-header:not(.scrolled) .nav-estimer-btn { border-color: rgba(255,255,255,.7); color: #fff; }
body.home .site-header:not(.scrolled) .site-logo__name span { color: #fff; }

/* ── Hero container ── */
.vichou-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Slides ── */
.vichou-hero__slides { position: absolute; inset: 0; }
.vichou-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .9s cubic-bezier(.4,0,.2,1), transform 6s ease;
    will-change: opacity, transform;
}
.vichou-hero__slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.vichou-hero__slide.leaving {
    opacity: 0;
    transform: scale(1.04);
    z-index: 0;
}

/* ── Overlay ── */
.vichou-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
/* Gradient bas pour lisibilité du contenu */
.vichou-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10,18,30,.65) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* ── Contenu ── */
.vichou-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
}
.vichou-hero__content .container { width: 100%; }

/* Badge live */
.vichou-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,.9);
    font-size: .8125rem;
    font-weight: 700;
    padding: .375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: .3px;
}
.vichou-hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(43,181,160,.3);
    animation: heroPulse 2s infinite;
    flex-shrink: 0;
}
@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(43,181,160,.3); }
    50% { box-shadow: 0 0 0 6px rgba(43,181,160,.1); }
}

/* Titre */
.vichou-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    max-width: 800px;
}
.vichou-hero__title br { display: block; }

/* Sous-titre */
.vichou-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

/* ── MOTEUR DE RECHERCHE HERO ── */
.vichou-hero__search {
    max-width: 900px;
    margin-bottom: 3rem;
}

/* Tabs */
.hero-search-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}
.hero-stab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.375rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    color: rgba(255,255,255,.75);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
    margin-right: 3px;
}
.hero-stab:hover { background: rgba(255,255,255,.2); color: #fff; }
.hero-stab.active {
    background: #fff;
    color: var(--teal);
    border-color: #fff;
}

/* Form */
.hero-search-form {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    background: #fff;
    border-radius: 0 12px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-sf {
    padding: 0;
    border-right: 1px solid var(--border);
    position: relative;
}
.hero-sf:last-of-type { border-right: none; }
.hero-sf label {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
    padding: .875rem 1.125rem .25rem;
}
.hero-sf__inner {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1.125rem .875rem;
    color: var(--mid);
}
.hero-sf__inner > svg:first-child { flex-shrink: 0; color: var(--teal); }
.hero-sf__inner input,
.hero-sf__inner select {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    background: transparent;
    min-width: 0;
    -webkit-appearance: none;
}
.hero-sf__inner input::placeholder { color: var(--muted); font-weight: 500; font-size: .9375rem; }
.hero-sf__arrow { flex-shrink: 0; color: var(--muted); pointer-events: none; }
.hero-sf__unit { font-size: .875rem; font-weight: 700; color: var(--muted); white-space: nowrap; }

/* Bouton rechercher */
.hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    background: var(--teal);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 900;
    padding: 0 2rem;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}
.hero-search-btn:hover { background: var(--teal2); }

/* Critères avancés */
.hero-advanced {
    background: rgba(255,255,255,.97);
    border-radius: 0 0 12px 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.hero-advanced.open { max-height: 200px; }
.hero-adv-inner {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 1.375rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.hero-adv-group { display: flex; flex-direction: column; gap: .5rem; }
.hero-adv-group > span { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--mid); }
.hero-adv-rooms { display: flex; gap: .375rem; }
.hero-room-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--border2);
    background: #fff;
    font-size: .875rem; font-weight: 700; color: var(--dark);
    cursor: pointer; transition: all .15s; font-family: var(--font);
}
.hero-room-btn.on { background: var(--teal); border-color: var(--teal); color: #fff; }
.hero-adv-input-wrap { display: flex; align-items: center; gap: .375rem; border: 1.5px solid var(--border); border-radius: 8px; padding: .375rem .625rem; }
.hero-adv-input-wrap input { width: 80px; border: none; outline: none; font-family: var(--font); font-size: .9rem; font-weight: 700; color: var(--dark); }
.hero-adv-input-wrap span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hero-tag-btn {
    padding: .3125rem .75rem;
    border: 1.5px solid var(--border2);
    border-radius: 20px;
    background: #fff;
    font-size: .8rem; font-weight: 700; color: var(--dark);
    cursor: pointer; transition: all .15s; font-family: var(--font);
}
.hero-tag-btn.on { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }

/* Bouton plus de critères */
.hero-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    margin-top: .875rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    color: rgba(255,255,255,.85);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 700;
    padding: .4375rem 1.125rem;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.hero-more-btn:hover { background: rgba(255,255,255,.25); color: #fff; }
.hero-more-arrow { transition: transform .25s; }

/* ── Stats ── */
.vichou-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 1rem;
}
.hero-stat { text-align: center; padding: 0 2rem; }
.hero-stat__val { display: block; font-size: 1.75rem; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.hero-stat__lbl { display: block; font-size: .8125rem; color: rgba(255,255,255,.65); font-weight: 600; margin-top: .3rem; }
.hero-stat__sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-stat:first-child { padding-left: 0; }

/* ── Contrôles ── */
.vichou-hero__controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
    display: flex;
    gap: .5rem;
}
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* Flèches */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.3); }
.hero-arrow--prev { left: 2rem; }
.hero-arrow--next { right: 2rem; }

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    animation: heroScrollAnim 2s infinite;
}
.hero-scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}
.hero-scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: heroWheel 1.5s infinite;
}
@keyframes heroWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes heroScrollAnim { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(4px); } }

/* ── Responsive ── */
@media (max-width: 900px) {
    .vichou-hero { height: 85vh !important; min-height: 600px; }
    .vichou-hero__title { font-size: clamp(1.875rem,6vw,2.75rem); letter-spacing: -.5px; }
    .hero-search-form { grid-template-columns: 1fr; }
    .hero-sf { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-search-btn { padding: 1rem; width: 100%; border-radius: 0 0 12px 12px; }
    .hero-search-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .hero-stab { white-space: nowrap; }
    .hero-arrow { display: none; }
    .hero-stat { padding: 0 1.25rem; }
    .hero-stat__val { font-size: 1.375rem; }
    .hero-more-btn { display: none; }
}
@media (max-width: 600px) {
    .vichou-hero__stats { gap: 0; }
    .hero-stat__sep { display: none; }
    .hero-stat { padding: 0 1rem; }
    .vichou-hero__sub { display: none; }
}
