/* ============================================================
   HOME REFONTE — page d'accueil bleu marine sombre (maquette)
   Tout est scopé sous .home-v2 sauf les overrides header/footer.
   ============================================================ */

.home-v2 {
    --hv-navy: #001a3f;
    --hv-navy-2: #002a62;
    --hv-yellow: #ffbc00;
    --hv-white: #fdfdff;
    --hv-text: rgba(253, 253, 255, 0.72);
    --hv-text-dim: rgba(253, 253, 255, 0.52);
    --hv-border: rgba(255, 255, 255, 0.10);

    position: relative;
    margin-top: -80px; /* la page passe sous la navbar flottante */
    color: var(--hv-text);
    background: #0e295e; /* couleur unie exacte de la maquette */
    overflow: hidden;
}

@media (max-width: 575px) {
    .home-v2 { margin-top: -68px; }
}

.home-v2 a { text-decoration: none; }

.hv-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 992px) {
    .hv-wrap { padding: 0 24px; }
}

.home-v2 .hv-showcase,
.home-v2 .hv-why,
.home-v2 .hv-deals,
.home-v2 .hv-expertise,
.home-v2 .hv-blog {
    padding: clamp(40px, 6vw, 72px) 0;
}

/* ── Éléments partagés ──────────────────────────────────────── */
.hv-head { margin-bottom: 28px; }

.hv-head--center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 34px;
}

.hv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 188, 0, 0.12);
    border: 1px solid rgba(255, 188, 0, 0.40);
    color: var(--hv-yellow);
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.hv-title {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.hv-head--center .hv-title { color: var(--hv-yellow); }

.hv-accent { color: var(--hv-yellow); }

.hv-lead {
    color: var(--hv-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 14px 0 0;
}

.hv-lead--muted { color: var(--hv-text-dim); }

/* ── Boutons ────────────────────────────────────────────────── */
.hv-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.hv-btn-primary {
    background: var(--hv-yellow);
    color: #002a62;
    box-shadow: 0 12px 26px rgba(255, 188, 0, 0.22);
}
.hv-btn-primary:hover {
    color: #002a62;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 188, 0, 0.34);
}

.hv-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: var(--hv-border);
}
.hv-btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.hv-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}
.hv-btn-outline:hover { color: #002a62; background: var(--hv-yellow); border-color: var(--hv-yellow); }

/* ============================================================
   HERO — carrousel
   ============================================================ */
.hv-hero {
    position: relative;
    padding-top: 128px;
    overflow: hidden;
    /* Coins bas en courbe douce et large (elliptique) */
    border-radius: 0 0 120px 120px / 0 0 56px 56px;
}
/* Bordure dorée uniquement en bas, collée aux deux bords, courbe douce aux extrémités */
.hv-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 58px;
    border: 2px solid var(--hv-yellow);
    border-top: none;
    border-bottom-left-radius: 120px 56px;
    border-bottom-right-radius: 120px 56px;
    pointer-events: none;
    z-index: 4;
}

@media (max-width: 575px) {
    .hv-hero { padding-top: 92px; border-radius: 0 0 64px 64px / 0 0 34px 34px; }
    .hv-hero::after { height: 36px; border-bottom-left-radius: 64px 34px; border-bottom-right-radius: 64px 34px; }
}

.hv-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 40px);
    max-width: 1320px;
    margin: 0 auto;
    min-height: 470px;
    padding: 10px 24px 66px;
}

.hv-hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 0 1 600px;
}

/* Rotateur de messages — change en synchro avec les images */
.hv-hero-rotator {
    display: grid;
    margin-bottom: 26px;
}
.hv-hero-msg {
    grid-area: 1 / 1;              /* messages empilés dans la même cellule */
    opacity: 0;
    will-change: opacity, filter, transform;
    animation: heroTextRotate 15s ease-in-out infinite;
    animation-delay: calc(var(--i) * -5s);
}

/* Effet « mise au point » : flou + léger zoom */
@keyframes heroTextRotate {
    0%   { opacity: 0; filter: blur(14px); transform: scale(1.08); }
    9%   { opacity: 1; filter: blur(0);    transform: scale(1); }
    38%  { opacity: 1; filter: blur(0);    transform: scale(1); }
    47%  { opacity: 0; filter: blur(14px); transform: scale(0.94); }
    100% { opacity: 0; filter: blur(14px); transform: scale(0.94); }
}

