/* -------------------------------------------------------
   FONTS & VARIABLES
------------------------------------------------------- */

:root {
    --bg-dark: #050609;
    --bg-darker: #020307;
    --gold: #d4af37;
    --text-main: #f5f5f5;
    --text-muted: #b5b5b5;
    --accent: #ffffff;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
}


/* -------------------------------------------------------
   RESET
------------------------------------------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* -------------------------------------------------------
   TOP HEADER (LIVRAISON GRATUITE)
------------------------------------------------------- */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 24px; /* Plus fin */
    line-height: 24px;
    z-index: 9999;
    background: linear-gradient(90deg, #050505, #151515);
    color: #ffffff;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.top-header-inner {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.top-header-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: topbar-marquee 15s linear infinite;
}

@keyframes topbar-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* -------------------------------------------------------
   NAVBAR
------------------------------------------------------- */

.navbar {
    position: fixed;
    top: 24px; /* sous la top-header */
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw; /* Moins de padding vertical */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    height: 40px; 
    width: 180px; /* Forcer la largeur pour masquer le fond noir (crop) */
    object-fit: cover;
    object-position: center; /* Centrer sur le texte "CLONELUX" */
    display: block;
    margin: 5px 0; /* Conserve la hauteur exacte du header actuel */
}

.navbar-menu {
    display: flex;
    gap: 26px;
    font-size: 0.9rem;
}

.navbar-menu a {
    position: relative;
    color: var(--text-muted);
    transition: 0.2s ease;
    padding-right: 6px; /* petit espace pour le badge panier */
}

.navbar-menu a:hover {
    color: var(--accent);
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-cta {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}

/* Badge panier */

.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    margin-left: 4px;
    padding: 0 4px;
}

/* -------------------------------------------------------
   BOUTONS (GÉNÉRIQUE)
------------------------------------------------------- */

.btn-primary {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 11px 26px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--accent);
    border-radius: 999px;
    padding: 11px 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

/* Animations de retour visuel */
.btn-primary.added {
    background: #28a745;
    color: white;
    transform: scale(1.05);
}

@keyframes cart-bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.cart-count-badge.bump {
    animation: cart-bump 0.3s ease-out;
}

/* Toast Notification */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-top: 10px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: toast-in 0.3s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* -------------------------------------------------------
   HERO SECTION (ACCUEIL)
------------------------------------------------------- */

