:root{
    /* Core Theme Palette (Easy Red & Dark Grey Accent) */
    --primary:#e02110;
    --primary-dark:#b91c1c;
    --primary-light:#fef2f2;
    --secondary:#262d35;
    --secondary-dark:#1a1a1a;
    --secondary-light:#f3f4f6;
    --accent:#ffb100;
    --accent-dark:#d99700;
    --accent-light:#fff5df;

    /* Stannah Specific Branding (red) */
    --stannah-red:#e02110;
    --stannah-red-dark:#b91c1c;
    --stannah-red-light:#fef2f2;

    /* Legacy compatibility for pages using old variable names */
    --red:var(--primary);
    --red-dark:var(--primary-dark);
    --red-light:var(--primary-light);
    
    --blue:#e02110;
    --blue-dark:#b91c1c;
    --blue-light:#fef2f2;
    --orange:#262d35;
    --orange-dark:#1a1a1a;
    --orange-light:#f3f4f6;
    
    --dark:#2c2c2c;
    --dark-2:#1a1a1a;
    --gray:#6b6b6b;
    --gray-2:#4a4a4a;
    --bg:#f5f5f5;
    --bg-2:#ebebeb;
    --ink:#2c2c2c;
    --muted:#6b6b6b;
    --line:#e0e0e0;
    --white:#ffffff;
    --radius:16px;
    --radius-lg:24px;
    --shadow:0 20px 40px -15px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    --shadow-sm:0 8px 30px rgba(0, 0, 0, 0.03);
    --shadow-lg:0 30px 60px -15px rgba(0, 0, 0, 0.1);
    --glass-bg:rgba(255, 255, 255, 0.85);
    --glass-border:rgba(255, 255, 255, 0.4);
    font-size:16px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    font-family:"DM Sans",system-ui,sans-serif;
    color:var(--ink);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:"Sora",sans-serif;line-height:1.15;color:var(--dark);font-weight:700}
a{color:inherit;text-decoration:none;transition:color 0.2s}
img{max-width:100%;display:block}
.wrap{max-width:1200px;margin:0 auto;padding:0 24px}

/* ----------------------------------------------------------------- */
/*  Boutons                                                           */
/* ----------------------------------------------------------------- */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    font-family:"Sora",sans-serif;
    font-weight:700;
    font-size:.95rem;
    padding:.9rem 1.8rem;
    border-radius:100px;
    border:1.5px solid transparent;
    cursor:pointer;
    transition:all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover{
    transform:translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.2);
}
.btn:active{
    transform:translateY(0);
}
.btn-accent{
    background:var(--red);
    color:#fff;
    box-shadow:0 12px 24px -8px rgba(224, 33, 16, 0.35);
}
.btn-accent:hover{
    background:var(--red-dark);
    box-shadow:0 12px 24px -4px rgba(224, 33, 16, 0.5);
    color:#fff;
}
.btn-orange{
    background:var(--secondary);
    color:#fff;
    box-shadow:0 12px 24px -8px rgba(255, 129, 28, 0.35);
}
.btn-orange:hover{
    background:var(--secondary-dark);
    box-shadow:0 12px 24px -4px rgba(255, 129, 28, 0.5);
    color:#fff;
}
.btn-ghost{
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,0.4);
}
.btn-ghost:hover{
    background:rgba(255,255,255,0.12);
    border-color:#fff;
    color:#fff;
}
.btn-outline{
    background:transparent;
    color:var(--dark);
    border:1.5px solid var(--red);
}
.btn-outline:hover{
    background:var(--red);
    color:#fff;
}
.btn-navy{
    background:var(--dark);
    color:#fff;
}
.btn-navy:hover{
    background:var(--dark-2);
    color:#fff;
}
.btn-block{width:100%}
.btn-red{
    background:var(--stannah-red);
    color:#fff;
    box-shadow:0 12px 24px -8px rgba(224,33,16,.35);
}
.btn-red:hover{
    background:var(--stannah-red-dark);
    box-shadow:0 12px 24px -4px rgba(224,33,16,0.5);
    color:#fff;
}
.btn-dark{
    background:var(--dark);
    color:#fff;
}
.btn-dark:hover{
    background:var(--dark-2);
}
.btn-dark-outline{
    background:transparent;
    color:var(--dark);
    border-color:var(--dark);
}
.btn-dark-outline:hover{
    background:var(--dark);
    color:#fff;
}

/* ----------------------------------------------------------------- */
/*  Top bar / nav                                                     */
/* ----------------------------------------------------------------- */
.topbar{
    position:sticky;
    top:0;
    z-index:900;
    padding:16px 24px;
    background:rgba(255, 255, 255, 0.85);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    transition:all 0.3s ease;
    border-bottom:1px solid rgba(224, 224, 224, 0.5);
}
.topbar.scrolled{
    background:rgba(255, 255, 255, 0.95);
    box-shadow:var(--shadow-sm);
    padding:12px 24px;
}
.nav{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1.5rem;
}
.brand{display:flex;align-items:center;gap:.5rem}
.brand-logo{height:40px;width:auto;transition:transform 0.3s ease;}
.brand:hover .brand-logo{transform:scale(1.03)}

.nav-links{list-style:none;display:flex;gap:1.8rem;align-items:center}
.nav-links a{font-weight:600;color:var(--dark);font-size:.92rem;padding:.4rem 0;position:relative}
.nav-links a:hover{color:var(--primary)}
.nav-links a::after{content:"";position:absolute;left:50%;bottom:-4px;width:0;height:2px;background:var(--primary);transition:all .25s ease;transform:translateX(-50%)}
.nav-links a:hover::after{width:100%}

.nav-actions{display:flex;align-items:center;gap:.8rem}
.nav-phone{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-weight:700;
    color:var(--white);
    background:var(--primary);
    font-size:.85rem;
    padding:.6rem 1.1rem;
    border-radius:100px;
    box-shadow:0 8px 20px -6px rgba(224, 33, 16, 0.35);
    transition:all 0.25s ease;
}
.nav-phone:hover{
    background:var(--primary-dark);
    transform:translateY(-1px);
    box-shadow:0 8px 20px -4px rgba(224, 33, 16, 0.45);
    color:var(--white);
}
.nav-phone svg{width:14px;height:14px}
.nav-account {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--dark);
    display: grid;
    place-items: center;
    border: 1.5px solid var(--line);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-account svg.icon-user {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
    transition: transform 0.25s ease;
}
.nav-account:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.nav-account:hover svg.icon-user {
    transform: scale(1.1);
}
.nav-cart{
    position:relative;
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--bg-2);
    color:var(--dark);
    display:grid;
    place-items:center;
    border:1.5px solid var(--line);
    transition:all 0.2s ease;
}
.nav-cart svg{width:18px;height:18px}
.nav-cart:hover{background:var(--dark);color:var(--white);border-color:var(--dark)}
.cart-badge{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:20px;
    height:20px;
    padding:0 5px;
    background:var(--red);
    color:#fff;
    border-radius:100px;
    font-size:.72rem;
    font-weight:700;
    display:grid;
    place-items:center;
    box-shadow:0 2px 8px rgba(224, 33, 16, 0.35);
}
.cart-badge[data-count="0"]{display:none}