.hv-hero-title {
    font-size: clamp(1.9rem, 4.6vw, 3rem);
    font-weight: 800;
    color: var(--hv-yellow);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.hv-hero-title .hv-accent { color: inherit; }

.hv-hero-sub {
    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* Bouton hero — outline, exactement comme la maquette */
.hv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 13px 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hv-hero-cta:hover {
    background: var(--hv-yellow);
    border-color: var(--hv-yellow);
    color: #002a62;
}

/* Couloirs latéraux — produits qui entrent, restent, puis repartent */
.hv-hero-lane {
    position: relative;
    flex: 1 1 0;
    align-self: stretch;
    min-height: 330px;
}

.hv-hero-float {
    position: absolute;
    left: 50%;
    top: 50%;
    height: clamp(180px, 21vw, 280px);
    width: auto;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
    will-change: transform, opacity;
    animation: heroFloatLeft 15s linear infinite;
    animation-delay: calc(var(--i) * -5s);
}
.hv-hero-lane--right .hv-hero-float { animation-name: heroFloatRight; }

@keyframes heroFloatLeft {
    0%   { transform: translate(calc(-50% - 440px), -50%) rotate(-9deg); opacity: 0; }
    10%  { transform: translate(-50%, -50%) rotate(-7deg); opacity: 1; }
    40%  { transform: translate(-50%, -50%) rotate(-7deg); opacity: 1; }
    50%  { transform: translate(calc(-50% - 440px), -50%) rotate(-9deg); opacity: 0; }
    100% { transform: translate(calc(-50% - 440px), -50%) rotate(-9deg); opacity: 0; }
}
@keyframes heroFloatRight {
    0%   { transform: translate(calc(-50% + 440px), -50%) rotate(9deg); opacity: 0; }
    10%  { transform: translate(-50%, -50%) rotate(7deg); opacity: 1; }
    40%  { transform: translate(-50%, -50%) rotate(7deg); opacity: 1; }
    50%  { transform: translate(calc(-50% + 440px), -50%) rotate(9deg); opacity: 0; }
    100% { transform: translate(calc(-50% + 440px), -50%) rotate(9deg); opacity: 0; }
}

@media (max-width: 991px) {
    .hv-hero-lane { display: none; }
    .hv-hero-inner { min-height: 300px; }
}

/* Accessibilité — sans animation : une image fixe par côté */
@media (prefers-reduced-motion: reduce) {
    .hv-hero-float { animation: none; }
    .hv-hero-lane--left .hv-hero-float:first-child { opacity: 1; transform: translate(-50%, -50%) rotate(-7deg); }
    .hv-hero-lane--right .hv-hero-float:first-child { opacity: 1; transform: translate(-50%, -50%) rotate(7deg); }
    .hv-hero-msg { animation: none; opacity: 0; }
    .hv-hero-msg:first-child { opacity: 1; transform: none; }
}

/* ============================================================
   NOS SÉLECTIONS PHARES
   ============================================================ */
.hv-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: safe center;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px 8px;
    margin-bottom: 28px;
}
.hv-tabs::-webkit-scrollbar { display: none; }
.hv-tab {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px 5px 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 188, 0, 0.55);
    background: transparent;
    color: var(--hv-yellow);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.hv-tab-ic {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--hv-yellow);
    color: #0e295e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hv-tab-ic img { width: 100%; height: 100%; object-fit: cover; }
.hv-tab:hover { color: #fff; border-color: var(--hv-yellow); }
.hv-tab.active { background: var(--hv-yellow); color: #002a62; border-color: var(--hv-yellow); }
.hv-tab.active .hv-tab-ic { background: rgba(0, 42, 98, 0.16); color: #002a62; }

.hv-showcase-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hv-show-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 2px 18px;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
}
.hv-show-track::-webkit-scrollbar { display: none; }

.hv-show-item {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    min-width: 270px;
    scroll-snap-align: start;
}
@media (max-width: 991px) {
    .hv-show-item { width: calc((100% - 20px) / 2); min-width: 260px; }
}
@media (max-width: 575px) {
    .hv-show-item { width: 84%; min-width: 0; }
}

.hv-show-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--hv-border);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s ease, opacity 0.25s ease;
}
.hv-show-arrow:hover { background: var(--hv-yellow); color: #002a62; border-color: var(--hv-yellow); }
.hv-show-arrow.is-hidden { opacity: 0.3; pointer-events: none; }
@media (max-width: 767px) {
    .hv-show-arrow { display: none; }
}

.hv-show-empty {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    color: var(--hv-text-dim);
}
.hv-show-empty p { margin: 12px 0 0; }

.hv-showcase-cta {
    text-align: center;
    margin-top: 28px;
}

/* ── Carte produit ──────────────────────────────────────────── */
.hv-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hv-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38); }