.hero-section {
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centré au milieu pour le contenu */
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Texte au-dessus de la bannière */

.hero-top-text {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: auto; /* Centré verticalement et horizontalement */
    padding: 0 6vw;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Pour la lisibilité */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffffff;
    animation: fade-in-up 0.8s ease-out forwards;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-top: 20px;
    color: #ffffff;
    animation: fade-in-up 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title-center {
    text-align: center;
}

.hero-subtitle {
    max-width: 600px;
    margin: 20px auto 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fade-in-up 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-subtitle-center {
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    animation: fade-in-up 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-actions-center {
    justify-content: center;
}

/* BANNIÈRE / CARROUSEL */

.hero-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Couvre tout l'écran sans distorsion */
    background: #000;
    z-index: 0;
}

.desktop-video { display: block; }
.mobile-video { display: none; }

@media (max-width: 780px) {
    .desktop-video { display: none; }
    .mobile-video { display: block; }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent; /* Filtre retiré */
    pointer-events: none;
}

.hero-darken {
    position: absolute;
    inset: 0;
    background: transparent; /* Filtre retiré */
    pointer-events: none;
}

/* Texte en bas de la bannière */

.hero-bottom-strip {
    max-width: 900px;
    margin: 18px auto 0 auto;
    padding: 8px 6vw 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

/* Bandeau infos */

.banner-strip {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.5);
}

/* -------------------------------------------------------
   SECTIONS GÉNÉRALES
------------------------------------------------------- */

main {
    padding-top: 20px;
    background: radial-gradient(circle at top, #101017, #020307 60%);
}

.section {
    padding: 80px 20px;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 540px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------
   CARTES AVANTAGES
------------------------------------------------------- */

.advantages-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

.adv-card {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
}

.adv-label {
    color: var(--gold);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
}

.adv-title {
    font-size: 1rem;
    margin-bottom: 6px;
}

.adv-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------
   GRILLE PRODUITS (accueil + catalogue)
------------------------------------------------------- */

.product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}

.product-card {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #0d0d0d;
    aspect-ratio: 1/1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* Masque élégant pour couvrir les codes QR en bas à droite */
.product-img::after {
    content: "CLONELUX AUTHENTIC";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-top-left-radius: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
    box-shadow: -2px -2px 10px rgba(0,0,0,0.5);
}

.product-price {
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price::after {
    content: "(Taxes incl.)";
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.8;
}

.product-actions {
    margin-top: 8px;
}

/* -------------------------------------------------------
   PAGE PRODUIT (layout générique)
------------------------------------------------------- */

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.product-image-large img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.product-details {
    padding: 8px 0;
}

.product-sizes {
    margin-top: 18px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-pill {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: var(--accent);
    font-size: 0.8rem;
    cursor: pointer;
}

.size-pill-active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.product-detail-list {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.product-detail-list li + li {
    margin-top: 4px;
}

/* -------------------------------------------------------
   PAGE PANIER
------------------------------------------------------- */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
    gap: 26px;
    align-items: flex-start;
    margin-top: 24px;
}

.cart-items {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px;
    background: rgba(255,255,255,0.02);
}

.cart-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 110px;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-item-img img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.cart-item-name {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--accent);
    font-size: 0.8rem;
    cursor: pointer;
}

.remove-btn {
    margin-top: 8px;
    font-size: 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
}

.cart-summary {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px 18px 20px;
    background: rgba(255,255,255,0.02);
}

.cart-total-amount {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 4px;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */

footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    padding: 34px 6vw 26px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
}
.footer-links li + li {
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 6vw 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.74rem;
    color: #797979;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .cart-item {
        grid-template-columns: 70px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }
}

@media (max-width: 780px) {
    /* Garder le panier visible sur mobile, cacher le reste du menu */
    .navbar-menu a:not([href="panier.html"]) {
        display: none;
    }
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 0;
    }
    .navbar-menu a[href="panier.html"] .lang-fr,
    .navbar-menu a[href="panier.html"] .lang-en {
        display: none !important; /* Cacher le mot "Panier" pour ne garder que l'icône 🛒 */
    }
    
    /* Cacher le gros bouton pour gagner de la place */
    .navbar-cta { 
        display: none; 
    }

    .hero-section {
        padding-top: 75px; /* Laisse juste la place pour la navbar */
        padding-bottom: 0;
        height: auto;
        justify-content: flex-start;
    }

    /* On sépare l'image et le texte pour éviter que le texte HTML ne se superpose au texte de l'image */
    .hero-wrapper {
        position: relative;
        top: 0;
        height: 40vh; /* L'image prend le haut de l'écran */
        width: 100%;
        left: 0;
        order: 1;
        border-radius: 0;
    }

    .hero-top-text {
        position: relative;
        order: 2;
        margin-top: 32px;
        margin-bottom: 16px;
    }
    
    .hero-bottom-strip {
        position: relative;
        order: 3;
        flex-direction: column;
        gap: 12px;
        background: transparent;
        border-top: none;
        backdrop-filter: none;
        padding: 15px 6vw 40px 6vw;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    /* Boutons de la section hero en colonne sur mobile */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .btn-primary, 
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Animations et Strip Bottom */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 6vw;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-bottom-strip span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- DYNAMIC PRODUCT PAGE --- */
.product-page-main {
    padding: 100px 0 80px; /* Réduit car le header est plus fin */
    background: #000;
}

.breadcrumb {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-image-box {
    background: #0d0d0d;
    border-radius: 32px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 140px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-width: 600px; /* Évite que l'image soit géante sur grand écran */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .product-image-box {
        position: relative; /* Désactive le sticky sur mobile */
        top: 0;
        max-width: 100%;
        border-radius: 24px;
    }
}

.product-image-box img,
.product-image-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Masque sur la page produit aussi */
.product-image-box::after {
    content: "CLONELUX AUTHENTIC";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    border-top-left-radius: 14px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 5;
    box-shadow: -4px -4px 15px rgba(0,0,0,0.6);
}

/* Loupe sur l'image produit */
.img-magnifier {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
    display: none; /* Caché par défaut */
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-repeat: no-repeat;
    background-color: #000;
}

@media (max-width: 768px) {
    .img-magnifier { display: none !important; } /* Désactivé sur mobile pour éviter les bugs tactiles */
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title-dynamic {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
}

.product-price-dynamic {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.product-subtitle-dynamic {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.product-description-box h3, .product-specs-box h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 15px;
}

.product-description-box p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.product-specs-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.product-specs-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.product-specs-box .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.product-buy-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-selector button {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.quantity-selector button:hover {
    background: rgba(255,255,255,0.1);
}

.quantity-selector input {
    width: 50px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.buy-btn {
    flex-grow: 1;
    height: 56px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* =======================================================
   URGENT MOBILE FIXES (Ensures no overrides from above)
======================================================= */
@media (max-width: 780px) {
    .hero-section {
        padding-top: 80px !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-wrapper {
        position: relative !important;
        top: 0 !important;
        height: 40vh !important;
        width: 100% !important;
        order: 1 !important;
        border-radius: 0 !important;
    }

    .hero-top-text {
        position: relative !important;
        order: 2 !important;
        margin-top: 32px !important;
    }

    .hero-bottom-strip {
        position: relative !important;
        order: 3 !important;
        flex-direction: column !important;
        gap: 12px !important;
        background: transparent !important;
        border-top: none !important;
        backdrop-filter: none !important;
        padding: 20px 6vw 40px 6vw !important;
    }
}