/* Hamburger mobile menu button */
.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:none;
    border:0;
    cursor:pointer;
    width:40px;
    height:40px;
    padding:10px;
    border-radius:50%;
    background:var(--bg-2);
    transition:all 0.2s ease;
}
.nav-toggle:hover{background:var(--line)}
.nav-toggle span{
    width:20px;
    height:2px;
    background:var(--dark);
    border-radius:2px;
    transition:all 0.3s ease;
}
body.nav-open .nav-toggle span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2){
    opacity:0;
}
body.nav-open .nav-toggle span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------------- */
/*  Menu Latéral Flottant (Desktop)                                   */
/* ----------------------------------------------------------------- */
.side-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 850;
    pointer-events: none;
}
.sm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sm-item {
    position: relative;
    pointer-events: auto;
}
.sm-link {
    display: flex;
    align-items: center;
    height: 52px;
    border-radius: 100px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    overflow: hidden;
    width: 52px;
}
.sm-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: inherit;
    transition: transform 0.3s;
}
.sm-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}
.sm-label {
    padding-right: 20px;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sm-item:hover .sm-link {
    width: 180px;
}
.sm-item:hover .sm-label {
    opacity: 1;
    transform: translateX(0);
}
.sm-item:hover .sm-icon {
    transform: rotate(8deg) scale(1.05);
}

.sm-item-contact .sm-link { background: var(--blue); }
.sm-item-contact .sm-link:hover { background: var(--blue-dark); }
.sm-item-products .sm-link { background: #404040; }
.sm-item-products .sm-link:hover { background: #2b2b2b; }
.sm-item-docs .sm-link { background: #ff811c; }
.sm-item-docs .sm-link:hover { background: #e06c10; }

/* Panneau Contact Extensible */
.sm-panel {
    position: absolute;
    left: 198px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(224, 224, 224, 0.6);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 24px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sm-panel::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(224, 224, 224, 0.6);
    border-bottom: 1px solid rgba(224, 224, 224, 0.6);
}
.sm-item-contact:hover .sm-panel,
.sm-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}
.sm-panel h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--blue);
    font-weight: 700;
}
.sm-panel p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: var(--gray-2);
    line-height: 1.5;
}
.sm-panel a:not(.btn) {
    color: var(--blue);
    font-weight: 700;
}
.sm-panel a:not(.btn):hover {
    color: var(--blue-dark);
}

/* ----------------------------------------------------------------- */
/*  Barre d'Action Mobile (Sticky Bottom Bar)                         */
/* ----------------------------------------------------------------- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 30px rgba(15, 23, 42, 0.05);
    z-index: 1000;
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}
.mbb-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.mbb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
}
.mbb-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}
.mbb-link:hover svg {
    transform: translateY(-2px);
}
.mbb-item.active .mbb-link,
.mbb-link:hover {
    color: var(--red);
}
.mbb-item-contact .mbb-link:hover {
    color: var(--blue);
}

/* ----------------------------------------------------------------- */
/*  Menu Mobile Drawer (Slide-Out)                                   */
/* ----------------------------------------------------------------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    padding: 16px 20px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
body.nav-open {
    overflow: hidden;
}
body.nav-open .drawer-overlay {
    opacity: 1;
    visibility: visible;
}
body.nav-open .nav-drawer {
    right: 0;
}
body.nav-open .mobile-bottom-bar {
    display: none !important;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
}
.drawer-close {
    background: var(--bg-2);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.drawer-close:hover {
    background: var(--line);
}
.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.drawer-links a {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    display:block;
    padding:.2rem 0;
}
.drawer-links a:hover {
    color: var(--red);
}
.drawer-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.drawer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--red);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.drawer-phone svg { width: 18px; height: 18px; }


/* flash */
.flash{
    max-width:1200px;margin:14px auto 0;padding:.9rem 1.3rem;border-radius:16px;
    background:#fff;border-left:4px solid var(--red);box-shadow:var(--shadow-sm);
    font-weight:500;color:var(--dark);
}

/* ----------------------------------------------------------------- */
/*  Hero split                                                        */
/* ----------------------------------------------------------------- */
.hero-split{
    background:linear-gradient(135deg, #1e2229 0%, #262d35 60%, #16191e 100%);
    overflow:hidden;
    position:relative;
}
.hero-split::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(800px 600px at 75% 50%, rgba(224, 33, 16, 0.18), transparent 60%);
    pointer-events:none;
}
.hero-split-container{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    min-height:600px;
    gap:40px;
    position:relative;
    align-items:center;
}
.hero-split-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 0;
    color:#fff;
    position:relative;
    z-index:1;
}
.hero-split-text h1{
    color:#fff;
    font-size:clamp(2.8rem, 4.5vw, 4rem);
    font-weight:800;
    line-height:1.1;
    margin-bottom:1.5rem;
    letter-spacing:-0.03em;
}
.hero-split-text > p{
    font-size:1.05rem;
    color:rgba(241, 245, 249, 0.8);
    max-width:500px;
    margin-bottom:2.5rem;
    line-height:1.75;
}
.hero-split-cta{
    display:flex;
    gap:1.2rem;
    flex-wrap:wrap;
    margin-bottom:3rem;
}
.hero-split-trust{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.hero-split-trust span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255, 255, 255, 0.05);
    border:1px solid rgba(255, 255, 255, 0.1);
    padding:8px 16px;
    border-radius:100px;
    font-size:0.8rem;
    font-weight:600;
    color:rgba(241, 245, 249, 0.9);
    transition:all 0.25s ease;
}
.hero-split-trust span:hover {
    background:rgba(255, 255, 255, 0.1);
    transform:translateY(-1px);
    border-color:rgba(255, 255, 255, 0.2);
}
.hero-split-trust span svg{
    width:16px;
    height:16px;
    color:var(--accent);
    flex-shrink:0;
}