.hv-card-media {
    position: relative;
    display: block;
    background: #f4f6fb;
    height: 158px;
    padding: 16px;
}
.hv-card-media img { width: 100%; height: 100%; object-fit: contain; }

.hv-card-flag {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--hv-yellow);
    color: #002a62;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 9px;
    border-radius: 8px;
}

.hv-card-body {
    padding: 15px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}
.hv-card-title {
    font-weight: 800;
    font-size: 0.98rem;
    color: #0e295e;
    line-height: 1.3;
}
.hv-card-title:hover { color: var(--app-blue-color); }

.hv-card-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.hv-card-stars { display: inline-flex; align-items: center; color: var(--hv-yellow); }

.hv-card-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
}
.hv-card-stock::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.hv-card-stock.is-in { color: #18a32a; }
.hv-card-stock.is-low { color: #d98a00; }
.hv-card-stock.is-out { color: #d81d1d; }

.hv-card-desc {
    color: #66708a;
    font-size: 0.80rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    text-align: center;
}

.hv-card-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    background: #0e295e;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}
.hv-card-cart:hover { background: #0a1f4a; color: #fff; transform: translateY(-1px); }
.hv-card-cart:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.hv-card-cart-main { display: inline-flex; align-items: center; gap: 9px; font-size: 0.84rem; font-weight: 600; }
.hv-card-cart-main svg { color: var(--hv-yellow); }
.hv-card-cart-price { font-size: 0.98rem; font-weight: 800; white-space: nowrap; }

/* ============================================================
   POURQUOI NOUS CHOISIR
   ============================================================ */
.hv-why-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}
.hv-why-note {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--hv-border);
    border-radius: 18px;
    padding: 26px;
}
.hv-why-note p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0 0 18px;
}
.hv-why-photo {
    border-radius: 18px;
    overflow: hidden;
    background: var(--hv-yellow);
    flex: 1;
    min-height: 240px;
}
.hv-why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hv-adv-list { display: flex; flex-direction: column; gap: 4px; }
.hv-adv {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.hv-adv:hover { background: rgba(255, 255, 255, 0.03); border-color: var(--hv-border); }
.hv-adv-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hv-yellow);
    line-height: 1;
    flex: 0 0 auto;
    min-width: 44px;
}
.hv-adv-title { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 5px; }
.hv-adv-text { color: var(--hv-text-dim); font-size: 0.86rem; line-height: 1.65; margin: 0; }

/* ============================================================
   NOS BONS PLANS & PROMOTIONS
   ============================================================ */
.hv-deals-visual {
    position: relative;
    padding: 0 0 46px;
    max-width: 440px;
}
.hv-deals-photo {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.hv-deals-card {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 320px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--app-blue-color), #002a62);
    border: 1px solid rgba(255, 188, 0, 0.40);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}
.hv-deals-percent {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--hv-yellow);
    line-height: 1;
    flex: 0 0 auto;
}
.hv-deals-card-title { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.hv-deals-card-text { color: rgba(255, 255, 255, 0.70); font-size: 0.76rem; line-height: 1.5; margin: 0; }

@media (max-width: 575px) {
    .hv-deals-visual { max-width: 100%; padding-bottom: 0; }
    .hv-deals-card { position: static; max-width: none; margin-top: 16px; }
}

/* ============================================================
   NOTRE EXPERTISE
   ============================================================ */
.hv-expertise-box {
    position: relative;
    background: linear-gradient(160deg, rgba(0, 62, 205, 0.18), rgba(0, 42, 98, 0.30));
    border: 1px solid rgba(255, 188, 0, 0.32);
    border-radius: 26px;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
}

.hv-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.hv-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 188, 0, 0.35);
    color: var(--hv-yellow);
    font-size: 0.74rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.hv-cascade { display: flex; flex-direction: column; gap: 16px; }
