/*
Theme Name: LumioBox Pro
Theme URI: https://blacklionstudios.sn
Author: BlackLion Studios
Version: 2.0.0
Description: Thème WooCommerce ultra-optimisé conversion — Mobile-first, Africa-first. Inspiré Shopee, Jumia, Walmart, Amazon, Zalando, Temu.
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.0
License: GPL v2 or later
Text Domain: lumiobox-pro
WooCommerce: true
*/
:root {
--primary: #FF6B00;
--primary-dark: #E55A00;
--primary-light: #FF8C3A;
--primary-bg: rgba(255,107,0,0.06);
--secondary: #1A1A2E;
--accent: #FFD700;
--success: #00C853;
--danger: #F44336;
--warning: #FF9800;
--info: #2196F3;
--bg: #F4F5F7;
--bg-white: #FFFFFF;
--surface: #FFFFFF;
--card-bg: #FFFFFF;
--text: #111111;
--text-light: #555555;
--text-muted: #999999;
--text-white: #FFFFFF;
--text-price: #E53935;
--text-price-old: #AAAAAA;
--border: #E5E7EB;
--border-light: #F3F4F6;
--topbar-bg: #1A1A2E;
--header-bg: #FFFFFF;
--nav-bg: #FF6B00;
--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
--radius-xs: 3px;
--radius-sm: 6px;
--radius-md: 10px;
--radius-lg: 14px;
--radius-xl: 20px;
--radius-full: 9999px;
--shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
--shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.10);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
--shadow-xl: 0 16px 40px rgba(0,0,0,0.14);
--shadow-card: 0 2px 8px rgba(0,0,0,0.07);
--shadow-card-hover: 0 6px 20px rgba(0,0,0,0.13);
--shadow-primary: 0 4px 16px rgba(255,107,0,0.35);
--transition: 200ms ease;
--transition-slow: 350ms ease;
--container: 1320px;
--header-h: 68px;
--nav-h: 44px;
--topbar-h: 34px;
--mobile-nav-h: 58px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 15px; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: var(--font); }
ul, ol { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; box-sizing: border-box; width: 100%; }
.container-fluid { width: 100%; padding: 0 16px; }
.site-topbar {
background: var(--topbar-bg);
height: var(--topbar-h);
display: flex;
align-items: center;
font-size: 12px;
color: rgba(255,255,255,0.75);
position: relative;
z-index: 100;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.topbar-center { flex: 1; text-align: center; }
.topbar-promo { background: var(--primary); color: #fff; padding: 2px 14px; border-radius: var(--radius-full); font-weight: 700; font-size: 11px; white-space: nowrap; }
.topbar-link { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; transition: color var(--transition); font-size: 11px; }
.topbar-link:hover { color: var(--primary); }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }
/* ─── HEADER — MOBILE FIRST ──────────────────────────────────────────
   Base = téléphone : 2 rangées (hamburger+logo+icônes / barre de recherche)
   ≥ 768px : une seule rangée desktop
   ──────────────────────────────────────────────────────────────────── */
.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
    box-sizing: border-box;
}
/* Mobile: flex-wrap → 2 rangées */
.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 0 0;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}
/* Rangée 1 : Hamburger | Logo | Actions */
.mobile-menu-btn { order: 1; flex-shrink: 0; margin-right: 8px; }
.site-logo { order: 2; flex: 1 1 auto; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.site-logo img { height: 30px; width: auto; max-width: 110px; }
.logo-text { font-size: 19px; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-actions { order: 3; flex-shrink: 0; display: flex; align-items: center; gap: 2px; }
/* Rangée 2 : Barre de recherche pleine largeur */
.header-search {
    order: 4;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 5px 0 7px;
    box-sizing: border-box;
    position: relative;
}
.search-wrap {
    display: flex;
    align-items: center;
    height: 40px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow var(--transition);
}
.search-wrap:focus-within { box-shadow: 0 0 0 3px rgba(255,107,0,0.15); }
/* Catégorie : masquée sur mobile */
.search-cat-select { display: none; }
.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 14px;
    background: transparent;
    color: var(--text);
    height: 100%;
    min-width: 0;
    width: 0; /* empêche l'input d'élargir le conteneur flex */
}
.search-input::placeholder { color: var(--text-muted); }
.search-submit {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0 16px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.search-submit:hover { background: var(--primary-dark); }
.search-submit span { display: none; } /* mobile : icône seule */
.search-submit svg { width: 18px; height: 18px; }
/* Tendances : masquées sur mobile */
.search-trends { display: none; align-items: center; gap: 5px; margin-top: 4px; flex-wrap: nowrap; overflow: hidden; font-size: 11px; opacity: 0.9; }
.search-trends-label { color: var(--text-muted); font-size: 11px; font-weight: 600; }
.search-trend-tag {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(255,107,0,0.07);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
}
.search-trend-tag:hover { background: var(--primary); color: #fff; }
.search-trend-tag + .search-trend-tag { margin-left: 4px; }
/* Dropdown résultats */
.search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    z-index: 9999;
    display: none;
    overflow: hidden;
}
.search-dropdown.open { display: block; }
.search-dropdown-title { padding: 10px 16px 6px; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background var(--transition);
    border-top: 1px solid var(--border-light);
}
.search-result-item:hover { background: var(--bg); }
.search-result-thumb { width: 44px; height: 44px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg); flex-shrink: 0; }
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-name mark { background: rgba(255,107,0,0.12); color: var(--primary); border-radius: 2px; padding: 0 1px; }
.search-result-price { font-size: 13px; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.search-dropdown-footer { padding: 10px 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); text-align: center; cursor: pointer; }
.search-dropdown-footer:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }

/* ── Desktop ≥ 768px : retour une rangée ── */
@media (min-width: 768px) {
    .site-header { height: var(--header-h); }
    .header-inner { flex-wrap: nowrap; padding: 0; gap: 20px; height: 100%; }
    .mobile-menu-btn { display: none !important; }
    .site-logo { order: 0; flex: 0 0 auto; overflow: visible; }
    .site-logo img { height: 44px; max-width: none; }
    .logo-text { font-size: 22px; white-space: normal; overflow: visible; text-overflow: clip; }
    .header-search { order: 0; flex: 1; max-width: 720px; width: auto; padding: 0; }
    .search-wrap { height: 50px; border-width: 2.5px; }
    .search-cat-select {
        display: block;
        background: var(--bg);
        border: none;
        border-right: 1.5px solid var(--border);
        height: 100%;
        padding: 0 14px 0 28px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        outline: none;
        min-width: 130px;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        padding-right: 28px;
        padding-left: 14px;
    }
    .search-input { padding: 0 16px; width: auto; }
    .search-submit { padding: 0 22px; }
    .search-submit span { display: inline; }
    .search-trends { display: flex; }
    .header-actions { order: 0; gap: 4px; }
}
.hdr-btn {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2px;
padding: 6px 10px;
color: var(--text);
border-radius: var(--radius-sm);
transition: all var(--transition);
cursor: pointer;
border: none;
background: none;
text-decoration: none;
position: relative;
min-width: 52px;
}
.hdr-btn:hover { color: var(--primary); background: var(--primary-bg); }
.hdr-btn .icon { font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.hdr-btn .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: inherit; }
.cart-badge, .wishlist-badge {
position: absolute;
top: 3px;
right: 3px;
background: var(--danger);
color: #fff;
font-size: 10px;
font-weight: 800;
min-width: 18px;
height: 18px;
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
line-height: 1;
border: 2px solid #fff;
}
.wishlist-badge { background: var(--primary); }
.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
border-radius: var(--radius-sm);
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
display: flex;
align-items: center;
gap: 5px;
height: 100%;
padding: 0 16px;
color: rgba(255,255,255,0.92);
font-size: 13px;
font-weight: 600;
white-space: nowrap;
cursor: pointer;
transition: all var(--transition);
border-bottom: 3px solid transparent;
position: relative;
text-decoration: none;
}
.nav-link:hover, .nav-link.active {
color: #fff;
background: rgba(0,0,0,0.12);
border-bottom-color: #fff;
}
.nav-link-arrow { font-size: 9px; opacity: 0.7; transition: transform var(--transition); }
.nav-link:hover .nav-link-arrow { transform: rotate(180deg); }
.mega-col h4 {
font-size: 12px;
font-weight: 800;
color: var(--secondary);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 10px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
}
.mega-col a {
display: flex;
align-items: center;
gap: 6px;
padding: 5px 0;
font-size: 13px;
color: var(--text-light);
transition: color var(--transition);
text-decoration: none;
}
.mega-col a:hover { color: var(--primary); }
.mega-col a::before { content: '›'; color: var(--border); }
.mega-col a:hover::before { color: var(--primary); }
.badge {
display: inline-flex;
align-items: center;
padding: 2px 7px;
border-radius: var(--radius-full);
font-size: 10px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.03em;
line-height: 1.5;
}
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-hot { background: var(--warning); color: #fff; }
.badge-top { background: var(--accent); color: #111; }
.badge-promo { background: var(--primary); color: #fff; }
.badge-best { background: var(--secondary); color: #fff; }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 22px;
border-radius: var(--radius-md);
font-size: 14px;
font-weight: 700;
border: 2px solid transparent;
cursor: pointer;
transition: all var(--transition);
min-height: 44px;
white-space: nowrap;
text-decoration: none;
line-height: 1.2;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.btn-secondary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: #2d2d4e; color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--bg); }
.btn-lg { padding: 15px 30px; font-size: 16px; min-height: 52px; }
.btn-sm { padding: 8px 16px; font-size: 12px; min-height: 36px; }
.btn-full { width: 100%; }
.product-card {
background: var(--card-bg);
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-card);
transition: transform var(--transition), box-shadow var(--transition);
position: relative;
display: flex;
flex-direction: column;
border: 1px solid var(--border-light);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.product-card-img {
position: relative;
aspect-ratio: 1;
overflow: hidden;
background: #f9f9f9;
display: block;
flex-shrink: 0;
}
.product-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.card-badges {
position: absolute;
top: 8px;
left: 8px;
display: flex;
flex-direction: column;
gap: 4px;
z-index: 2;
}
.card-actions {
position: absolute;
top: 8px;
right: 8px;
display: flex;
flex-direction: column;
gap: 4px;
z-index: 2;
opacity: 0;
transform: translateX(8px);
transition: all var(--transition);
}
.product-card:hover .card-actions { opacity: 1; transform: translateX(0); }
.card-action-btn {
width: 34px;
height: 34px;
border-radius: var(--radius-full);
background: #fff;
border: 1px solid var(--border);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all var(--transition);
box-shadow: var(--shadow-xs);
color: var(--text);
}
.card-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.1); }
.card-action-btn.active { color: var(--danger); }
.card-quick-add {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: #fff;
text-align: center;
padding: 10px;
font-size: 13px;
font-weight: 700;
cursor: pointer;
transform: translateY(100%);
transition: transform var(--transition);
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
text-decoration: none;
}
.product-card:hover .card-quick-add { transform: translateY(0); }
.card-quick-add:hover { background: var(--primary-dark); }
.product-card-body {
padding: 10px 12px 14px;
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
text-decoration: none;
color: inherit;
display: block;
}
.card-brand { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.card-title {
font-size: 13px;
font-weight: 500;
color: var(--text);
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin: 2px 0;
}
.card-rating { display: flex; align-items: center; gap: 4px; margin: 2px 0; }
.card-stars { color: var(--accent); font-size: 11px; letter-spacing: -0.5px; line-height: 1; }
.card-rating-count { font-size: 11px; color: var(--text-muted); }
.card-sold-count { font-size: 11px; color: var(--text-muted); }
.card-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: 4px 0 2px; }
.card-price-current { font-size: 16px; font-weight: 800; color: var(--text-price); line-height: 1; }
.card-price-old { font-size: 12px; color: var(--text-price-old); text-decoration: line-through; }
.card-price-pct { font-size: 10px; font-weight: 800; color: var(--danger); background: rgba(244,67,54,0.08); padding: 1px 5px; border-radius: var(--radius-xs); }
.card-stock-bar { height: 3px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; margin-top: 4px; }
.card-stock-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--danger)); border-radius: var(--radius-full); }
.products-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 14px;
}
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid-2 { grid-template-columns: repeat(2, 1fr); }
.products-scroll-row {
display: flex;
gap: 14px;
overflow-x: auto;
scrollbar-width: none;
padding-bottom: 4px;
-webkit-overflow-scrolling: touch;
}
.products-scroll-row::-webkit-scrollbar { display: none; }
.products-scroll-row .product-card { min-width: 185px; flex-shrink: 0; }
.hp-section {
background: #fff;
border-radius: var(--radius-lg);
padding: 20px 20px 24px;
margin-bottom: 12px;
}
.section-hdr {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
gap: 12px;
}
.section-title {
font-size: 18px;
font-weight: 800;
color: var(--secondary);
display: flex;
align-items: center;
gap: 8px;
line-height: 1.2;
}
.section-title-accent {
font-size: 18px;
font-weight: 800;
background: linear-gradient(90deg, var(--primary), #FF4081);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.see-all {
display: flex;
align-items: center;
gap: 3px;
font-size: 13px;
color: var(--primary);
font-weight: 700;
white-space: nowrap;
transition: opacity var(--transition);
text-decoration: none;
}
.see-all:hover { opacity: 0.75; }
.see-all::after { content: '›'; font-size: 16px; }
/* ─── HERO — MOBILE FIRST ─────────────────────────────────────────
   Base = petit téléphone.  On agrandit avec min-width (pas max-width).
   Aucun conflit aspect-ratio / min-height sur mobile.
   ────────────────────────────────────────────────────────────────── */
.hero-section  { background: var(--bg); padding: 6px 0; overflow: hidden; }
.hero-grid     { display: grid; grid-template-columns: 1fr; gap: 0; }
.hero-sidebar  { display: none; flex-direction: column; gap: 12px; }
.hero-slider   { position: relative; border-radius: var(--radius-md); overflow: hidden; width: 100%; height: 220px; background: var(--secondary); }
.hero-slide    { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity 0.6s ease; display: flex; align-items: center; background-size: cover; background-position: center center; background-repeat: no-repeat; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img    { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content  { position: relative; z-index: 2; padding: 16px; width: 100%; box-sizing: border-box; }
.hero-badge    { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); display: block; margin-bottom: 6px; }
.hero-title    { font-size: 17px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.hero-sub      { font-size: 12px; color: rgba(255,255,255,0.88); margin-bottom: 14px; }
.hero-dots     { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 3; }
.hero-dot      { width: 6px; height: 6px; border-radius: var(--radius-full); background: rgba(255,255,255,0.4); cursor: pointer; border: none; transition: all var(--transition); }
.hero-dot.active { background: #fff; width: 18px; }
.hero-arr      { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); color: #fff; border: none; width: 28px; height: 28px; border-radius: var(--radius-full); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.hero-arr:hover  { background: rgba(0,0,0,0.5); }
.hero-arr-prev   { left: 8px; }
.hero-arr-next   { right: 8px; }
.hero-mini       { border-radius: var(--radius-lg); overflow: hidden; flex: 1; position: relative; display: flex; align-items: flex-end; text-decoration: none; min-height: 100px; }
.hero-mini img   { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-mini-text  { position: relative; z-index: 1; padding: 14px 16px; color: #fff; }
.hero-mini-text strong { display: block; font-size: 16px; font-weight: 800; line-height: 1.2; }
.hero-mini-text span   { font-size: 12px; opacity: 0.85; }
/* ── 390 px + (iPhone 14/15) ── */
@media (min-width: 390px) {
    .hero-slider { height: 248px; }
    .hero-title  { font-size: 18px; }
}
/* ── 480 px + ── */
@media (min-width: 480px) {
    .hero-slider   { height: 270px; border-radius: var(--radius-lg); }
    .hero-content  { padding: 18px 22px; }
    .hero-title    { font-size: 19px; }
    .hero-sub      { font-size: 13px; margin-bottom: 16px; }
    .hero-badge    { font-size: 11px; }
    .hero-dots     { bottom: 12px; }
    .hero-arr      { width: 30px; height: 30px; }
    .hero-arr-prev { left: 10px; }
    .hero-arr-next { right: 10px; }
}
/* ── 768 px + (tablette) ── */
@media (min-width: 768px) {
    .hero-section  { padding: 10px 0; }
    .hero-slider   { height: 360px; }
    .hero-content  { padding: 28px 36px; width: auto; max-width: 65%; }
    .hero-title    { font-size: clamp(20px, 2.6vw, 32px); }
    .hero-sub      { font-size: 14px; margin-bottom: 20px; }
    .hero-badge    { font-size: 11px; margin-bottom: 8px; }
    .hero-dots     { bottom: 14px; }
    .hero-arr      { width: 36px; height: 36px; font-size: 18px; }
    .hero-arr-prev { left: 12px; }
    .hero-arr-next { right: 12px; }
    .hero-dot      { width: 7px; height: 7px; }
    .hero-dot.active { width: 22px; }
}
/* ── 1100 px + (desktop) : grille 2 colonnes + sidebar ── */
@media (min-width: 1100px) {
    .hero-section  { padding: 12px 0; }
    .hero-grid     { grid-template-columns: 1fr 300px; gap: 12px; }
    .hero-sidebar  { display: flex; }
    .hero-slider   { height: auto; aspect-ratio: 16/7; }
    .hero-content  { padding: 32px 40px; max-width: 55%; width: auto; }
    .hero-title    { font-size: clamp(24px, 2.8vw, 38px); }
}
.flash-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.flash-badge { background: var(--danger); color: #fff; padding: 6px 18px; border-radius: var(--radius-full); font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-block { background: var(--secondary); color: #fff; padding: 5px 10px; border-radius: var(--radius-sm); font-size: 18px; font-weight: 900; min-width: 40px; text-align: center; font-variant-numeric: tabular-nums; }
.cd-sep { font-size: 18px; font-weight: 900; color: var(--secondary); }
.promo-banners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.promo-banner {
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 16/8;
position: relative;
display: flex;
align-items: flex-end;
text-decoration: none;
background: linear-gradient(135deg, var(--secondary), #16213e);
}
.promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.65; transition: transform 0.4s ease; }
.promo-banner:hover img { transform: scale(1.05); }
.promo-banner-txt { position: relative; z-index: 1; padding: 16px; color: #fff; }
.promo-banner-txt .tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); display: block; margin-bottom: 4px; }
.promo-banner-txt strong { display: block; font-size: clamp(13px, 1.5vw, 20px); font-weight: 900; line-height: 1.2; }
.promo-banner-txt .cta { font-size: 12px; opacity: 0.85; margin-top: 4px; display: block; }
.cats-scroll { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-pill { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 76px; flex-shrink: 0; cursor: pointer; text-decoration: none; color: var(--text); transition: color var(--transition); }
.cat-pill:hover { color: var(--primary); }
.cat-pill:hover .cat-icon { border-color: var(--primary); background: var(--primary-bg); }
.cat-icon { width: 60px; height: 60px; border-radius: var(--radius-lg); border: 1.5px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 26px; overflow: hidden; transition: all var(--transition); }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-label { font-size: 11px; font-weight: 600; text-align: center; line-height: 1.3; max-width: 72px; }
.featured-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: #fff; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px; }
.featured-side { background: linear-gradient(150deg, var(--primary) 0%, #E53935 100%); padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.featured-side h2 { font-size: 24px; font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.featured-side p { font-size: 13px; opacity: 0.9; margin-bottom: 20px; }
.featured-body { padding: 20px; }
.payment-strip { background: #fff; border-radius: var(--radius-lg); padding: 14px 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-strip span { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-right: 4px; }
.pay-badge { padding: 4px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 4px; }
.shop-layout {
display: grid;
grid-template-columns: 240px 1fr;
gap: 16px;
padding: 16px 0 24px;
align-items: start;
}
.shop-sidebar {
position: sticky;
top: calc(var(--header-h) + var(--nav-h) + 12px);
}
.sidebar-block {
background: #fff;
border-radius: var(--radius-lg);
padding: 16px;
margin-bottom: 12px;
border: 1px solid var(--border-light);
}
.sidebar-block-title {
font-size: 13px;
font-weight: 800;
color: var(--secondary);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
}
.sidebar-cat-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 7px 0;
font-size: 13px;
color: var(--text-light);
text-decoration: none;
border-bottom: 1px solid var(--border-light);
transition: color var(--transition);
}
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover, .sidebar-cat-link.active { color: var(--primary); }
.sidebar-cat-link.active { font-weight: 700; }
.sidebar-cat-count { font-size: 11px; color: var(--text-muted); background: var(--bg); padding: 1px 6px; border-radius: var(--radius-full); }
.shop-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 12px 16px;
background: #fff;
border-radius: var(--radius-lg);
margin-bottom: 12px;
border: 1px solid var(--border-light);
flex-wrap: wrap;
}
.shop-results-count { font-size: 13px; color: var(--text-muted); }
.shop-results-count strong { color: var(--text); }
.shop-toolbar-right { display: flex; align-items: center; gap: 8px; }
.shop-view-btns { display: flex; gap: 4px; }
.shop-view-btn {
width: 32px;
height: 32px;
border: 1.5px solid var(--border);
border-radius: var(--radius-sm);
background: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all var(--transition);
color: var(--text-muted);
}
.shop-view-btn.active, .shop-view-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.shop-sort-select {
padding: 7px 12px;
border: 1.5px solid var(--border);
border-radius: var(--radius-sm);
font-size: 13px;
outline: none;
cursor: pointer;
background: #fff;
color: var(--text);
transition: border-color var(--transition);
}
.shop-sort-select:focus { border-color: var(--primary); }
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.filter-tag {
display: flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
background: var(--primary-bg);
border: 1px solid rgba(255,107,0,0.2);
border-radius: var(--radius-full);
font-size: 12px;
font-weight: 600;
color: var(--primary);
cursor: pointer;
}
.filter-tag .remove { font-size: 14px; line-height: 1; }
.single-product-page { padding: 16px 0 32px; }
.product-layout {
display: grid;
grid-template-columns: 500px 1fr 300px;
gap: 20px;
align-items: start;
}
.product-gallery-col { position: sticky; top: calc(var(--header-h) + var(--nav-h) + 12px); }
.gallery-main {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
background: #f8f8f8;
aspect-ratio: 1;
cursor: zoom-in;
margin-bottom: 10px;
border: 1px solid var(--border-light);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 5;
background: rgba(255,255,255,0.9);
border: 1px solid var(--border);
color: var(--text);
width: 32px;
height: 32px;
border-radius: var(--radius-full);
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-sm);
transition: all var(--transition);
}
.gallery-nav-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-thumbs {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 6px;
}
.gallery-thumb {
aspect-ratio: 1;
border-radius: var(--radius-sm);
overflow: hidden;
border: 2px solid var(--border);
cursor: pointer;
transition: border-color var(--transition);
background: #f8f8f8;
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-col { display: flex; flex-direction: column; gap: 14px; }
.product-badges-row { display: flex; gap: 6px; flex-wrap: wrap; }
.product-title { font-size: 20px; font-weight: 700; color: var(--secondary); line-height: 1.3; }
.product-meta-row {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
padding: 10px 0;
border-top: 1px solid var(--border-light);
border-bottom: 1px solid var(--border-light);
}
.product-rating-stars { display: flex; align-items: center; gap: 6px; }
.product-rating-stars .stars { color: var(--accent); font-size: 16px; }
.product-rating-stars .val { font-size: 15px; font-weight: 800; color: var(--text); }
.product-rating-stars .count { font-size: 13px; color: var(--primary); font-weight: 600; text-decoration: underline; cursor: pointer; }
.product-sold { font-size: 13px; color: var(--text-muted); }
.product-meta-divider { width: 1px; height: 16px; background: var(--border); }
.product-price-box {
background: linear-gradient(to right, #fff9f5, #fff);
border-radius: var(--radius-md);
padding: 14px 16px;
border: 1px solid rgba(255,107,0,0.1);
}
.product-price-main { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.product-price-current { font-size: 32px; font-weight: 900; color: var(--text-price); line-height: 1; }
.product-price-old { font-size: 18px; color: var(--text-price-old); text-decoration: line-through; }
.product-price-pct { background: var(--danger); color: #fff; font-size: 14px; font-weight: 800; padding: 3px 10px; border-radius: var(--radius-full); }
.product-installment { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.product-installment strong { color: var(--primary); }
.product-urgency {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
background: rgba(244,67,54,0.06);
border: 1px solid rgba(244,67,54,0.15);
border-radius: var(--radius-md);
font-size: 13px;
color: var(--danger);
font-weight: 600;
}
.urgency-icon { font-size: 18px; }
.product-social-proof {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text-light);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.variations-section { display: flex; flex-direction: column; gap: 12px; }
.variation-group-label {
font-size: 14px;
font-weight: 700;
color: var(--text);
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
}
.variation-selected-val { color: var(--primary); font-weight: 400; }
.variation-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.var-btn {
padding: 7px 16px;
border: 2px solid var(--border);
border-radius: var(--radius-sm);
font-size: 13px;
font-weight: 600;
background: #fff;
cursor: pointer;
transition: all var(--transition);
display: flex;
align-items: center;
gap: 5px;
min-height: 38px;
color: var(--text);
}
.var-btn:hover { border-color: var(--primary); color: var(--primary); }
.var-btn.active { border-color: var(--primary); background: var(--primary-bg); color: var(--primary); font-weight: 700; }
.var-btn.out { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.var-color-btn {
width: 38px;
height: 38px;
border-radius: var(--radius-sm);
padding: 0;
border: 3px solid transparent;
overflow: hidden;
position: relative;
}
.var-color-btn .color-swatch { position: absolute; inset: 0; }
.var-color-btn.active { border-color: var(--primary); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary); }
.var-img-btn {
width: 52px;
height: 52px;
border-radius: var(--radius-sm);
padding: 2px;
position: relative;
overflow: hidden;
}
.var-img-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.qty-wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.qty-label { font-size: 14px; font-weight: 700; color: var(--text); }
.qty-ctrl { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; height: 44px; }
.qty-btn { width: 44px; height: 100%; background: var(--bg); border: none; cursor: pointer; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background var(--transition); color: var(--text); }
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-input { width: 60px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); outline: none; font-size: 16px; font-weight: 700; height: 100%; }
.qty-stock { font-size: 12px; color: var(--text-muted); }
.product-cta-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-add-cart {
background: #fff;
color: var(--primary);
border: 2px solid var(--primary);
border-radius: var(--radius-md);
padding: 15px 20px;
font-size: 15px;
font-weight: 800;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all var(--transition);
min-height: 52px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.btn-add-cart:hover { background: var(--primary-bg); transform: translateY(-1px); }
.btn-buy-now {
background: var(--primary);
color: #fff;
border: 2px solid var(--primary);
border-radius: var(--radius-md);
padding: 15px 20px;
font-size: 15px;
font-weight: 800;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all var(--transition);
min-height: 52px;
text-transform: uppercase;
letter-spacing: 0.04em;
text-decoration: none;
}
.btn-buy-now:hover { background: var(--primary-dark); box-shadow: var(--shadow-primary); transform: translateY(-1px); color: #fff; }
.product-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.product-trust-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 10px 8px;
border: 1px solid var(--border);
border-radius: var(--radius-md);
text-align: center;
}
.product-trust-item .icon { font-size: 22px; color: var(--primary); }
.product-trust-item .txt { font-size: 10px; font-weight: 600; color: var(--text-light); line-height: 1.3; }
.product-pay-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.product-pay-badge { padding: 4px 10px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 800; color: #fff; }
.product-delivery-col {
position: sticky;
top: calc(var(--header-h) + var(--nav-h) + 12px);
background: #fff;
border-radius: var(--radius-lg);
border: 1px solid var(--border);
overflow: hidden;
}
.delivery-col-head { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.delivery-col-head h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--secondary); }
.delivery-row-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border-light); }
.delivery-row-item:last-child { border-bottom: none; }
.delivery-row-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.delivery-row-text { }
.delivery-row-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.delivery-row-text span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.delivery-row-text .highlight { color: var(--primary); font-weight: 700; }
.delivery-row-text .free { color: var(--success); font-weight: 700; }
.product-toc-bar {
background: #fff;
border-bottom: 1px solid var(--border);
position: sticky;
top: calc(var(--header-h) + var(--nav-h));
z-index: 50;
display: flex;
overflow-x: auto;
scrollbar-width: none;
}
.product-toc-bar::-webkit-scrollbar { display: none; }
.product-toc-link {
padding: 12px 18px;
font-size: 13px;
font-weight: 600;
color: var(--text-light);
white-space: nowrap;
border-bottom: 2.5px solid transparent;
transition: all var(--transition);
cursor: pointer;
text-decoration: none;
}
.product-toc-link:hover, .product-toc-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.product-section { background: #fff; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 12px; }
.product-section-title { font-size: 17px; font-weight: 800; color: var(--secondary); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-light); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 10px 12px; font-size: 14px; vertical-align: top; }
.specs-table td:first-child { width: 38%; font-weight: 700; color: var(--text); background: var(--bg); border-radius: var(--radius-xs); }
.specs-table td:last-child { color: var(--text-light); }
.reviews-head { display: grid; grid-template-columns: 160px 1fr; gap: 24px; margin-bottom: 20px; }
.reviews-score-big { text-align: center; }
.reviews-score-big .score-num { font-size: 56px; font-weight: 900; color: var(--secondary); line-height: 1; }
.reviews-score-big .stars { font-size: 20px; color: var(--accent); margin: 4px 0; }
.reviews-score-big .total { font-size: 13px; color: var(--text-muted); }
.reviews-bars { display: flex; flex-direction: column; gap: 6px; }
.review-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.review-bar-lbl { min-width: 40px; color: var(--text-light); text-align: right; }
.review-bar-track { flex: 1; height: 8px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--accent); border-radius: var(--radius-full); }
.review-bar-pct { min-width: 30px; color: var(--text-muted); font-size: 11px; }
.review-card { padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.review-card:last-child { border-bottom: none; }
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-verified { font-size: 11px; color: var(--success); font-weight: 600; margin-left: auto; }
.review-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.review-imgs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.review-img img { width: 100%; height: 100%; object-fit: cover; }
.sticky-cta {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
padding: 10px 16px;
box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
z-index: 995;
align-items: center;
gap: 10px;
padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.cart-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 20px; padding: 20px 0 32px; }
.cart-table { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); }
.cart-table-head { display: grid; grid-template-columns: 80px 1fr 120px 120px 80px; gap: 12px; padding: 12px 16px; background: var(--bg); font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.cart-item { display: grid; grid-template-columns: 80px 1fr 120px 120px 80px; gap: 12px; padding: 16px; align-items: center; border-bottom: 1px solid var(--border-light); transition: background var(--transition); }
.cart-item:hover { background: #fafafa; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); }
.cart-item-remove { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--text-muted); transition: color var(--transition); padding: 4px; }
.cart-item-remove:hover { color: var(--danger); }
.cart-summary { background: #fff; border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border-light); position: sticky; top: calc(var(--header-h) + var(--nav-h) + 12px); }
.cart-summary-title { font-size: 16px; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; }
.summary-row.discount { color: var(--success); }
.summary-row.total { font-size: 18px; font-weight: 900; border-top: 2px solid var(--secondary); margin-top: 8px; padding-top: 12px; }
.coupon-form { display: flex; gap: 8px; margin: 12px 0; }
.coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; outline: none; }
.coupon-input:focus { border-color: var(--primary); }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 20px; padding: 20px 0 32px; }
.checkout-form-block { background: #fff; border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border-light); margin-bottom: 12px; }
.checkout-block-title { font-size: 15px; font-weight: 800; color: var(--secondary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.form-label .req { color: var(--danger); }
.form-input, .form-select, .form-textarea {
width: 100%;
padding: 11px 14px;
border: 1.5px solid var(--border);
border-radius: var(--radius-sm);
font-size: 14px;
outline: none;
transition: border-color var(--transition), box-shadow var(--transition);
background: #fff;
color: var(--text);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,0,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-method-list { display: flex; flex-direction: column; gap: 8px; }
.payment-method-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px;
border: 2px solid var(--border);
border-radius: var(--radius-md);
cursor: pointer;
transition: all var(--transition);
}
.payment-method-item:hover { border-color: var(--primary); }
.payment-method-item.active { border-color: var(--primary); background: var(--primary-bg); }
.payment-method-item input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.payment-method-icon { font-size: 26px; }
.payment-method-info .name { font-weight: 700; font-size: 14px; }
.payment-method-info .desc { font-size: 12px; color: var(--text-muted); }
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.75); margin-top: 20px; }
.footer-main { padding: 40px 0 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2.2fr repeat(3, 1fr); gap: 32px; }
.footer-brand .logo-text { font-size: 26px; font-weight: 900; color: var(--primary); margin-bottom: 12px; display: block; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; opacity: 0.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social-btn {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255,255,255,0.08);
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.7);
font-size: 14px;
font-weight: 800;
transition: all var(--transition);
text-decoration: none;
}
.footer-social-btn:hover { background: var(--primary); color: #fff; }
.footer-newsletter { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 16px; }
.footer-newsletter p { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input { flex: 1; padding: 9px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); color: #fff; font-size: 13px; outline: none; }
.newsletter-row input::placeholder { color: rgba(255,255,255,0.35); }
.footer-col h4 { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); padding: 4px 0; transition: color var(--transition); text-decoration: none; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { padding: 14px 0; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }
.footer-pay-icons { display: flex; gap: 6px; }
.footer-pay-icon { height: 22px; background: rgba(255,255,255,0.1); border-radius: 4px; padding: 2px 8px; display: flex; align-items: center; color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 800; }
.footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 11px; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--primary); }
.mobile-bottom-nav {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
border-top: 1px solid var(--border);
z-index: 993;
padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav-row { display: flex; height: var(--mobile-nav-h); }
.mobile-nav-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
font-size: 10px;
font-weight: 700;
color: var(--text-muted);
text-decoration: none;
position: relative;
transition: color var(--transition);
border: none;
background: none;
cursor: pointer;
padding: 6px 4px;
}
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--primary); }
.mobile-nav-item .icon { font-size: 22px; }
.mobile-nav-cart { background: var(--primary); color: #fff !important; border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: 6px 4px 0; }
.mobile-nav-cart:hover { background: var(--primary-dark) !important; }
.fomo-notif {
position: fixed;
bottom: calc(var(--mobile-nav-h) + 12px);
left: 16px;
z-index: 992;
background: #fff;
border-radius: var(--radius-lg);
padding: 12px 14px;
box-shadow: var(--shadow-xl);
display: none;
align-items: center;
gap: 10px;
max-width: 280px;
font-size: 13px;
border-left: 3px solid var(--primary);
animation: slideInLeft 0.4s ease;
}
@keyframes slideInLeft { from{transform:translateX(-120%);opacity:0} to{transform:translateX(0);opacity:1} }
.toast-stack { position: fixed; bottom: 80px; right: 16px; z-index: 9998; display: flex; flex-direction: column; gap: 8px; }
.toast-item {
background: var(--secondary);
color: #fff;
padding: 10px 18px;
border-radius: var(--radius-md);
font-size: 13px;
font-weight: 600;
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
gap: 8px;
min-width: 260px;
animation: slideInRight 0.3s ease;
}
.toast-item.success { background: var(--success); }
.toast-item.error { background: var(--danger); }
@keyframes slideInRight { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
.mobile-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:997; }
.mobile-overlay.open { display:block; }
.mobile-drawer { position:fixed; top:0; left:-300px; width:280px; height:100%; background:#fff; z-index:998; transition:left 0.3s ease; display:flex; flex-direction:column; box-shadow:var(--shadow-xl); overflow-y:auto; }
.mobile-drawer.open { left:0; }
.mobile-drawer-head { display:flex; align-items:center; justify-content:space-between; padding:16px; background:var(--primary); color:#fff; }
.mobile-drawer-head .logo-text { color:#fff; }
.mobile-drawer-close { background:none; border:none; color:#fff; font-size:22px; cursor:pointer; }
.mobile-drawer-body { padding:12px 0; }
.mobile-drawer-body a { display:block; padding:12px 20px; font-size:14px; font-weight:600; color:var(--text); border-bottom:1px solid var(--border-light); text-decoration:none; }
.mobile-drawer-body a:hover { color:var(--primary); background:var(--primary-bg); }
.pagination { display:flex; gap:6px; justify-content:center; margin-top:24px; flex-wrap:wrap; }
.page-btn { width:38px; height:38px; border:1.5px solid var(--border); border-radius:var(--radius-sm); background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:var(--text); transition:all var(--transition); text-decoration:none; }
.page-btn:hover, .page-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }

/* ---- WooCommerce pagination ---- */
.woocommerce-pagination { display:flex; justify-content:center; margin-top:28px; }
.woocommerce-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.woocommerce-pagination ul.page-numbers li { display: flex; }
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
}
.woocommerce-pagination .page-numbers:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.woocommerce-pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.woocommerce-pagination .page-numbers.dots { border-color: transparent; background: transparent; cursor: default; color: var(--text-muted); }
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next { width: auto; padding: 0 14px; font-size: 12px; font-weight: 700; }

.breadcrumb { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-muted); padding:10px 0; flex-wrap:wrap; }
.breadcrumb a { color:var(--text-muted); text-decoration:none; transition:color var(--transition); }
.breadcrumb a:hover { color:var(--primary); }
.breadcrumb-sep { color:var(--border); }
.breadcrumb-current { color:var(--text); font-weight:600; }
.woocommerce-notices-wrapper .woocommerce-message { background:rgba(0,200,83,0.07); border-left:3px solid var(--success); border-radius:var(--radius-md); padding:12px 16px; font-size:14px; color:#1a5c2e; margin-bottom:12px; }
.woocommerce-notices-wrapper .woocommerce-error { background:rgba(244,67,54,0.07); border-left:3px solid var(--danger); border-radius:var(--radius-md); padding:12px 16px; font-size:14px; color:#b71c1c; margin-bottom:12px; }
.woocommerce-ordering { display:flex; align-items:center; gap:8px; }
.woocommerce-ordering select { padding:7px 12px; border:1.5px solid var(--border); border-radius:var(--radius-sm); font-size:13px; outline:none; background:#fff; cursor:pointer; }
.woocommerce-ordering select:focus { border-color:var(--primary); }
@media (max-width: 1100px) {
.product-layout { grid-template-columns: 420px 1fr; }
.product-delivery-col { display: none; }
/* hero-grid et hero-sidebar : gérés par le bloc mobile-first */
.products-grid { grid-template-columns: repeat(4, 1fr); }
.footer-grid { grid-template-columns: repeat(2, 1fr); }
.shop-layout { grid-template-columns: 200px 1fr; }
.cart-page-layout, .checkout-layout { grid-template-columns: 1fr; }
.promo-banners { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
.product-layout { grid-template-columns: 1fr; }
.product-gallery-col { position: static; }
.gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
.featured-wrap { grid-template-columns: 1fr; }
.products-grid { grid-template-columns: repeat(3, 1fr); }
.search-cat-select { display: none; }
}
@media (max-width: 768px) {
:root {
--topbar-h: 0px;
--nav-h: 42px;
}
.site-topbar { display: none; }
.site-nav { display: none; }
.mobile-menu-btn { display: flex; }
.mobile-bottom-nav { display: flex; flex-direction: column; }
body { padding-bottom: var(--mobile-nav-h); }
.hdr-btn .label { display: none; }
.hdr-btn:not(.cart-btn):not(.wishlist-btn) { display: none; }
.container { padding: 0 10px; }
.products-grid,
.products-grid-4,
.products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.products-scroll-row .product-card { min-width: 155px; }
.hp-section { padding: 14px 12px 18px; border-radius: var(--radius-md); }
/* hero : géré par le bloc mobile-first */
.promo-banners { grid-template-columns: 1fr; }
.shop-layout { grid-template-columns: 1fr; }
.shop-sidebar { display: none; }
.single-product-page { padding: 8px 0 20px; }
.product-layout { grid-template-columns: 1fr; gap: 12px; }
.product-gallery-col { position: static; }
.gallery-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
.gallery-main { border-radius: var(--radius-md); }
.product-title { font-size: 16px; }
.product-price-current { font-size: 26px; }
.product-cta-group { grid-template-columns: 1fr 1fr; }
.product-trust-grid { grid-template-columns: 1fr 1fr; }
.sticky-cta { display: flex; }
.cart-table-head { display: none; }
.cart-item { grid-template-columns: 72px 1fr; gap: 10px; }
.cart-item > :not(:first-child):not(:nth-child(2)):not(:last-child) { display: none; }
.cart-summary { position: static; }
.footer-grid { grid-template-columns: 1fr; }
.footer-main { padding: 24px 0 20px; }
.footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
.form-row { grid-template-columns: 1fr; }
.search-trends { display: none; }
.fomo-notif { bottom: calc(var(--mobile-nav-h) + 8px); max-width: calc(100vw - 32px); }
.toast-stack { right: 10px; left: 10px; bottom: calc(var(--mobile-nav-h) + 8px); }
.toast-item { min-width: unset; }
}
.skeleton { background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.45s ease, transform 0.45s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-12 { margin-bottom: 12px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
@media (max-width: 992px) {
}
@media (max-width: 900px) {
.shop-layout { grid-template-columns: 1fr !important; }
.shop-sidebar { display: none !important; }
}
@media (max-width: 768px) {
.products-grid,
.products-grid-4,
.products-grid-5,
.products-grid-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
/* hero : géré par le bloc mobile-first */
.hdr-btn:not(.cart-btn):not(.wishlist-btn):not(.account-btn) { display: none !important; }
.product-layout { grid-template-columns: 1fr !important; }
.product-delivery-col { display: block !important; position: static !important; }
.product-cta-group { grid-template-columns: 1fr 1fr !important; }
.sticky-cta { display: flex !important; padding-bottom: calc(var(--mobile-nav-h) + 10px) !important; }
.shop-layout { display: block !important; }
.promo-banners { grid-template-columns: 1fr !important; }
.footer-grid { grid-template-columns: 1fr !important; }
.checkout-grid { grid-template-columns: 1fr !important; }
.track-grid { grid-template-columns: 1fr !important; }
.cat-pill { min-width: 64px !important; }
.cat-icon { width: 52px !important; height: 52px !important; }
}
@media (max-width: 360px) {
.products-grid,
.products-grid-4,
.products-grid-5 { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
.product-cta-group { grid-template-columns: 1fr !important; }
.container { padding: 0 8px !important; }
}
@media (hover: none) {
.product-card .card-actions { opacity: 1 !important; transform: none !important; }
.product-card .card-quick-add { transform: none !important; }
.product-card:hover { transform: none !important; }
}
.products-scroll-row::-webkit-scrollbar { height: 4px; }
.products-scroll-row::-webkit-scrollbar-track { background: var(--border-light); border-radius: 2px; }
.products-scroll-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.product-card-img img { background: #f0f0f0; }
.gallery-thumb img { background: #f0f0f0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
outline: 2px solid var(--primary);
outline-offset: 2px;
}
/* hero min-height : supprimé, hauteur définie dans le bloc mobile-first */
.product-card-img img,
.gallery-thumb img,
.gallery-main img {
content-visibility: auto;
image-rendering: auto;
will-change: auto;
}
.product-card-img { background: linear-gradient(135deg, #f5f5f5, #ebebeb); }
.nav-inner { display:flex; align-items:center; height:100%; gap:0; }
.nav-links  { display:flex; align-items:center; overflow-x:auto; scrollbar-width:none; gap:0; flex:1; }
.nav-links::-webkit-scrollbar { display:none; }
.cat-drop-wrap { flex-shrink:0; height:100%; display:flex; align-items:stretch; }
.cat-drop-btn {
display: flex;
align-items: center;
gap: 7px;
height: 100%;
padding: 0 18px;
background: rgba(0,0,0,0.18);
border: none;
color: #fff;
font-size: 13px;
font-weight: 800;
cursor: pointer;
white-space: nowrap;
transition: background var(--transition);
font-family: var(--font);
letter-spacing: 0.02em;
border-right: 1px solid rgba(255,255,255,0.15);
}
.cat-drop-btn:hover,
.cat-drop-btn.active { background: rgba(0,0,0,0.28); }
.cat-arrow-icon {
transition: transform 0.25s ease;
flex-shrink: 0;
}
.cat-drop-btn.active .cat-arrow-icon { transform: rotate(180deg); }
.cat-drop-panel {
position: fixed;
top: 0;
left: 0;
width: 280px;
max-height: calc(100vh - 120px);
overflow-y: auto;
background: #fff;
box-shadow: 4px 0 24px rgba(0,0,0,0.14);
z-index: 9995;
display: none;
flex-direction: column;
border-top: 3px solid var(--primary);
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.cat-drop-panel::-webkit-scrollbar { width: 4px; }
.cat-drop-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.cat-drop-panel.open { display: flex; animation: catPanelIn 0.2s ease; }
@keyframes catPanelIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.cat-drop-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 9994;
background: rgba(0,0,0,0.3);
}
.cat-drop-overlay.open { display: block; }
.cdp-item { position: relative; }
.cdp-link {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
font-size: 14px;
font-weight: 500;
color: var(--text);
text-decoration: none;
border-bottom: 1px solid var(--border-light);
transition: all var(--transition);
position: relative;
}
.cdp-link:hover { background: var(--primary-bg); color: var(--primary); }
.cdp-icon { font-size: 20px; flex-shrink: 0; width: 26px; text-align: center; }
.cdp-name { flex: 1; }
.cdp-arrow { color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.cdp-item:hover .cdp-arrow { transform: translateX(3px); color: var(--primary); }
.cdp-sub {
display: none;
position: fixed;
left: 280px;
top: 0;
width: 420px;
background: #fff;
box-shadow: 4px 0 24px rgba(0,0,0,0.1);
border-left: 1px solid var(--border-light);
border-top: 3px solid var(--primary);
max-height: calc(100vh - 120px);
overflow-y: auto;
z-index: 9996;
padding: 0;
}
.cdp-item.has-sub:hover .cdp-sub { display: block; }
.cdp-sub-title {
padding: 14px 16px;
border-bottom: 1px solid var(--border);
background: var(--bg);
}
.cdp-sub-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
padding: 8px;
}
.cdp-sub-item {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
font-size: 13px;
color: var(--text-light);
text-decoration: none;
border-radius: var(--radius-sm);
transition: all var(--transition);
}
.cdp-sub-item:hover { background: var(--primary-bg); color: var(--primary); }
.cdp-sub-all {
grid-column: 1/-1;
color: var(--primary);
font-weight: 700;
justify-content: center;
border-top: 1px solid var(--border-light);
border-radius: 0 0 var(--radius-sm) var(--radius-sm);
margin-top: 4px;
}
@media (max-width: 768px) {
.cat-drop-panel { width: 100vw; left: 0; }
.cdp-sub { left: 0; width: 100vw; top: auto; position: relative; box-shadow: none; border: none; }
.cdp-item.has-sub:hover .cdp-sub { display: none; }
.cdp-item.has-sub.open .cdp-sub { display: block; }
.cat-drop-btn { padding: 0 12px; font-size: 12px; gap: 5px; }
}
.cat-dd { position: relative; height: 100%; display: flex; align-items: stretch; flex-shrink: 0; }
.cat-dd-btn {
display: flex; align-items: center; gap: 7px;
height: 100%; padding: 0 18px;
background: rgba(0,0,0,0.18); border: none;
color: #fff; font-size: 13px; font-weight: 800;
cursor: pointer; white-space: nowrap;
font-family: var(--font); letter-spacing: 0.02em;
border-right: 1px solid rgba(255,255,255,0.12);
transition: background var(--transition);
}
.cat-dd-btn:hover,
.cat-dd-btn.open { background: rgba(0,0,0,0.32); }
.cat-dd-arrow { transition: transform 0.2s ease; flex-shrink: 0; }
.cat-dd-btn.open .cat-dd-arrow { transform: rotate(180deg); }
.cat-panel {
position: fixed;
left: 0; top: 0;
width: 280px;
max-height: 70vh;
overflow-y: auto;
background: #fff;
box-shadow: 4px 8px 32px rgba(0,0,0,0.18);
border-top: 3px solid var(--primary);
z-index: 9000;
display: none;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.cat-panel.open { display: block; animation: catPanelIn 0.18s ease; }
@keyframes catPanelIn {
from { opacity:0; transform:translateY(-8px); }
to   { opacity:1; transform:translateY(0); }
}
.cat-panel-overlay {
display: none;
position: fixed; inset: 0;
z-index: 8999;
background: rgba(0,0,0,0.35);
}
.cat-panel-overlay.open { display: block; }
.cpanel-row { position: relative; border-bottom: 1px solid var(--border-light); }
.cpanel-link {
display: flex; align-items: center; gap: 12px;
padding: 13px 16px;
font-size: 14px; font-weight: 500; color: var(--text);
text-decoration: none;
transition: all var(--transition);
}
.cpanel-link:hover { background: var(--primary-bg); color: var(--primary); }
.cpanel-icon { font-size: 20px; flex-shrink: 0; width: 26px; text-align: center; }
.cpanel-name { flex: 1; }
.cpanel-arrow { color: var(--text-muted); flex-shrink: 0; }
.cpanel-sub {
display: none;
position: fixed;
left: 280px;
width: 380px;
background: #fff;
border-top: 3px solid var(--primary);
box-shadow: 4px 8px 32px rgba(0,0,0,0.12);
z-index: 9001;
max-height: 70vh;
overflow-y: auto;
}
.cpanel-row.has-sub:hover .cpanel-sub { display: block; }
.cpanel-row.has-sub:hover .cpanel-link { background: var(--primary-bg); color: var(--primary); }
.cpanel-row.has-sub:hover .cpanel-arrow { color: var(--primary); }
.cpanel-sub-head {
padding: 14px 16px;
background: var(--bg);
border-bottom: 1px solid var(--border);
}
.cpanel-sub-head a {
font-size: 15px; font-weight: 800;
color: var(--primary); text-decoration: none;
}
.cpanel-sub-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 8px; gap: 2px; }
.cpanel-sub-item {
display: flex; align-items: center; gap: 6px;
padding: 10px 12px; font-size: 13px;
color: var(--text-light); text-decoration: none;
border-radius: var(--radius-sm);
transition: all var(--transition);
}
.cpanel-sub-item:hover { background: var(--primary-bg); color: var(--primary); }
.cpanel-sub-all {
grid-column: 1/-1; color: var(--primary);
font-weight: 700; justify-content: center;
border-top: 1px solid var(--border-light); margin-top: 4px;
}
.cpanel-empty { padding: 20px; font-size: 13px; color: var(--text-muted); }
.nav-links {
display: flex; align-items: center;
overflow-x: auto; scrollbar-width: none; gap: 0; flex: 1;
}
.nav-links::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
.cat-panel { width: 100vw; }
.cpanel-sub { left: 0; width: 100vw; position: static; box-shadow: none; border: none; display: none !important; }
}
.nav-links-wrap {
display: flex;
align-items: center;
flex: 1;
overflow-x: auto;
scrollbar-width: none;
gap: 0;
}
.nav-links-wrap::-webkit-scrollbar { display: none; }
.nav-cat-wrap {
position: relative;
height: 100%;
display: flex;
align-items: stretch;
flex-shrink: 0;
z-index: 9999;
}
.nav-cat-btn {
display: flex;
align-items: center;
gap: 7px;
height: 100%;
padding: 0 18px;
background: rgba(0,0,0,0.2);
border: none;
border-right: 1px solid rgba(255,255,255,0.15);
color: #fff;
font-size: 13px;
font-weight: 800;
cursor: pointer;
white-space: nowrap;
font-family: var(--font);
transition: background var(--transition);
user-select: none;
}
.nav-cat-btn:hover,
.nav-cat-btn.is-open {
background: rgba(0,0,0,0.35);
}
.nav-cat-arrow {
transition: transform 0.2s ease;
flex-shrink: 0;
}
.nav-cat-btn.is-open .nav-cat-arrow {
transform: rotate(180deg);
}
.nav-cat-panel {
position: absolute;
top: 100%;
left: 0;
width: 260px;
background: #fff;
box-shadow: 0 8px 32px rgba(0,0,0,0.18);
border-top: 3px solid var(--primary);
border-radius: 0 0 var(--radius-md) var(--radius-md);
z-index: 9998;
max-height: 72vh;
overflow-y: auto;
overflow-x: visible;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
opacity: 0;
visibility: hidden;
transform: translateY(-6px);
transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
pointer-events: none;
}
.nav-cat-wrap:hover .nav-cat-panel {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: auto;
}
.nav-cat-panel.is-open {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: auto;
}
.ncp-row {
position: relative;
border-bottom: 1px solid var(--border-light);
}
.ncp-link {
display: flex;
align-items: center;
gap: 11px;
padding: 12px 16px;
font-size: 14px;
font-weight: 500;
color: var(--text);
text-decoration: none;
transition: all var(--transition);
white-space: nowrap;
}
.ncp-link:hover { background: var(--primary-bg); color: var(--primary); }
.ncp-icon { font-size: 19px; flex-shrink: 0; width: 24px; text-align: center; }
.ncp-name { flex: 1; }
.ncp-arrow { color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.ncp-row.has-sub:hover .ncp-link { background: var(--primary-bg); color: var(--primary); }
.ncp-row.has-sub:hover .ncp-arrow { transform: translateX(3px); color: var(--primary); }
.ncp-sub {
display: none;
position: absolute;
left: 100%;
top: 0;
width: 320px;
background: #fff;
border-top: 3px solid var(--primary);
box-shadow: 4px 8px 24px rgba(0,0,0,0.12);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
z-index: 9999;
max-height: 72vh;
overflow-y: auto;
}
.ncp-row.has-sub:hover .ncp-sub { display: block; }
.ncp-sub-head {
padding: 13px 16px;
background: var(--primary-bg);
border-bottom: 1px solid rgba(255,107,0,0.15);
}
.ncp-sub-head a {
font-size: 14px;
font-weight: 800;
color: var(--primary);
text-decoration: none;
}
.ncp-sub-list {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 8px;
gap: 2px;
}
.ncp-sub-item {
display: flex;
align-items: center;
gap: 6px;
padding: 9px 11px;
font-size: 13px;
color: var(--text-light);
text-decoration: none;
border-radius: var(--radius-sm);
transition: all var(--transition);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ncp-sub-item:hover { background: var(--primary-bg); color: var(--primary); }
.ncp-sub-all {
grid-column: 1/-1;
color: var(--primary);
font-weight: 700;
justify-content: center;
border-top: 1px solid var(--border-light);
margin-top: 6px;
padding-top: 10px;
}
@media (max-width: 768px) {
.nav-cat-wrap { display: none; }
.nav-links-wrap { display: none; }
}
.nav-link-flash { color: #FFD700 !important; font-weight: 800 !important; }
.nav-sep {
width: 1px;
height: 20px;
background: rgba(255,255,255,0.25);
margin: 0 4px;
flex-shrink: 0;
}
@media (max-width: 768px) {
.nav-sep { display: none; }
}
.site-nav {
background: var(--nav-bg);
height: var(--nav-h);
position: sticky;
top: var(--header-h);
z-index: 989;
box-shadow: 0 2px 6px rgba(255,107,0,0.25);
overflow: hidden;
}
.nav-inner-flat {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
width: 100%;
height: var(--nav-h);
overflow-x: auto;
overflow-y: hidden;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
padding: 0 16px;
box-sizing: border-box;
gap: 0;
}
.nav-inner-flat::-webkit-scrollbar { display: none; }
.nav-inner-flat > a,
.nav-inner-flat > .nav-link {
display: inline-flex !important;
align-items: center;
height: var(--nav-h);
padding: 0 14px;
color: rgba(255,255,255,0.92);
font-size: 13px;
font-weight: 600;
white-space: nowrap;
flex-shrink: 0;
text-decoration: none;
transition: background var(--transition), color var(--transition);
border-bottom: 3px solid transparent;
box-sizing: border-box;
}
.nav-inner-flat > a:hover,
.nav-inner-flat > a.active,
.nav-inner-flat > .nav-link:hover,
.nav-inner-flat > .nav-link.active {
color: #fff;
background: rgba(0,0,0,0.14);
border-bottom-color: #fff;
}
.nav-inner-flat > .nav-link-flash {
color: #FFD700 !important;
font-weight: 800 !important;
}
.nav-inner-flat > .nav-link-flash:hover {
color: #fff !important;
}
.nav-inner-flat > .nav-sep {
width: 1px;
height: 20px;
background: rgba(255,255,255,0.25);
flex-shrink: 0;
margin: 0 4px;
}
@media (max-width: 768px) {
.nav-inner-flat { padding: 0 8px; }
.nav-inner-flat > a,
.nav-inner-flat > .nav-link { padding: 0 10px; font-size: 12px; }
}
/* ================================================================
   RESET + LAYOUT PAGE COMPTE — CSS Grid sur éléments WC natifs
   ================================================================ */

/* Full width sur le wrapper WC */
.woocommerce-account #primary,
.woocommerce-account .site-main,
.woocommerce-account main,
.woocommerce-account .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce-account .woocommerce {
    max-width: 1160px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px 40px !important;
    box-sizing: border-box !important;
}

/* Bannière compte — mobile-first */
.lumio-acct-wrap {
    width: 100%;
    margin-bottom: 20px;
}
.lumio-acct-banner {
    position: relative;
    background: linear-gradient(135deg,#FF6B00 0%,#c0392b 100%);
    border-radius: 16px;
    padding: 28px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(255,107,0,.25);
    overflow: hidden;
}
.lumio-acct-av {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(255,255,255,.22); border: 3px solid rgba(255,255,255,.55);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; flex-shrink: 0; color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.lumio-acct-inf { width: 100%; min-width: 0; }
.lumio-acct-inf strong { display: block; font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.lumio-acct-inf span { font-size: 12px; opacity: .82; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; max-width: 240px; margin: 0 auto; }
.lumio-acct-out {
    position: absolute; top: 12px; right: 12px;
    color: rgba(255,255,255,.9); font-size: 11px; font-weight: 700;
    text-decoration: none; padding: 6px 12px;
    border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px;
    background: rgba(0,0,0,.18); white-space: nowrap; line-height: 1.3;
}
.lumio-acct-out:hover { background: rgba(255,255,255,.22); color: #fff; }
@media (min-width: 768px) {
    .lumio-acct-banner { flex-direction: row; align-items: center; text-align: left; padding: 22px 26px; gap: 16px; }
    .lumio-acct-av { width: 54px; height: 54px; font-size: 22px; margin-bottom: 0; }
    .lumio-acct-inf { flex: 1; }
    .lumio-acct-inf span { max-width: none; margin: 0; white-space: normal; }
    .lumio-acct-out { position: static; padding: 8px 16px; font-size: 12px; }
}
.lumio-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px;
}
.lumio-stat {
    background: #fff; border-radius: 14px; padding: 18px 12px; text-align: center;
    border: 1px solid #e5e7eb; box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.lumio-stat-n { font-size: 30px; font-weight: 900; color: #FF6B00; line-height: 1; }
.lumio-stat-l { font-size: 11px; color: #9ca3af; margin-top: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* Layout 2 colonnes via CSS Grid sur les éléments WC natifs */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none !important;
    width: 220px !important;
    flex-shrink: 0;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
    flex: 1;
    min-width: 0;
}
/* Wrapper flex pour nav + content */
.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce > .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce > .lumio-acct-extra {
    display: block;
}
/* Grid container sur le woocommerce div - après notre bannière */
.woocommerce-account .woocommerce {
    display: grid !important;
    grid-template-columns: 220px 1fr !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 18px !important;
    column-gap: 18px !important;
    align-items: start !important;
}
/* Bannière+stats span 2 colonnes */
.lumio-acct-wrap { grid-column: 1 / -1 !important; }

/* Nav dans colonne 1 */
.woocommerce-account .woocommerce-MyAccount-navigation { grid-column: 1 !important; grid-row: 2 !important; }

/* Extra liens sous la nav */
.lumio-acct-extra { grid-column: 1 !important; grid-row: 3 !important; }

/* Contenu dans colonne 2, span rows 2+3 */
.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 2 !important; grid-row: 2 / 4 !important;
    background: #fff !important; border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 6px rgba(0,0,0,.06) !important;
    padding: 28px 32px !important; box-sizing: border-box !important;
    min-height: 380px !important;
}

/* Style nav WC */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; box-shadow: 0 1px 6px rgba(0,0,0,.06); overflow: hidden; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li { border-bottom: 1px solid #f3f4f6; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child { border-bottom: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; font-size: 13.5px; font-weight: 500; color: #374151; text-decoration: none; transition: all .15s; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::after { content: "›"; color: #d1d5db; font-size: 17px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: #fff7f0; color: #FF6B00; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: #fff7f0; color: #FF6B00; font-weight: 700; border-left: 3px solid #FF6B00; padding-left: 13px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a { color: #ef4444; }

/* Extra liens */
.lumio-acct-extra { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; }
.lumio-acct-extra a { display: flex; align-items: center; gap: 9px; padding: 12px 15px; font-size: 13px; color: #6b7280; text-decoration: none; border-bottom: 1px solid #f3f4f6; transition: all .15s; font-weight: 500; }
.lumio-acct-extra a:last-child { border-bottom: none; }
.lumio-acct-extra a:hover { background: #fff7f0; color: #FF6B00; }

/* Contenu WC natif */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child { display: none; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info { background: #fff7f0; border-left: 4px solid #FF6B00; padding: 13px 16px; border-radius: 0 10px 10px 0; font-size: 14px; margin-bottom: 18px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before { content: none; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address { background: #f9fafb; border-radius: 12px; padding: 20px; border: 1px solid #e5e7eb; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #e5e7eb; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 { font-size: 14px; font-weight: 800; color: #1f2937; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a { background: #FF6B00; color: #fff; padding: 5px 12px; border-radius: 7px; font-size: 12px; font-weight: 700; text-decoration: none; }
.woocommerce-account .woocommerce-MyAccount-content address { font-style: normal; font-size: 14px; color: #374151; line-height: 1.8; }
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px;
    font-size: 14px; outline: none; box-sizing: border-box; background: #fafafa; font-family: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus { border-color: #FF6B00; background: #fff; }
.woocommerce-account .woocommerce-MyAccount-content fieldset { border: 1.5px solid #e5e7eb; border-radius: 12px; padding: 20px; margin: 20px 0; background: #fafafa; }
.woocommerce-account .woocommerce-MyAccount-content fieldset legend { font-size: 13px; font-weight: 800; color: #FF6B00; padding: 0 8px; background: #fafafa; }
.woocommerce-account .woocommerce-MyAccount-content .form-row { margin-bottom: 16px; }
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    width: 100%; padding: 14px; background: linear-gradient(135deg,#FF6B00,#e55a00);
    color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 800;
    cursor: pointer; box-shadow: 0 3px 12px rgba(255,107,0,.3); margin-top: 8px; display: block; font-family: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content .button { background: #FF6B00; color: #fff; padding: 8px 18px; border-radius: 9px; font-size: 13px; font-weight: 700; text-decoration: none; display: inline-block; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th { padding: 11px 13px; background: #f9fafb; font-weight: 700; color: #374151; border-bottom: 2px solid #e5e7eb; text-align: left; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td { padding: 12px 13px; border-bottom: 1px solid #f3f4f6; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td a { color: #FF6B00; font-weight: 600; text-decoration: none; }

/* ================================================================
   PANIER — Design complet mobile-first
   ================================================================ */

/* Wrap centré */
.lumio-cart-wrap { max-width: 1200px; margin: 0 auto; padding: 16px 16px 60px; box-sizing: border-box; }

/* ===== ÉTAPES ===== */
.lumio-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 22px; }
.lumio-step { display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 64px; }
.lumio-step-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: #e5e7eb; color: #9ca3af;
    font-size: 13px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.lumio-step span { font-size: 11px; color: #9ca3af; font-weight: 600; white-space: nowrap; }
.lumio-step--active .lumio-step-dot { background: #FF6B00; color: #fff; box-shadow: 0 2px 10px rgba(255,107,0,.38); }
.lumio-step--active span { color: #FF6B00; font-weight: 700; }
.lumio-step-line { flex: 1; height: 2px; background: #e5e7eb; max-width: 80px; margin-bottom: 18px; }

/* ===== BARRE LIVRAISON GRATUITE ===== */
.lumio-shipping-bar {
    background: linear-gradient(135deg,#f0fdf4,#ecfdf5);
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 14px;
}
.lumio-shipping-bar-top {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 600; color: #065f46;
    margin-bottom: 10px;
}
.lumio-shipping-bar-top strong { color: #047857; }
.lumio-shipping-pct { font-size: 12px; font-weight: 800; color: #059669; background: #d1fae5; padding: 2px 8px; border-radius: 20px; }
.lumio-shipping-track { height: 8px; background: #d1fae5; border-radius: 20px; overflow: hidden; }
.lumio-shipping-fill {
    height: 100%;
    background: linear-gradient(90deg,#34d399,#059669);
    border-radius: 20px;
    transition: width .6s ease;
    min-width: 6px;
}

/* ===== GRILLE 2 COLONNES ===== */
.lumio-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 20px; align-items: start; }
.lumio-cart-left { display: flex; flex-direction: column; gap: 12px; }
.lumio-cart-right { position: sticky; top: 100px; }

/* ===== CARD ARTICLES ===== */
.lumio-cart-card { background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.lumio-cart-head {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.lumio-cart-head-left { display: flex; align-items: center; gap: 8px; }
.lumio-cart-head-icon { font-size: 18px; }
.lumio-cart-head h1 { font-size: 17px; font-weight: 800; color: #1f2937; margin: 0; }
.lumio-cart-count { background: #FF6B00; color: #fff; font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 20px; }
.lumio-cart-back-link { font-size: 12px; color: #6b7280; font-weight: 600; text-decoration: none; white-space: nowrap; transition: color .15s; }
.lumio-cart-back-link:hover { color: #FF6B00; }

/* Items */
.lumio-cart-items { }
.lumio-cart-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f9fafb;
    transition: background .15s;
}
.lumio-cart-item:last-child { border-bottom: none; }
.lumio-cart-item:hover { background: #fffbf8; }
.lumio-cart-img-wrap { flex-shrink: 0; }
.lumio-cart-thumb { width: 78px; height: 78px; object-fit: cover; border-radius: 12px; border: 1px solid #f3f4f6; display: block; }
.lumio-cart-item-body { flex: 1; min-width: 0; }
.lumio-cart-name { font-size: 14px; font-weight: 700; color: #1f2937; text-decoration: none; display: block; line-height: 1.4; margin-bottom: 5px; }
.lumio-cart-name:hover { color: #FF6B00; }
.lumio-cart-metas { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.lumio-cart-meta-pill { background: #f3f4f6; color: #374151; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.lumio-cart-item-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.lumio-cart-price { font-size: 16px; font-weight: 900; color: #FF6B00; white-space: nowrap; padding-left: 8px; align-self: center; flex-shrink: 0; }

/* Quantité */
.lumio-qty-wrap { display: flex; align-items: center; border: 1.5px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.lumio-qty-btn {
    width: 34px; height: 34px; background: #f9fafb; border: none;
    cursor: pointer; font-size: 17px; font-weight: 700; color: #374151;
    transition: all .15s; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lumio-qty-btn:hover { background: #FF6B00; color: #fff; }
.lumio-qty-input {
    width: 40px; height: 34px; border: none;
    border-left: 1.5px solid #e5e7eb; border-right: 1.5px solid #e5e7eb;
    text-align: center; font-size: 14px; font-weight: 700;
    outline: none; background: #fff;
    -moz-appearance: textfield;
}
.lumio-qty-input::-webkit-inner-spin-button,
.lumio-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.lumio-remove {
    width: 30px; height: 30px;
    background: #f9fafb; border: 1.5px solid #e5e7eb;
    color: #9ca3af; cursor: pointer;
    border-radius: 8px; transition: all .15s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lumio-remove:hover { color: #ef4444; background: #fee2e2; border-color: #fca5a5; }

/* ===== CODE PROMO ===== */
.lumio-coupon-card { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; padding: 16px 20px; }
.lumio-coupon-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.lumio-coupon-head span { font-size: 14px; font-weight: 700; color: #1f2937; }
.lumio-coupon-form { display: flex; gap: 8px; }
.lumio-coupon-input {
    flex: 1; padding: 11px 14px; border: 1.5px solid #e5e7eb;
    border-radius: 10px; font-size: 14px; outline: none;
    background: #fafafa; font-family: inherit; transition: border-color .15s;
    min-width: 0;
}
.lumio-coupon-input:focus { border-color: #FF6B00; background: #fff; }
.lumio-coupon-btn {
    padding: 11px 18px; background: #1f2937; color: #fff;
    border: none; border-radius: 10px; font-size: 13px;
    font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit;
    transition: background .15s; flex-shrink: 0;
}
.lumio-coupon-btn:hover { background: #111827; }

/* ===== RÉCAPITULATIF ===== */
.lumio-summary-card {
    background: #fff; border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    overflow: hidden;
}
.lumio-summary-header {
    background: linear-gradient(135deg,#1f2937,#374151);
    padding: 16px 22px;
    font-size: 15px; font-weight: 800; color: #fff;
    display: flex; align-items: center; gap: 8px;
}
.lumio-summary-body { padding: 0 22px 16px; }
.lumio-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid #f3f4f6;
    font-size: 14px; color: #374151;
}
.lumio-summary-row:last-of-type { border-bottom: none; }
.lumio-summary-row--promo { color: #059669; }
.lumio-free-badge {
    background: #d1fae5; color: #065f46;
    font-size: 12px; font-weight: 700; padding: 3px 9px;
    border-radius: 20px;
}
.lumio-summary-sep { height: 1px; background: linear-gradient(90deg,transparent,#e5e7eb,transparent); margin: 4px 0; }
.lumio-summary-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px 0;
    font-size: 19px; font-weight: 900; color: #1f2937;
}
.lumio-summary-total span:last-child { color: #FF6B00; }

/* Boutons summary */
.lumio-checkout-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: calc(100% - 44px); margin: 16px 22px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg,#FF6B00,#e55a00);
    color: #fff; border: none; border-radius: 12px;
    font-size: 15px; font-weight: 900; text-align: center;
    text-decoration: none; cursor: pointer;
    box-shadow: 0 4px 18px rgba(255,107,0,.34);
    transition: all .18s; font-family: inherit;
    box-sizing: border-box;
}
.lumio-checkout-btn:hover { box-shadow: 0 6px 26px rgba(255,107,0,.44); transform: translateY(-1px); color: #fff; }
.lumio-continue-btn {
    display: block; text-align: center;
    width: calc(100% - 44px); margin: 10px 22px;
    padding: 11px 20px;
    color: #6b7280; font-size: 13px; font-weight: 600;
    text-decoration: none; border-radius: 10px;
    border: 1.5px solid #e5e7eb; transition: all .15s;
    box-sizing: border-box;
}
.lumio-continue-btn:hover { border-color: #FF6B00; color: #FF6B00; background: #fff7f0; }

/* Trust */
.lumio-trust-row {
    display: flex; justify-content: space-around; flex-wrap: wrap;
    gap: 6px; padding: 14px 22px;
    border-top: 1px solid #f3f4f6;
}
.lumio-trust-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #6b7280; font-weight: 600;
}

/* Modes de paiement */
.lumio-pay-methods {
    padding: 12px 22px 18px;
    border-top: 1px solid #f3f4f6;
    display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
}
.lumio-pay-label { font-size: 11px; color: #9ca3af; font-weight: 600; }
.lumio-pay-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.lumio-pay-badge { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; color: #fff; }
.lumio-pay-om   { background: #FF6B00; }
.lumio-pay-wave { background: #1A56DB; }
.lumio-pay-card { background: #1f2937; }

/* ===== PANIER VIDE ===== */
.lumio-cart-empty { max-width: 520px; margin: 32px auto; text-align: center; padding: 0 8px; }
.lumio-cart-empty-card {
    background: #fff; border-radius: 20px;
    padding: 44px 28px; border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.lumio-empty-icon {
    width: 84px; height: 84px;
    background: linear-gradient(135deg,#fff7f0,#ffe4cc);
    border-radius: 50%; font-size: 38px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.lumio-cart-empty-card h2 { font-size: 22px; font-weight: 900; color: #1f2937; margin: 0 0 10px; }
.lumio-cart-empty-card p { font-size: 15px; color: #9ca3af; margin: 0 0 24px; line-height: 1.7; }
.lumio-empty-actions { display: flex; flex-direction: column; gap: 10px; }
.lumio-empty-suggest { margin-top: 28px; text-align: left; }
.lumio-empty-suggest h3 { font-size: 15px; font-weight: 800; color: #1f2937; margin: 0 0 12px; }
.lumio-suggestions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.lumio-sugg-item { display: flex; gap: 10px; background: #fff; border-radius: 12px; padding: 10px; border: 1px solid #e5e7eb; text-decoration: none; align-items: center; transition: box-shadow .15s; }
.lumio-sugg-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); border-color: #fed7aa; }
.lumio-sugg-img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.lumio-sugg-name { font-size: 12px; font-weight: 700; color: #1f2937; line-height: 1.3; margin-bottom: 3px; }
.lumio-sugg-price { font-size: 13px; font-weight: 800; color: #FF6B00; }

/* ===== RESPONSIVE PANIER ===== */
@media (max-width: 860px) {
    .lumio-cart-grid { grid-template-columns: 1fr; }
    .lumio-cart-right { position: static; }
    .lumio-summary-card { box-shadow: none; border-color: #e5e7eb; }
}
@media (max-width: 560px) {
    .lumio-cart-wrap { padding: 12px 12px 48px; }
    .lumio-steps { gap: 0; }
    .lumio-step span { display: none; }
    .lumio-cart-head { padding: 13px 16px; }
    .lumio-cart-item { padding: 13px 16px; gap: 10px; }
    .lumio-cart-thumb { width: 62px; height: 62px; }
    .lumio-cart-name { font-size: 13px; }
    .lumio-checkout-btn,
    .lumio-continue-btn { width: calc(100% - 32px); margin-left: 16px; margin-right: 16px; }
    .lumio-summary-total { padding: 12px 16px 0; font-size: 17px; }
    .lumio-summary-body { padding: 0 16px 12px; }
    .lumio-summary-header { padding: 14px 16px; }
    .lumio-trust-row,
    .lumio-pay-methods { padding-left: 16px; padding-right: 16px; }
}

/* ================================================================
   COMPTE — Contenu principal amélioré (adresses, profil, commandes)
   ================================================================ */

/* Titres de section */
.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 18px; font-weight: 900; color: #1f2937;
    margin: 0 0 20px; padding-bottom: 14px;
    border-bottom: 2px solid #f3f4f6;
    display: flex; align-items: center; gap: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content h2::before {
    content: '';
    display: inline-block;
    width: 4px; height: 20px;
    background: linear-gradient(180deg,#FF6B00,#e55a00);
    border-radius: 2px;
    flex-shrink: 0;
}
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 15px; font-weight: 800; color: #374151; margin: 20px 0 12px;
}

/* Labels de formulaire */
.woocommerce-account .woocommerce-MyAccount-content .form-row label,
.woocommerce-account .woocommerce-MyAccount-content label {
    display: block; font-size: 11px; font-weight: 700;
    color: #9ca3af; text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 6px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row label abbr { color: #ef4444; }

/* Inputs */
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb;
    border-radius: 10px; font-size: 14px; outline: none;
    box-sizing: border-box; background: #fafafa; font-family: inherit;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    border-color: #FF6B00; background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,0,.1);
}

/* Fieldset (section mot de passe) */
.woocommerce-account .woocommerce-MyAccount-content fieldset {
    border: 1.5px solid #e5e7eb; border-radius: 14px;
    padding: 20px 22px; margin: 22px 0; background: #fafafa;
    position: relative;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
    font-size: 12px; font-weight: 800; color: #FF6B00;
    padding: 0 10px; background: #fafafa;
    text-transform: uppercase; letter-spacing: .06em;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row { margin-bottom: 16px; }

/* Bouton submit */
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; background: linear-gradient(135deg,#FF6B00,#e55a00);
    color: #fff; border: none; border-radius: 11px;
    font-size: 15px; font-weight: 800; cursor: pointer;
    box-shadow: 0 4px 14px rgba(255,107,0,.3);
    transition: all .18s; margin-top: 8px; font-family: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover {
    box-shadow: 0 6px 22px rgba(255,107,0,.42); transform: translateY(-1px);
}

/* Bouton générique .button */
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content a.button {
    display: inline-flex; align-items: center; gap: 6px;
    background: #FF6B00; color: #fff; padding: 8px 18px;
    border-radius: 9px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all .15s;
    border: none; cursor: pointer; font-family: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover { background: #e55a00; transform: translateY(-1px); }

/* ===== ADRESSES — Cards design premium ===== */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    overflow: hidden;
    transition: box-shadow .2s;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address:hover { box-shadow: 0 4px 20px rgba(0,0,0,.09); }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    background: linear-gradient(135deg,#fff7f0,#fef3e2);
    padding: 14px 18px;
    border-bottom: 1px solid #fed7aa;
    display: flex; align-items: center; justify-content: space-between;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    font-size: 13px; font-weight: 800; color: #92400e; margin: 0;
    display: flex; align-items: center; gap: 7px; text-transform: uppercase; letter-spacing: .05em;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3::before {
    content: '📍'; font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
    background: #FF6B00; color: #fff;
    padding: 5px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 700; text-decoration: none;
    transition: background .15s;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a:hover { background: #e55a00; }
.woocommerce-account .woocommerce-MyAccount-content address {
    font-style: normal; font-size: 14px; color: #374151;
    line-height: 1.85; padding: 16px 18px;
    display: block;
}

/* Pas d'adresse enregistrée */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address p {
    color: #9ca3af; font-style: italic; font-size: 13px;
}

/* ===== NOTICES WC ===== */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    background: #fff7f0; border-left: 4px solid #FF6B00;
    padding: 12px 16px; border-radius: 0 10px 10px 0;
    font-size: 14px; margin-bottom: 18px; color: #92400e;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before { content: none; }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
    background: #f0fdf4; border-left: 4px solid #059669;
    padding: 12px 16px; border-radius: 0 10px 10px 0;
    font-size: 14px; margin-bottom: 18px; color: #065f46;
    list-style: none;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
    background: #fef2f2; border-left: 4px solid #ef4444;
    padding: 12px 16px; border-radius: 0 10px 10px 0;
    font-size: 14px; margin-bottom: 18px; color: #991b1b;
    list-style: none;
}

/* ===== TABLE COMMANDES ===== */
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
    width: 100%; border-collapse: collapse; font-size: 14px;
    border-radius: 12px; overflow: hidden;
    border: 1px solid #f3f4f6;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead {
    background: linear-gradient(135deg,#1f2937,#374151);
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th {
    padding: 12px 14px; font-weight: 700; color: #fff;
    text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td {
    padding: 13px 14px; border-bottom: 1px solid #f9fafb; color: #374151; vertical-align: middle;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr:last-child td { border-bottom: none; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr:hover td { background: #fffbf8; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td a { color: #FF6B00; font-weight: 700; text-decoration: none; }
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td a:hover { text-decoration: underline; }

/* Badges statut commandes */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status mark,
.woocommerce-account .woocommerce-MyAccount-content mark.order-status {
    padding: 4px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 800; background: transparent;
    display: inline-block;
}
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-completed { background: #d1fae5; color: #065f46; }
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-processing { background: #dbeafe; color: #1e40af; }
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-on-hold    { background: #fef3c7; color: #92400e; }
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-pending    { background: #f3f4f6; color: #6b7280; }
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-cancelled  { background: #fee2e2; color: #991b1b; }
.woocommerce-account .woocommerce-MyAccount-content mark.order-status.status-refunded   { background: #fae8ff; color: #7e22ce; }

/* ===== RESPONSIVE COMPTE ===== */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
    .woocommerce-account .woocommerce-MyAccount-navigation { width: 100% !important; grid-column: 1 !important; grid-row: auto !important; }
    .lumio-acct-extra { grid-column: 1 !important; grid-row: auto !important; }
    .woocommerce-account .woocommerce-MyAccount-content { grid-column: 1 !important; grid-row: auto !important; padding: 20px !important; }
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .woocommerce-account .woocommerce { padding: 0 12px 32px !important; }
    .lumio-stat-n { font-size: 24px !important; }
    .woocommerce-account .woocommerce-MyAccount-content { padding: 16px !important; }
    .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table { font-size: 12px; }
    .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th,
    .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td { padding: 10px 10px; }
}

/* ================================================================
   RESPONSIVE GLOBAL — Anti-overflow horizontal + Hero contenu
   ================================================================ */
/* ── Anti-overflow horizontal ── */
/* NE PAS mettre overflow sur html ou body : ça casse le scroll vertical */
/* Le wrapper #lumio-wrap (header.php/footer.php) gère le clip horizontal */
#lumio-wrap { overflow-x: hidden; max-width: 100%; }
body { -webkit-overflow-scrolling: touch; touch-action: pan-y; }

/* ================================================================
   RESPONSIVE 768px — Header 2 rangées + ajustements mobiles
   ================================================================ */
@media (max-width: 768px) {
    /* header + recherche : gérés par le bloc mobile-first (min-width:768px) */
    .hdr-btn { min-width: 42px; padding: 6px 8px; }
    /* ---- Flash sale : réduction du compteur ---- */
    .flash-badge { font-size: 13px; padding: 5px 12px; }
    .cd-block { font-size: 14px; min-width: 32px; padding: 4px 7px; }
    .cd-sep { font-size: 14px; }
    .flash-hdr { gap: 8px; margin-bottom: 12px; }
    /* Hero : bouton réduit */
    .hero-content .btn-lg { font-size: 14px; padding: 12px 20px; min-height: 46px; }
    .hero-sub { font-size: 13px; }
    /* Titres de section */
    .section-title, .section-title-accent { font-size: 16px; }
    /* Bannières promo : texte lisible pleine largeur */
    .promo-banner-txt strong { font-size: 15px !important; }
    .promo-banner-txt { padding: 12px; }
    .promo-banner-txt .tag { font-size: 9px; letter-spacing: .08em; }
    /* Tableau commandes : scroll horizontal */
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__wrapper,
    .woocommerce-account .woocommerce-MyAccount-content .shop_table_responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; display: block; width: 100%; }
    .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table { min-width: 460px; }
    /* hp-section espacement */
    .hp-section { padding: 14px 14px 18px; }
}

/* ================================================================
   RESPONSIVE 480px — iPhone 14/15, grands Android (430px–480px)
   ================================================================ */
@media (max-width: 480px) {
    .hdr-btn { min-width: 38px; padding: 5px 6px; }
    .search-wrap { height: 38px; }
    /* Flash countdown */
    .flash-badge { font-size: 12px; padding: 4px 10px; }
    .cd-block { font-size: 13px; min-width: 28px; padding: 3px 6px; }
    .cd-sep { font-size: 13px; }
    .flash-hdr { gap: 6px; margin-bottom: 10px; }
    /* hero : géré par le bloc mobile-first */
    /* Titres de section */
    .section-title, .section-title-accent { font-size: 15px; }
    .section-hdr { margin-bottom: 10px; }
    /* Produits scroll */
    .products-scroll-row .product-card { min-width: 142px; }
    /* Cat pills */
    .cat-pill { min-width: 56px !important; }
    .cat-icon { width: 48px !important; height: 48px !important; font-size: 20px !important; }
    .cat-label { font-size: 10px; max-width: 56px; }
    /* HP section */
    .hp-section { padding: 12px 10px 14px; }
    /* Cart — étapes */
    .lumio-step-line { max-width: 36px; }
    /* Account stats */
    .lumio-stat { padding: 14px 8px !important; }
    .lumio-stat-n { font-size: 22px !important; }
    /* Footer */
    .footer-col h4 { font-size: 12px; }
    .footer-col a { font-size: 12px; }
    .footer-brand-desc { font-size: 12px; }
}

/* ================================================================
   RESPONSIVE 375px — iPhone SE / 12 mini / petits Android (~360–375px)
   ================================================================ */
@media (max-width: 375px) {
    .site-logo img { max-height: 26px; max-width: 90px; }
    .site-logo .logo-text { font-size: 16px; }
    .hdr-btn { min-width: 34px; padding: 4px 5px; }
    .hdr-btn .icon svg { width: 20px; height: 20px; }
    .search-wrap { height: 36px; }
    .search-input { font-size: 13px; padding: 0 10px; }
    .search-submit { padding: 0 10px; }
    /* Nav orange */
    #navBar > .nb-link { font-size: 11px; padding: 0 8px; }
    #catDropBtn { font-size: 11px; padding: 0 10px; }
    /* hero : géré par le bloc mobile-first */
    /* Flash countdown */
    .cd-block { font-size: 12px !important; min-width: 26px !important; padding: 3px 5px !important; }
    .cd-sep { font-size: 12px !important; }
    /* Produits */
    .products-scroll-row .product-card { min-width: 130px !important; }
    .products-grid,
    .products-grid-4,
    .products-grid-5,
    .products-grid-3 { gap: 8px !important; }
    /* Panier */
    .lumio-cart-wrap { padding: 8px 8px 48px !important; }
    .lumio-cart-item { padding: 10px 12px !important; gap: 8px !important; }
    .lumio-cart-thumb { width: 56px !important; height: 56px !important; }
    .lumio-cart-name { font-size: 12px !important; }
    .lumio-cart-price { font-size: 14px !important; }
    .lumio-summary-total { font-size: 15px !important; }
    .lumio-checkout-btn { font-size: 14px !important; padding: 13px 14px !important; }
    .lumio-qty-btn { width: 30px !important; height: 30px !important; }
    .lumio-qty-input { width: 32px !important; height: 30px !important; font-size: 13px !important; }
    .lumio-coupon-btn { padding: 10px 14px !important; font-size: 12px !important; }
    /* Compte */
    .lumio-stats { gap: 6px !important; }
    .lumio-stat { padding: 12px 6px !important; }
    .lumio-stat-n { font-size: 20px !important; }
    .lumio-stat-l { font-size: 9px !important; }
    .woocommerce-account .woocommerce-MyAccount-content { padding: 12px !important; }
    .woocommerce-account .woocommerce-MyAccount-content fieldset { padding: 14px !important; }
    /* Footer */
    .footer-main { padding: 20px 0 16px; }
    .footer-bottom { flex-direction: column; gap: 6px; }
    .footer-legal { gap: 8px; }
}

/* ================================================================
   RESPONSIVE 320px — Galaxy A (entrée de gamme), anciens appareils
   ================================================================ */
@media (max-width: 320px) {
    .container { padding: 0 8px !important; }
    :root { --header-h: 50px; }
    /* hero : géré par le bloc mobile-first */
    /* Produits */
    .products-scroll-row .product-card { min-width: 120px !important; }
    /* Panier */
    .lumio-cart-thumb { width: 50px !important; height: 50px !important; }
    .lumio-cart-item { padding: 8px 10px !important; }
    /* Nav texte ultra compact */
    #navBar > .nb-link { font-size: 10px !important; padding: 0 6px !important; }
    #catDropBtn { padding: 0 8px !important; font-size: 10px !important; }
}

/* ================================================================
   HERO — BLOC FINAL (priorité absolue, placé en dernier)
   Règle le problème de responsivité du hero sur tous petits écrans.
   Utilise aspect-ratio:auto (plus sûr qu'unset pour les anciens navigateurs)
   et height explicite pour garantir la hauteur sans conflit min-height.
   ================================================================ */

/* hero : entièrement géré par le bloc mobile-first dans la base CSS */