/* côté visuel */
.hero-split-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 0;
    z-index:1;
}
.hero-product-card{
    background:#fff;
    border-radius:var(--radius-lg);
    border:1px solid rgba(255, 255, 255, 0.7);
    box-shadow:0 35px 70px -15px rgba(15, 23, 42, 0.25);
    overflow:hidden;
    width:100%;
    max-width:380px;
    transition:all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero-product-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 45px 85px -15px rgba(15, 23, 42, 0.35);
}
.hero-product-img{
    background:#f8fafc;
    aspect-ratio:1;
    display:grid;
    place-items:center;
    padding:2.5rem;
}
.hero-product-img img{
    max-height:240px;
    object-fit:contain;
    width:100%;
    transition:transform 0.4s ease;
}
.hero-product-card:hover .hero-product-img img{
    transform:scale(1.05);
}
.hero-product-info{
    padding:1.4rem 1.6rem 1.6rem;
    display:flex;
    flex-direction:column;
    gap:.25rem;
    border-top:1px solid var(--line);
}
.hero-product-label{
    font-size:.75rem;
    color:var(--red);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.hero-product-info strong{
    font-size:1.1rem;
    color:var(--dark);
    font-family:"Sora",sans-serif;
}
.hero-product-info > span{
    font-size:.85rem;
    color:var(--muted);
}

/* bulles flottantes */
.hero-bubble{
    position:absolute;
    background:rgba(255, 255, 255, 0.9);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1px solid rgba(255, 255, 255, 0.5);
    border-radius:20px;
    box-shadow:0 15px 35px -5px rgba(15, 23, 42, 0.15);
    padding:.9rem 1.3rem;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:.2rem;
    pointer-events:none;
    z-index:2;
    transition:all 0.3s ease;
}
.hero-bubble-1{
    top:12%;
    right:4%;
    transform:rotate(5deg);
}
.hero-bubble-2{
    bottom:38%;
    left:4%;
    transform:rotate(-4deg);
}
.hero-bubble:hover{
    transform:translateY(-2px);
}
.hero-bubble-num{
    font-family:"Sora",sans-serif;
    font-weight:800;
    font-size:1.5rem;
    color:var(--red);
    line-height:1;
}
.hero-bubble-sub{
    font-size:.72rem;
    color:var(--gray-2);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.04em;
}

/* champ formulaire (pour stannah contact) */
.field{margin-bottom:1.1rem}
.field label{display:block;font-size:.85rem;color:var(--muted);margin-bottom:.4rem;font-weight:500}
.field select,.field input{
    width:100%;padding:.85rem 1.1rem;border:1.5px solid var(--line);border-radius:100px;
    font:inherit;color:var(--ink);background:#fff;appearance:none;
}
.field select{background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 1.2rem center}
.field input:focus,.field select:focus{outline:none;border-color:var(--red)}

/* ----------------------------------------------------------------- */
/*  Sections catégories                                               */
/* ----------------------------------------------------------------- */
.cat-section{padding:96px 0}
.cat-section--light{background:#fff}
.cat-section--gray{background:var(--bg)}
.cat-section--dark{background:var(--dark-2);color:#fff}
.cat-section--dark h2,.cat-section--dark h3{color:#fff}
.cat-section--dark p{color:rgba(255,255,255,.75)}
.cat-section--dark .section-head p{color:rgba(255,255,255,.7)}

.cat-label{
    display:inline-flex;align-items:center;gap:.5rem;
    background:var(--red-light);color:var(--red);
    font-size:.82rem;font-weight:700;padding:.35rem .9rem;border-radius:100px;
    margin-bottom:1.1rem;text-transform:uppercase;letter-spacing:.05em;
}
.cat-label svg{width:16px;height:16px}
.cat-label-white{
    display:inline-flex;align-items:center;gap:.5rem;
    background:rgba(224,33,16,.25);color:#ffb3b3;
    font-size:.82rem;font-weight:700;padding:.35rem .9rem;border-radius:100px;
    margin-bottom:1.1rem;text-transform:uppercase;letter-spacing:.05em;
}
.cat-label-white svg{width:16px;height:16px}

/* bloc catégorie 2 colonnes */
.cat-block{
    display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;
}
.cat-block--reverse{direction:rtl}
.cat-block--reverse > *{direction:ltr}

.cat-block-media{
    position:relative;background:var(--bg);border-radius:var(--radius-lg);
    aspect-ratio:1;display:grid;place-items:center;padding:3rem;overflow:visible;
}
.cat-block-media img:first-child{max-height:340px;object-fit:contain;width:100%;border-radius:var(--radius)}
.cat-block-media-2{
    position:absolute;bottom:-20px;right:-20px;
    width:130px;height:130px;object-fit:cover;
    border-radius:var(--radius);border:4px solid #fff;
    box-shadow:var(--shadow);
}
.cat-block-media--contain{background:var(--bg);border-radius:var(--radius-lg);aspect-ratio:1;display:grid;place-items:center;padding:2.5rem}
.cat-block-media--contain img{max-height:320px;object-fit:contain}

.cat-block-content h2{font-size:clamp(1.9rem,3vw,2.8rem);margin:.4rem 0 1rem}
.cat-block-content h3{margin:.4rem 0 1rem}
.cat-block-lead{font-size:1rem;color:var(--muted);margin-bottom:1.8rem;line-height:1.7}
.cat-block-price{
    font-family:"Sora",sans-serif;font-weight:700;font-size:1.3rem;color:var(--dark);
    margin-bottom:1.3rem;
}
.cat-block-actions{display:flex;gap:.9rem;flex-wrap:wrap}

/* avantages liste */
.cat-advantages{list-style:none;margin-bottom:1.8rem;display:flex;flex-direction:column;gap:.8rem}
.cat-advantages li{display:flex;align-items:flex-start;gap:.9rem;font-size:.93rem;color:var(--gray-2)}
.adv-ico{
    width:36px;height:36px;min-width:36px;border-radius:10px;
    background:var(--red-light);display:grid;place-items:center;color:var(--red);
}
.adv-ico svg{width:18px;height:18px}

/* ----------------------------------------------------------------- */
/*  Lève-personne cards                                               */
/* ----------------------------------------------------------------- */
.leve-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
.leve-card-img{background:var(--bg);aspect-ratio:4/3;display:grid;place-items:center;padding:2rem;overflow:hidden}
.leve-card-img img{max-height:200px;object-fit:contain;transition:transform .4s}
.leve-card:hover .leve-card-img img{transform:scale(1.05)}
.leve-card-body{padding:1.8rem;flex:1;display:flex;flex-direction:column}
.leve-card-body h3{font-size:1.35rem;margin-bottom:.3rem}
.leve-card-sub{font-size:.88rem;color:var(--red);font-weight:600;margin-bottom:.8rem}

/* ----------------------------------------------------------------- */
/*  Stannah bloc homepage                                             */
/* ----------------------------------------------------------------- */
.stannah-home-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:4rem;align-items:center}
.stannah-home-text h2{font-size:clamp(2rem,3.5vw,3rem);margin:.6rem 0 1.2rem}
.stannah-home-types{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.8rem}
.stannah-home-type{
    background:rgba(255,255,255,.07);border-radius:16px;padding:1.1rem;text-align:center;
    border:1px solid rgba(255,255,255,.08);
}
.stannah-home-type span{display:block;margin:0 auto .5rem;width:32px;height:32px;color:var(--red)}
.stannah-home-type span svg{width:100%;height:100%}
.stannah-home-type strong{display:block;color:#fff;font-size:.95rem;margin-bottom:.2rem}
.stannah-home-type small{color:rgba(255,255,255,.55);font-size:.8rem}

.stannah-home-feats{display:flex;flex-direction:column;gap:1.1rem}
.stannah-feat-dark{
    display:flex;gap:1rem;align-items:flex-start;
    background:rgba(255,255,255,.06);border-radius:16px;padding:1.2rem 1.4rem;
    border:1px solid rgba(255,255,255,.06);
}
.stannah-feat-dark > svg{min-width:20px;margin-top:.15rem}
.stannah-feat-dark strong{display:block;color:#fff;font-size:.95rem;margin-bottom:.3rem}
.stannah-feat-dark p{font-size:.86rem;color:rgba(255,255,255,.6);margin:0}

/* ----------------------------------------------------------------- */
/*  Douche grid                                                       */
/* ----------------------------------------------------------------- */
.douche-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:3.5rem;align-items:start}
.douche-benefits h3{font-size:1.3rem;margin-bottom:1.4rem}
.douche-benefit{display:flex;gap:.9rem;align-items:flex-start;padding:.9rem 0;border-bottom:1px solid var(--line)}
.douche-benefit:last-child{border:0}
.douche-benefit strong{display:block;font-size:.93rem;color:var(--dark);margin-bottom:.25rem}
.douche-benefit p{font-size:.85rem;color:var(--muted);margin:0}
.douche-products{display:flex;flex-direction:column;gap:1.4rem}
.douche-card{background:var(--bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);position:relative}
.douche-card--featured{background:#fff;border:2px solid var(--red)}
.douche-card-ribbon{background:var(--red);color:#fff;font-size:.78rem;font-weight:700;padding:.4rem;text-align:center;letter-spacing:.04em}
.douche-card-img{aspect-ratio:16/7;background:#fff;display:grid;place-items:center;overflow:hidden;padding:1.5rem}
.douche-card--featured .douche-card-img{background:var(--red-light)}
.douche-card-img img{max-height:160px;object-fit:contain}
.douche-card-body{padding:1.4rem 1.6rem 1.6rem}
.douche-card-body h4{font-size:1.05rem;margin-bottom:.5rem}
.douche-card-body p{font-size:.88rem;color:var(--muted);margin-bottom:1rem}
.douche-card-specs{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:.4rem}
.douche-card-specs span{background:var(--bg-2);border-radius:100px;padding:.28rem .8rem;font-size:.8rem;color:var(--gray-2)}
.douche-card-specs span em{font-style:normal;color:var(--muted);margin-right:.3rem}

/* ----------------------------------------------------------------- */
/*  Pourquoi Mobilift                                                 */
/* ----------------------------------------------------------------- */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.why-card{background:#fff;border-radius:var(--radius);padding:2rem 1.6rem;box-shadow:var(--shadow-sm);transition:transform .2s}
.why-card:hover{transform:translateY(-5px)}
.why-ico{width:56px;height:56px;border-radius:16px;background:var(--red-light);display:grid;place-items:center;color:var(--red);margin-bottom:1.2rem}
.why-ico svg{width:28px;height:28px}
.why-card h3{font-size:1.05rem;margin-bottom:.6rem}
.why-card p{font-size:.88rem;color:var(--muted)}

/* ----------------------------------------------------------------- */
/*  Carousel                                                          */
/* ----------------------------------------------------------------- */
.carousel{position:relative}
.carousel-viewport{overflow:hidden;border-radius:var(--radius-lg)}
.carousel-track{
    display:flex;
    transition:transform .45s cubic-bezier(.4,0,.2,1);
    will-change:transform;
}
.carousel-item{min-width:100%;box-sizing:border-box}

/* carte carousel */
.carousel-card{
    display:grid;grid-template-columns:1fr 1.2fr;
    background:#fff;border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);overflow:hidden;
    min-height:420px;
}
.carousel-card--douche{grid-template-columns:1fr 1.4fr}
/* Produits très verticaux (colonnes de douche) : l'image occupe toute
   la hauteur de la carte au lieu de flotter au milieu du blanc.
   Desktop uniquement : en mobile la carte passe en colonne (cf. @media). */
@media(min-width:981px){
    .carousel-card--douche .carousel-card-img{position:relative;min-height:420px}
    .carousel-card--douche .carousel-card-img img{position:absolute;inset:1.2rem;width:calc(100% - 2.4rem);height:calc(100% - 2.4rem);max-height:none;object-fit:contain}
}

.carousel-card-img{
    background:#fafafa;display:grid;place-items:center;padding:1.5rem;
    border-right:1px solid var(--line);
}
.carousel-card-img img{max-height:380px;object-fit:contain;width:100%;transition:transform .4s}
.carousel-item:hover .carousel-card-img img{transform:scale(1.04)}

.carousel-card-body{
    padding:2.8rem 2.8rem 2.4rem;display:flex;flex-direction:column;justify-content:center;
}
.carousel-badge{
    display:inline-block;background:var(--red-light);color:var(--red);
    font-size:.78rem;font-weight:700;padding:.3rem .85rem;border-radius:100px;
    margin-bottom:1rem;text-transform:uppercase;letter-spacing:.04em;
}
.carousel-badge--featured{background:var(--red);color:#fff}
.carousel-card-body h3{font-size:1.8rem;margin-bottom:.4rem}
.carousel-card-sub{font-size:.95rem;color:var(--red);font-weight:600;margin-bottom:.8rem}
.carousel-card-desc{font-size:.92rem;color:var(--muted);margin-bottom:1.4rem;line-height:1.65}
.carousel-card-list{list-style:none;display:flex;flex-direction:column;gap:.55rem;margin-bottom:1.6rem}
.carousel-card-list li{
    display:flex;align-items:center;gap:.7rem;
    font-size:.9rem;color:var(--gray-2);
}
.check-ico{
    width:20px;height:20px;min-width:20px;border-radius:50%;
    background:var(--red);display:grid;place-items:center;
}
.carousel-card-footer{
    display:flex;align-items:center;justify-content:space-between;
    padding-top:1.4rem;border-top:1px solid var(--line);
    margin-top:auto;
}
.carousel-card-price{
    font-family:"Sora",sans-serif;font-weight:800;font-size:1.3rem;color:var(--dark);
}

/* douche bienfaits tags */
.douche-bienfaits{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.2rem}
.douche-bienfaits span{
    background:var(--red-light);color:var(--red);
    font-size:.78rem;font-weight:600;padding:.28rem .75rem;border-radius:100px;
}

/* contrôles */
.carousel-controls{
    display:flex;align-items:center;justify-content:center;gap:1.2rem;margin-top:1.6rem;
}
.carousel-btn{
    width:44px;height:44px;border-radius:50%;border:2px solid var(--line);
    background:#fff;display:grid;place-items:center;cursor:pointer;
    color:var(--dark);transition:all .18s;box-shadow:var(--shadow-sm);
}
.carousel-btn:hover{background:var(--red);border-color:var(--red);color:#fff}
.carousel-btn:disabled{opacity:.35;pointer-events:none}

.carousel-dots{display:flex;gap:.55rem;align-items:center}
.carousel-dot{
    width:8px;height:8px;border-radius:50%;background:var(--line);
    cursor:pointer;transition:all .2s;border:0;padding:0;
}
.carousel-dot.active{background:var(--red);width:24px;border-radius:100px}

/* section-head simplifié */
.section-head{text-align:center;max-width:640px;margin:0 auto 3rem}
.section-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem);margin-bottom:.8rem}
.section-head p{color:var(--muted)}

/* cat-block subtitle */
.cat-block-subtitle{
    font-size:1.15rem;color:var(--red);font-weight:600;margin-bottom:.9rem;
}

/* ----------------------------------------------------------------- */
/*  CTA contact                                                       */
/* ----------------------------------------------------------------- */
.cta-contact-block{
    max-width:1080px;margin:0 auto;
    background:var(--dark-2);border-radius:var(--radius-lg);
    padding:64px;display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center;
}
.cta-contact-block h2{color:#fff;font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:.7rem}
.cta-contact-block p{color:rgba(255,255,255,.7);font-size:.95rem}
.cta-contact-info{text-align:center;background:rgba(255,255,255,.06);border-radius:var(--radius);padding:2rem 2.4rem;border:1px solid rgba(255,255,255,.08)}
.cta-phone{font-family:"Sora",sans-serif;font-weight:800;font-size:1.8rem;color:var(--red);margin-bottom:.4rem}
.cta-contact-info p{color:rgba(255,255,255,.55);font-size:.86rem;margin:.2rem 0}
.cta-contact-block .btn-outline {
    color: #ffffff;
    border-color: var(--red);
}
.cta-contact-block .btn-outline:hover {
    background: var(--red);
    color: #ffffff;
}

/* ----------------------------------------------------------------- */
/*  Sections                                                          */
/* ----------------------------------------------------------------- */
section{padding:84px 0}
.section-head{text-align:center;max-width:640px;margin:0 auto 3rem}
.section-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem);margin-bottom:1rem}
.section-head p{color:var(--muted)}
.hl{color:var(--red)}

/* categories grid */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.cat-card{
    background:#fff;border-radius:var(--radius);padding:2.2rem 1.6rem;text-align:center;
    box-shadow:var(--shadow-sm);transition:transform .2s, box-shadow .2s;
}
.cat-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.cat-ico{
    width:74px;height:74px;margin:0 auto 1.3rem;border-radius:22px;display:grid;place-items:center;
    background:var(--red-light);color:var(--red);position:relative;
}
.cat-ico svg{width:36px;height:36px;position:relative}
.cat-card h3{font-size:1.18rem;margin-bottom:.6rem}
.cat-card p{font-size:.92rem;color:var(--muted)}
.center{text-align:center;margin-top:2.6rem}

/* commitment / services band */
.band-commit{background:var(--bg);}
.services{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.svc-card{
    background:#fff;border-radius:var(--radius);padding:2rem 1.6rem;box-shadow:var(--shadow-sm);
    transition:transform .2s;
}
.svc-card:hover{transform:translateY(-6px)}
.svc-ico{
    width:64px;height:64px;border-radius:50%;background:var(--red-light);display:grid;place-items:center;
    margin-bottom:1.2rem;color:var(--red);
}
.svc-ico svg{width:30px;height:30px}
.svc-card h3{font-size:1.1rem;margin-bottom:.7rem}
.svc-card p{font-size:.92rem;color:var(--muted);margin-bottom:1.2rem}
.svc-more{font-weight:600;color:var(--dark);display:inline-flex;align-items:center;gap:.4rem}
.svc-more:hover{color:var(--red)}

/* ----------------------------------------------------------------- */
/*  Product cards                                                     */
/* ----------------------------------------------------------------- */
.products{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.prod-card{
    background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);
    display:flex;flex-direction:column;transition:transform .2s, box-shadow .2s;position:relative;
}
.prod-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.prod-media{position:relative;aspect-ratio:1;background:#f9fafb;display:block;overflow:hidden;border-bottom:1px solid var(--line);width:100%}
.prod-media img{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem;box-sizing:border-box;object-fit:contain;mix-blend-mode:multiply;transition:transform .4s ease}
.prod-card:hover .prod-media img{transform:scale(1.06)}
.prod-badge{position:absolute;top:14px;left:14px;background:var(--red);color:#fff;font-weight:700;font-size:.78rem;padding:.35rem .8rem;border-radius:100px;z-index:2}
.prod-body{padding:1.5rem 1.5rem 1.7rem;display:flex;flex-direction:column;flex:1}
.prod-cat{font-size:.78rem;font-weight:600;color:var(--red);text-transform:uppercase;letter-spacing:.04em}
.prod-card h3{font-size:1.15rem;margin:.4rem 0 .2rem}
.prod-sub{font-size:.9rem;color:var(--muted);margin-bottom:1rem}
.prod-price{margin-top:auto;margin-bottom:1.1rem;font-family:"Sora";font-weight:700;color:var(--dark);font-size:1.15rem}
.prod-price .old{color:var(--muted);font-weight:500;font-size:.92rem;text-decoration:line-through;margin-right:.5rem}
.prod-actions{display:flex;gap:.6rem}
.prod-actions .btn{flex:1;padding:.8rem 1rem;font-size:.9rem}

/* ----------------------------------------------------------------- */
/*  Single product                                                    */
/* ----------------------------------------------------------------- */
.single{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.single-media{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.gallery-main {
    background:#fff;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);
    padding:2rem;
    display:grid;
    place-items:center;
    aspect-ratio:1;
    width: 100%;
}
.gallery-main img{border-radius:var(--radius);object-fit:contain;max-height:100%;max-width:100%}
.gallery-thumbs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.thumb-btn {
    width: 70px;
    height: 70px;
    padding: 6px;
    border-radius: 12px;
    border: 2px solid var(--line);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumb-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.thumb-btn.active {
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(224, 33, 16, 0.15);
}
.thumb-btn:hover {
    border-color: var(--red);
}
.single-info .prod-cat{font-size:.85rem}
.single-info h1{font-size:2.3rem;margin:.6rem 0}
.single-sub{font-size:1.1rem;color:var(--muted);margin-bottom:1.4rem}
.single-price{font-family:"Sora";font-weight:800;font-size:2rem;color:var(--dark);margin-bottom:1.6rem}
.single-price .old{font-size:1.2rem;color:var(--muted);text-decoration:line-through;margin-right:.7rem;font-weight:500}
.single-desc{color:var(--gray-2);margin-bottom:1.8rem}
.specs{list-style:none;background:var(--bg);border-radius:var(--radius);padding:1.4rem 1.6rem;margin-bottom:1.8rem}
.specs li{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid var(--line);font-size:.95rem}
.specs li:last-child{border:0}
.specs span:first-child{color:var(--muted)}
.specs span:last-child{font-weight:600;color:var(--dark)}
.qty-row{display:flex;gap:1rem;align-items:center;margin-bottom:1rem}
.qty{display:flex;align-items:center;border:1.5px solid var(--line);border-radius:100px;overflow:hidden}
.qty button{width:42px;height:46px;border:0;background:#fff;font-size:1.2rem;cursor:pointer;color:var(--dark)}
.qty input{width:48px;text-align:center;border:0;font:inherit;font-weight:600}

/* breadcrumb */
.crumb{padding:24px 0 0;color:var(--muted);font-size:.9rem}
.crumb a:hover{color:var(--red)}

/* ----------------------------------------------------------------- */
/*  Shop toolbar                                                      */
/* ----------------------------------------------------------------- */
.shop-head{background:var(--dark);color:#fff;border-radius:var(--radius-lg);padding:3rem 2.6rem;margin:18px 0 3rem;text-align:center}
.shop-head h1{color:#fff;font-size:2.4rem;margin-bottom:.6rem}
.shop-head p{opacity:.82;max-width:560px;margin:0 auto}
.filters{display:flex;gap:.7rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.6rem}
.filter{padding:.6rem 1.3rem;border-radius:100px;background:#fff;border:1.5px solid var(--line);font-weight:600;font-size:.92rem;color:var(--dark);transition:.18s}
.filter:hover{border-color:var(--red)}
.filter.active{background:var(--red);color:#fff;border-color:var(--red)}

/* ----------------------------------------------------------------- */
/*  Cart                                                              */
/* ----------------------------------------------------------------- */
.cart-grid{display:grid;grid-template-columns:1.6fr .9fr;gap:2rem;align-items:start}
.cart-line{display:grid;grid-template-columns:90px 1fr auto;gap:1.2rem;align-items:center;background:#fff;border-radius:var(--radius);padding:1.1rem 1.3rem;box-shadow:var(--shadow-sm);margin-bottom:1rem}
.cart-line img{width:90px;height:72px;object-fit:cover;border-radius:14px;background:var(--bg-2)}
.cart-line h3{font-size:1.05rem;margin-bottom:.2rem}
.cart-line .meta{font-size:.85rem;color:var(--muted)}
.cart-line .line-price{font-family:"Sora";font-weight:700;color:var(--dark);white-space:nowrap}
.cart-line form{display:inline}
.line-remove{background:none;border:0;color:var(--muted);cursor:pointer;font-size:.85rem;margin-top:.4rem}
.line-remove:hover{color:#d33}
.summary{background:#fff;border-radius:var(--radius);padding:1.8rem;box-shadow:var(--shadow-sm);position:sticky;top:100px}
.summary h3{margin-bottom:1.2rem}
.summary-row{display:flex;justify-content:space-between;padding:.6rem 0;color:var(--muted)}
.summary-total{display:flex;justify-content:space-between;padding:1rem 0;border-top:1.5px solid var(--line);margin-top:.6rem;font-family:"Sora";font-weight:800;font-size:1.3rem;color:var(--dark)}
.empty{text-align:center;padding:4rem 1rem;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.empty svg{width:60px;height:60px;color:var(--red);margin:0 auto 1rem}

/* ----------------------------------------------------------------- */
/*  Account / forms                                                   */
/* ----------------------------------------------------------------- */
.auth{max-width:920px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.auth-card{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:2.6rem}
.auth-card h2{font-size:1.5rem;margin-bottom:.4rem}
.auth-card .lead{color:var(--muted);margin-bottom:1.6rem}
.auth-card .field input{border-radius:14px}
.auth-card .field{margin-bottom:1rem}
.auth-error{background:#fff2f2;border-left:4px solid var(--red);color:var(--red-dark);padding:.8rem 1rem;border-radius:12px;margin-bottom:1.2rem;font-size:.92rem}
.dash{max-width:760px;margin:0 auto;background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:2.8rem}
.dash h1{font-size:2rem;margin-bottom:.3rem}
.dash .muted{color:var(--muted);margin-bottom:2rem}
.dash-row{display:flex;justify-content:space-between;padding:1rem 0;border-bottom:1px solid var(--line)}
.dash-row span:first-child{color:var(--muted)}
.dash-row span:last-child{font-weight:600}

/* ----------------------------------------------------------------- */
/*  Footer                                                            */
/* ----------------------------------------------------------------- */
.footer{background:var(--dark-2);color:#ccc;margin-top:84px;border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.footer-inner{max-width:1200px;margin:0 auto;padding:64px 24px 40px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.4rem}
.footer-brand p{font-size:.92rem;margin-top:1rem;opacity:.78;max-width:320px}
.footer-logo{height:36px;width:auto;filter:brightness(0) invert(1);opacity:.85}
.footer-contact{margin-top:1rem}
.footer-contact strong{color:#fff;font-size:1.1rem}
.footer h4{color:#fff;font-size:1rem;margin-bottom:1.1rem}
.footer ul{list-style:none}
.footer ul li{margin-bottom:.6rem}
.footer ul a{opacity:.78;font-size:.92rem}
.footer ul a:hover{opacity:1;color:var(--red)}
.footer-bottom{max-width:1200px;margin:0 auto;padding:1.4rem 24px;border-top:1px solid rgba(255,255,255,.1);display:flex;justify-content:space-between;font-size:.85rem;opacity:.6;flex-wrap:wrap;gap:.6rem}

/* ----------------------------------------------------------------- */
/*  Page Stannah                                                      */
/* ----------------------------------------------------------------- */
.stannah-hero{
    background:linear-gradient(135deg, #1e2229 0%, #262d35 60%, #16191e 100%);
    color:#fff;border-radius:var(--radius-lg);margin:16px 24px 0;
    padding:80px 48px;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;
}
.stannah-hero h1{color:#fff;font-size:clamp(2rem,4vw,3.2rem);margin-bottom:1rem}
.stannah-hero p{opacity:.88;font-size:1.08rem;margin-bottom:2rem}
.stannah-hero-img{border-radius:var(--radius);overflow:hidden;box-shadow:0 30px 60px rgba(0,0,0,.4)}
.stannah-types{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:3rem}
.stannah-type{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .2s}
.stannah-type:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.stannah-type-img{aspect-ratio:4/3;background:var(--bg-2);overflow:hidden}
.stannah-type-img img{width:100%;height:100%;object-fit:cover}
.stannah-type-body{padding:1.6rem}
.stannah-type-body h3{font-size:1.2rem;margin-bottom:.6rem}
.stannah-type-body p{font-size:.92rem;color:var(--muted)}
.stannah-badge{display:inline-block;background:var(--red);color:#fff;font-size:.75rem;font-weight:700;padding:.3rem .7rem;border-radius:100px;margin-bottom:.8rem}
.stannah-features{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem}
.stannah-feat{display:flex;gap:1rem;align-items:flex-start;padding:1.6rem;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-sm)}
.stannah-feat-ico{width:46px;height:46px;min-width:46px;border-radius:14px;background:var(--red-light);display:grid;place-items:center;color:var(--red)}
.stannah-feat-ico svg{width:24px;height:24px}
.stannah-feat h4{font-size:1rem;margin-bottom:.4rem}
.stannah-feat p{font-size:.9rem;color:var(--muted)}
.stannah-contact{background:var(--dark);color:#fff;border-radius:var(--radius-lg);padding:3.5rem;text-align:center;margin-top:3rem}
.stannah-contact h2{color:#fff;font-size:2rem;margin-bottom:1rem}
.stannah-contact p{opacity:.85;max-width:560px;margin:0 auto 2rem}
.stannah-contact-form{max-width:640px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.stannah-contact-form .field-full{grid-column:1/-1}
.stannah-contact-form .field input,.stannah-contact-form .field select{background:#fff;border-color:#fff}
.stannah-contact-form .field label{color:rgba(255,255,255,.7)}

/* ----------------------------------------------------------------- */
/*  Page Documentation                                                */
/* ----------------------------------------------------------------- */
.doc-layout{display:grid;grid-template-columns:260px 1fr;gap:2.5rem;align-items:start;padding-top:2rem}
.doc-sidebar{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:1.8rem;position:sticky;top:100px}
.doc-sidebar h3{font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;color:var(--muted);margin-bottom:.8rem}
.doc-sidebar ul{list-style:none}
.doc-sidebar ul li{margin-bottom:.3rem}
.doc-sidebar ul a{font-size:.95rem;color:var(--dark);padding:.4rem .8rem;border-radius:10px;display:block}
.doc-sidebar ul a:hover{background:var(--red-light);color:var(--red)}
.doc-sidebar ul a.active{background:var(--red);color:#fff}
.doc-content h2{font-size:1.8rem;margin:2.5rem 0 1rem;padding-top:2rem;border-top:1px solid var(--line)}
.doc-content h2:first-child{margin-top:0;border-top:0;padding-top:0}
.doc-content h3{font-size:1.25rem;margin:1.8rem 0 .8rem;color:var(--red)}
.doc-content p{color:var(--gray-2);margin-bottom:1rem;line-height:1.75}
.doc-content ul{padding-left:1.4rem;margin-bottom:1rem;color:var(--gray-2)}
.doc-content ul li{margin-bottom:.5rem;line-height:1.65}
.doc-card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-sm);padding:2rem;margin-bottom:1.5rem}
.doc-card h3{margin-top:0;margin-bottom:.6rem;font-size:1.15rem;color:var(--dark)}
.doc-tag{display:inline-block;background:var(--red-light);color:var(--red);font-size:.8rem;font-weight:600;padding:.25rem .7rem;border-radius:100px;margin-bottom:.8rem}
.doc-table{width:100%;border-collapse:collapse;margin-bottom:1.5rem;font-size:.95rem}
.doc-table th{background:var(--bg);text-align:left;padding:.8rem 1rem;font-weight:600;border-bottom:2px solid var(--line)}
.doc-table td{padding:.75rem 1rem;border-bottom:1px solid var(--line);color:var(--gray-2)}
.doc-table tr:last-child td{border:0}
.doc-callout{background:var(--red-light);border-left:4px solid var(--red);padding:1.2rem 1.4rem;border-radius:0 var(--radius) var(--radius) 0;margin:1.5rem 0}
.doc-callout strong{color:var(--red);display:block;margin-bottom:.4rem}
.doc-callout p{margin:0;color:var(--gray-2)}

/* ----------------------------------------------------------------- */
/*  Prévention du débordement horizontal global                      */
/* ----------------------------------------------------------------- */
html{overflow-x:hidden}
body{overflow-x:hidden}

/* ----------------------------------------------------------------- */
/*  Carousel — correctifs width & containment                        */
/* ----------------------------------------------------------------- */
.carousel-viewport{width:100%;overflow:hidden}
.carousel-track{width:100%}
.carousel-item{box-sizing:border-box;min-width:100%;overflow:hidden}
.carousel-card{max-width:100%}
.carousel-card-body{min-width:0}
.carousel-card-list li{min-width:0}

/* grilles utilitaires (remplacent les styles inline) */
.g-2{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.g-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.g-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}

/* ----------------------------------------------------------------- */
/*  Responsive                                                        */
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
/*  Responsive                                                        */
/* ----------------------------------------------------------------- */
@media(min-width:981px){
    .side-menu { display: block; }
    .mobile-bottom-bar { display: none; }
}

@media(max-width:1140px){
    .nav-links{gap:1rem}
    .nav-links a{font-size:.85rem}
}

@media(max-width:980px){
    .nav-links,.nav-phone{display:none}
    .nav-toggle{display:flex}
    
    .nav-account {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-2);
        border: 1.5px solid var(--line);
    }
    .nav-account-text {
        display: none;
    }
    .nav-account svg.icon-user {
        width: 18px;
        height: 18px;
        stroke-width: 2.2;
    }
    
    .side-menu { display: none; }
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 70px; } /* Evite la superposition de la barre mobile */
    
    .cards,.services,.products{grid-template-columns:repeat(2,1fr)}
    .single,.cart-grid,.auth{grid-template-columns:1fr}
    .footer-inner{grid-template-columns:1fr 1fr}
    
    /* hero split responsive (affiche le visuel en dessous) */
    .hero-split-container{grid-template-columns:1fr;min-height:auto;gap:0}
    .hero-split-visual{
        display:flex;
        padding:20px 0 60px;
        justify-content:center;
        margin-top:-20px;
    }
    .hero-product-card {
        max-width:320px;
    }
    .hero-bubble { display:none; }
    .hero-split-text{padding:60px 0 40px}
    
    /* cat blocks */
    .cat-block,.cat-block--reverse{grid-template-columns:1fr;direction:ltr;gap:2.5rem}
    .cat-block--reverse .cat-block-media{order:-1}
    .cat-block-media-2{display:none}
    
    /* carousel cards */
    .carousel-card,.carousel-card--douche{grid-template-columns:minmax(0,1fr);min-height:auto}
    .carousel-card-body{padding:2rem;border-left:0;border-top:1px solid var(--line);overflow:hidden;min-width:0}
    .carousel-card-img{aspect-ratio:16/9;padding:2rem}
    .carousel-card-img img{max-height:200px}
    
    /* stannah */
    .stannah-home-grid{grid-template-columns:1fr;gap:2.5rem}
    .stannah-home-types{grid-template-columns:repeat(3,1fr)}
    
    /* why */
    .why-grid{grid-template-columns:repeat(2,1fr)}
    
    /* cta */
    .cta-contact-block{grid-template-columns:1fr;text-align:center;padding:48px 36px}
    .cta-contact-info{display:none}
    
    /* stannah page */
    .stannah-hero{grid-template-columns:1fr;text-align:center}
    .stannah-types{grid-template-columns:1fr 1fr}
    .stannah-features{grid-template-columns:1fr}
    .stannah-contact-form{grid-template-columns:1fr}
    
    /* doc */
    .doc-layout{grid-template-columns:1fr}
    .doc-sidebar{position:static; margin-bottom:1.5rem}
    
    /* grilles utilitaires */
    .g-4{grid-template-columns:1fr 1fr}
    .g-3{grid-template-columns:1fr 1fr}
}

@media(max-width:640px){
    .wrap{padding:0 16px}
    .hero-split-text{padding:50px 16px 30px}
    .hero-split-text h1{font-size:2.1rem}
    .hero-split-cta{flex-direction:column}
    .cat-section{padding:50px 0}
    
    .cards,.services,.products,.footer-inner,.why-grid{grid-template-columns:1fr}
    .stannah-types,.stannah-home-types{grid-template-columns:1fr}
    .stannah-hero{padding:40px 16px;margin:10px 0}
    
    .carousel-card-body{padding:1.4rem}
    .carousel-card-body h3{font-size:1.30rem}
    .carousel-card-footer{flex-direction:column;align-items:flex-start;gap:.8rem}
    .douche-bienfaits{flex-wrap:wrap}
    
    /* grilles utilitaires */
    .g-2,.g-3,.g-4{grid-template-columns:1fr}
    
    /* boutique page filters scrolling horizontal */
    .filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }
    .filter {
        flex-shrink: 0;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* panier */
    .cart-line{
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .cart-line img {
        width: 80px;
        height: 64px;
        border-radius: 8px;
    }
    .cart-line > div:last-child{
        grid-column: 1 / -1;
        text-align: left;
        border-top: 1px solid var(--line);
        padding-top: 8px;
        margin-top: 4px;
    }
    
    /* topbar */
    .topbar{padding:12px 16px}
    
    /* cta */
    .cta-contact-block{padding:30px 16px}
    
    /* stannah */
    .stannah-contact{padding:2rem 1rem}
    .stannah-contact-form{gap:.8rem}
    
    /* doc */
    .doc-content h2{font-size:1.5rem}

    /* single product quantity row */
    .qty-row {
        flex-wrap: wrap;
    }
    @media(max-width:480px){
        .qty-row {
            flex-direction: column;
            align-items: stretch;
            gap: 0.8rem;
        }
        .qty {
            justify-content: center;
            width: 100% !important;
        }
        .qty button {
            flex: 1;
        }
    }
}

/* ----------------------------------------------------------------- */
/*  Vidéos et Téléchargements de Documents                           */
/* ----------------------------------------------------------------- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #000;
    margin: 1.5rem 0;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
.doc-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.2rem 1.6rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin: 1.8rem 0;
    flex-wrap: wrap;
}
.doc-download-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.doc-download-info svg {
    color: var(--red);
    flex-shrink: 0;
}
.doc-download-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}
.doc-download-info span {
    color: var(--gray-2);
    font-size: 0.85rem;
}

/* Point Conseil & SAV Stannah block */
.stannah-sav-block {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media(max-width:980px){
    .stannah-sav-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stannah-sav-block > div:last-child {
        border-left: none !important;
        padding-left: 0 !important;
        padding-top: 2rem;
        border-top: 1px solid var(--line);
    }
}

/* Documentation page enhancements */
.doc-product-row {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    margin-bottom: 2rem;
}
.doc-product-img-wrapper {
    padding: 1.5rem;
    background: var(--bg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doc-product-img-wrapper img {
    max-height: 140px;
    object-fit: contain;
    border-radius: var(--radius);
}
.doc-product-img-wrapper svg {
    width: 60px;
    height: 60px;
    color: var(--muted);
    opacity: 0.5;
}
.doc-product-info {
    padding: 2rem;
}
@media(max-width: 767px) {
    .doc-product-row {
        grid-template-columns: 1fr;
    }
    .doc-product-img-wrapper {
        padding: 2rem 1.5rem;
        height: auto;
    }
}

/* Header Dropdown Menu (Douche & Massage) */
.nav-dropdown {
    position: relative;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #fff;
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--line);
    padding: 0.6rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gray-2) !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.dropdown-menu a::after {
    display: none !important;
}
.dropdown-menu a:hover {
    background: var(--red-light);
    color: var(--red) !important;
}
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
}
.nav-dropdown > a::after {
    display: none !important;
}
.nav-dropdown > a span {
    position: relative;
}
.nav-dropdown > a span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all .25s ease;
    transform: translateX(-50%);
}
.nav-dropdown:hover > a span::after {
    width: 100%;
}

/* Mobile Drawer Submenu */
.drawer-submenu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.15rem;
    margin-bottom: 0.3rem;
    border-left: 2px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.drawer-submenu a {
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
    padding: 0.15rem 0 !important;
    display: block;
}
.drawer-submenu a:hover {
    color: var(--red) !important;
}