.hv-cascade-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--hv-yellow);
    color: #002a62;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}
.hv-cascade-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 42, 98, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002a62;
}
.hv-cascade-title { font-weight: 800; font-size: 0.95rem; }
.hv-cascade-text { font-size: 0.80rem; line-height: 1.5; margin: 4px 0 0; color: rgba(0, 42, 98, 0.80); }

@media (min-width: 992px) {
    .hv-cascade-card--2 { margin-left: 8%; }
    .hv-cascade-card--3 { margin-left: 16%; }
    .hv-cascade-card--4 { margin-left: 24%; }
}

/* ============================================================
   NOTRE BLOG
   ============================================================ */
.hv-blog-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--hv-border);
    border-radius: 26px;
    padding: clamp(24px, 4vw, 44px);
}

.hv-blog-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 575px) { .hv-blog-features { grid-template-columns: 1fr; } }

.hv-blog-feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--hv-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hv-blog-feature-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.hv-blog-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.hv-blog-feature:hover .hv-blog-feature-media img { transform: scale(1.05); }
.hv-blog-feature-body { padding: 16px 18px 20px; }

.hv-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--hv-text-dim);
    margin-bottom: 10px;
}
.hv-blog-cat {
    background: rgba(255, 188, 0, 0.16);
    color: var(--hv-yellow);
    padding: 2px 9px;
    border-radius: 50px;
    font-weight: 700;
}

.hv-blog-feature-title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.hv-blog-feature-title a { color: #fff; }
.hv-blog-feature-title a:hover { color: var(--hv-yellow); }
.hv-blog-feature-excerpt { color: var(--hv-text-dim); font-size: 0.82rem; line-height: 1.6; margin: 0 0 14px; }

.hv-blog-read { display: inline-flex; align-items: center; gap: 6px; color: var(--hv-yellow); font-weight: 700; font-size: 0.82rem; transition: gap 0.25s ease; }
.hv-blog-read:hover { gap: 10px; color: var(--hv-yellow); }

.hv-blog-list { display: flex; flex-direction: column; gap: 4px; }
.hv-blog-row {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.hv-blog-row:hover { background: rgba(255, 255, 255, 0.04); border-color: var(--hv-border); }
.hv-blog-row-thumb { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; }
.hv-blog-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hv-blog-row-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hv-blog-row-title {
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hv-blog-row:hover .hv-blog-row-title { color: var(--hv-yellow); }

/* ============================================================
   NAVBAR — apparence sombre quand on est sur la home (.home-v2)
   ============================================================ */
.navbar-lead { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.navbar-nav-center { flex: 1 1 auto; justify-content: center; gap: 4px; }
.navbar-side-right { flex: 0 0 auto; }
.navbar-search-form { width: 240px; }

body:has(.home-v2) .navbar-top-strip {
    background: rgba(0, 20, 50, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
}
body:has(.home-v2) .navbar.scrolled .navbar-top-strip {
    background: rgba(0, 16, 42, 0.86);
}
body:has(.home-v2) .navbar .left-nav-link .nav-link { color: rgba(255, 255, 255, 0.80); }
body:has(.home-v2) .navbar .left-nav-link .nav-link:hover,
body:has(.home-v2) .navbar .left-nav-link .nav-link.active { color: #fff; }
body:has(.home-v2) .navbar-icon-btn { color: rgba(255, 255, 255, 0.85); }
body:has(.home-v2) .navbar-icon-btn:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
body:has(.home-v2) .navbar-search-input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}
body:has(.home-v2) .navbar-search-input::placeholder { color: rgba(255, 255, 255, 0.5); }
body:has(.home-v2) .navbar-search-icon { color: rgba(255, 255, 255, 0.5); }
body:has(.home-v2) .nav-burger-inner span { background: #fff; }
