/* ============================================================
   FOUTIYOU SHOP — FTY | style.css
   Dark Luxury E-Commerce Design
   Couleurs: Orange #FF6B1A | Bleu #1565C0 | Noir #080810
============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
    --fty-orange:       #FF6B1A;
    --fty-orange-2:     #FF9A5C;
    --fty-orange-glow:  rgba(255, 107, 26, 0.25);
    --fty-blue:         #1565C0;
    --fty-blue-2:       #5B9BD5;
    --fty-blue-glow:    rgba(21, 101, 192, 0.25);
    --fty-green:        #00C853;
    --fty-red:          #E53935;

    --dark:             #09090f;
    --dark-2:           #10102a;
    --dark-3:           #1c1c3a;
    --dark-card:        #131326;
    --dark-alt1:        #0d0d20;  /* bleu-nuit subtil */
    --dark-alt2:        #1e1e3a;  /* violet foncé clair */
    --dark-alt3:        #0a1020;  /* bleu marine */
    --dark-alt4:        #141428;  /* indigo foncé */
    --dark-border:      rgba(255,255,255,0.07);
    --dark-border-h:    rgba(255, 107, 26, 0.35);

    --text:             #E2E2F0;
    --text-2:           #B0B0CC;
    --text-muted:       #666688;
    --white:            #FFFFFF;

    --font-head:        'Space Grotesk', sans-serif;
    --font-body:        'Poppins', sans-serif;

    --announce-h:       36px;
    --navbar-h:         70px;

    --ease:             cubic-bezier(0.4, 0, 0.2, 1);
    --t:                all 0.32s var(--ease);
    --t-fast:           all 0.18s ease;

    --shadow:           0 8px 40px rgba(0,0,0,0.45);
    --shadow-orange:    0 0 40px rgba(255, 107, 26, 0.2);
    --shadow-blue:      0 0 40px rgba(21, 101, 192, 0.2);
    --radius:           16px;
    --radius-sm:        10px;
    --radius-pill:      500px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--fty-orange); border-radius: 3px; }

::selection { background: var(--fty-orange); color: #fff; }

/* ─── UTILITY ────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(120deg, var(--fty-orange) 0%, var(--fty-orange-2) 55%, #FFD080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: linear-gradient(120deg, var(--fty-blue-2) 0%, var(--fty-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 15px;
    border: 1px solid var(--fty-orange);
    color: var(--fty-orange);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-family: var(--font-head);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 3rem;
    position: relative;
}
.section-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--fty-orange), transparent);
    border-radius: 2px;
    margin-top: 2px;
}
.section-header .see-all-btn {
    position: absolute;
    right: 0; bottom: 0;
    color: var(--fty-orange);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--t-fast);
}
.section-header .see-all-btn:hover { gap: 9px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.fty-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--fty-orange) 0%, #FF8C40 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 4px 22px rgba(255, 107, 26, 0.38);
    position: relative;
    overflow: hidden;
    transition: var(--t);
}
.fty-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease);
}
.fty-btn-primary:hover::after { transform: translateX(100%); }
.fty-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 26, 0.5);
    color: #fff;
}

.fty-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--dark-border);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    transition: var(--t);
}
.fty-btn-ghost:hover {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    transform: translateY(-2px);
    background: rgba(255,107,26,0.05);
}

.fty-btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--dark-border);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    transition: var(--t-fast);
}
.fty-btn-outline-sm:hover {
    color: var(--fty-orange);
    border-color: rgba(255,107,26,0.5);
}

.fty-btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    transition: var(--t-fast);
    border: none;
}
.fty-btn-whatsapp-sm:hover {
    background: #1ebe5c;
    color: #fff;
    transform: translateY(-1px);
}

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement-bar {
    height: var(--announce-h);
    background: linear-gradient(90deg, #0D47A1 0%, var(--fty-blue) 50%, #0D47A1 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}
.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}
.marquee-content span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.4px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.announce-icon {
    font-size: 11px;
    opacity: 0.8;
    color: inherit;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.fty-navbar {
    height: var(--navbar-h);
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--t);
}
.fty-navbar.scrolled {
    background: var(--dark);
    box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

.navbar-logo {
    height: 56px;
    width: auto;
    transition: var(--t-fast);
}
.navbar-logo:hover { opacity: 0.85; }

.fty-navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2) !important;
    padding: 7px 14px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--t-fast);
}
.fty-navbar .nav-link:hover,
.fty-navbar .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 107, 26, 0.07);
}
.fty-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--fty-orange);
    border-radius: 50%;
}

.nav-icon-btn {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: var(--t-fast);
    position: relative;
}
.nav-icon-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
/* Icône admin — bouclier orange avec léger halo */
.nav-icon-admin {
    color: var(--fty-orange) !important;
}
.nav-icon-admin:hover {
    background: rgba(255,107,26,0.12) !important;
    color: var(--fty-orange) !important;
}
/* WhatsApp bouton navbar */
.nav-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff !important;
    padding: 0 14px;
    height: 36px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--t-fast);
}
.nav-wa-btn i { font-size: 17px; }
.nav-wa-btn:hover {
    background: #1ebe5c;
    color: #fff !important;
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--fty-orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark);
    padding: 0 2px;
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--dark-border);
    margin: 0 4px;
}

/* Dropdown */
.fty-dropdown {
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow);
    min-width: 200px;
    margin-top: 10px !important;
}
.fty-dropdown .dropdown-item {
    color: var(--text-2);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13.5px;
    transition: var(--t-fast);
    display: flex;
    align-items: center;
}
.fty-dropdown .dropdown-item:hover {
    background: rgba(255, 107, 26, 0.09);
    color: var(--fty-orange);
}
.fty-dropdown-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff !important;
    white-space: nowrap;
}
.fty-admin-badge {
    background: var(--fty-orange);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Mobile Toggler */
.fty-toggler {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border) !important;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: var(--t);
}
.fty-toggler:focus { box-shadow: none !important; }
.toggler-bar {
    display: block;
    width: 20px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: rgba(8,8,16,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.35s var(--ease);
    border-bottom: 1px solid var(--dark-border);
}
.search-overlay.active { transform: translateY(0); }

.search-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.search-form-icon {
    position: absolute;
    left: 0;
    color: var(--fty-orange);
    font-size: 16px;
    pointer-events: none;
}
.search-input {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid var(--dark-border);
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-head);
    font-weight: 500;
    padding: 6px 44px 6px 28px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.search-input:focus { border-color: var(--fty-orange); }
.search-input::placeholder { color: var(--text-muted); }
.search-submit {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 16px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s;
}
.search-submit:hover { color: var(--fty-orange); }

.search-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
}
.search-hint kbd {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.search-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-2);
    flex-shrink: 0;
    padding: 6px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.search-close:hover { color: var(--fty-orange); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}
/* ── Vanilla carousel ──────────────────────────────────── */
.hero-slides-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-slide {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center top;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: none; /* le slide lui-même ne capte rien */
    z-index: 35; /* au-dessus des zones de nav (z-index:30) */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        rgba(6, 6, 14, 0.92) 0%,
        rgba(6, 6, 14, 0.70) 42%,
        rgba(6, 6, 14, 0.22) 72%,
        rgba(6, 6, 14, 0.04) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    pointer-events: auto;
    padding-top: 20px;
    padding-bottom: 60px;
}
/* Slide-in animation when active */
.hero-slide.active .hero-content { animation: heroIn 0.85s var(--ease) both; }
@keyframes heroIn {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 107, 26, 0.13);
    border: 1px solid rgba(255, 107, 26, 0.45);
    color: var(--fty-orange);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero-title .line { display: block; }

.hero-subtitle {
    font-size: clamp(13.5px, 1.6vw, 16px);
    color: rgba(220, 220, 240, 0.82);
    max-width: 480px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── CTA buttons in hero — larger & more visible ── */
.hero-actions .fty-btn-primary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
}
.hero-actions .fty-btn-ghost {
    padding: 13px 28px;
    font-size: 15px;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.38);
}
.hero-actions .fty-btn-ghost:hover {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.08);
}

/* Hero Nav Buttons */
.hero-btn-prev,
.hero-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s;
}
.hero-btn-prev { left: 22px; }
.hero-btn-next { right: 22px; }
.hero-btn-prev:hover,
.hero-btn-next:hover {
    background: rgba(255,107,26,0.30);
    border-color: var(--fty-orange);
}

/* Hero click zones (navigation sans boutons) */
.hero-zone-prev,
.hero-zone-next {
    position: absolute;
    top: 0;
    width: 8%;
    height: 100%;
    z-index: 30;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.hero-zone-prev { left: 0; justify-content: flex-start; padding-left: 18px; }
.hero-zone-next { right: 0; justify-content: flex-end; padding-right: 18px; }

.hero-zone-prev::after,
.hero-zone-next::after {
    content: '';
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.22s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}
.hero-zone-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.hero-zone-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}
.hero-zone-prev:hover::after,
.hero-zone-next:hover::after { opacity: 1; }

/* Hero Pagination */
.hero-pagination {
    position: absolute !important;
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex;
    gap: 7px;
    z-index: 10;
}
.hero-dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.28);
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.hero-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--fty-orange);
}
.hero-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.28);
    opacity: 1;
    border-radius: 50%;
    transition: var(--t);
}
.hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: var(--fty-orange);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 24px; right: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 12px 22px;
    z-index: 10;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--fty-orange);
    line-height: 1;
}
.stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.stat-divider {
    width: 1px; height: 34px;
    background: rgba(255,255,255,0.1);
}

/* Hero Slide Produit — prix & badge */
.hero-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.hero-price-amount {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-price-amount span {
    font-size: 0.45em;
    font-weight: 600;
    opacity: 0.8;
    vertical-align: middle;
    margin-left: 4px;
}
.hero-product-badge {
    display: inline-flex;
    align-items: center;
    background: var(--fty-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    box-shadow: 0 4px 14px rgba(255,107,26,0.45);
}

/* Mobile hero */
@media (max-width: 767px) {
    .hero-section { height: 92vh; max-height: none; }
    .hero-content { padding-top: calc(var(--announce-h) + var(--navbar-h) + 10px); padding-bottom: 100px; }
    .hero-title { font-size: clamp(1.7rem, 8vw, 2.6rem); }
    .hero-subtitle { font-size: 13.5px; margin-bottom: 26px; }
    .hero-actions .fty-btn-primary,
    .hero-actions .fty-btn-ghost { padding: 12px 22px; font-size: 14px; }
    .hero-btn-prev,
    .hero-btn-next { width: 38px !important; height: 38px !important; font-size: 13px !important; }
    .hero-btn-prev { left: 12px !important; }
    .hero-btn-next { right: 12px !important; }
}

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories-section {
    padding: 90px 0;
    background: #f3f3f7;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 14px;
}
/* First and last cards span 2 columns */
.cat-card-large { grid-column: span 2; }

.cat-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}
/* Category icon */
.cat-icon {
    display: block;
    font-size: 22px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    transition: var(--t);
}
.cat-card:hover .cat-icon { color: #fff; transform: scale(1.15); }
.cat-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s var(--ease);
}
.cat-card:hover .cat-bg { transform: scale(1.07); }

.cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,8,16,0.92) 0%,
        rgba(8,8,16,0.35) 50%,
        rgba(8,8,16,0.08) 100%
    );
    transition: var(--t);
}
.cat-card:hover .cat-overlay {
    background: linear-gradient(
        to top,
        rgba(255,107,26,0.82) 0%,
        rgba(8,8,16,0.45) 50%,
        rgba(8,8,16,0.1) 100%
    );
}

.cat-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 24px;
    z-index: 2;
}
.cat-content h3 {
    font-family: var(--font-head);
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.cat-content span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.58);
    display: block;
    margin-bottom: 13px;
}
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--t);
}
.cat-card:hover .cat-btn {
    opacity: 1;
    transform: translateY(0);
}
.cat-btn:hover {
    background: var(--white);
    color: var(--fty-orange);
    gap: 11px;
}

/* ─── PRODUCTS ─────────────────────────────────────────────── */
.products-section {
    padding: 90px 0;
    background: #f4f4f8;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
/* Cartes produits adaptées fond clair dans products-section */
.products-section .product-card {
    background: #fff;
    border-color: rgba(0,0,0,0.09);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.products-section .product-card:hover {
    box-shadow: 0 14px 40px rgba(0,0,0,0.13);
    border-color: rgba(255,107,26,0.30);
}
.products-section .product-img-wrap { background: #f0f0f5; }
.products-section .product-name { color: #1a1a2e; }
.products-section .product-card:hover .product-name { color: var(--fty-orange); }
.products-section .price-old { color: #aaa; }
/* Titres et bouton visibles sur fond clair */
.products-section .section-title { color: #1a1a2e; }
.products-section .section-title .gradient-text {
    background: linear-gradient(120deg, var(--fty-orange) 0%, var(--fty-orange-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.products-section .section-tag { color: var(--fty-orange); border-color: var(--fty-orange); }
.products-section .see-all-btn { color: var(--fty-orange); font-weight: 700; }
.products-section .section-header::after { background: linear-gradient(90deg, var(--fty-orange), transparent); }
.products-swiper {
    padding-bottom: 48px !important;
    overflow: visible !important;
}
.products-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.products-pagination .swiper-pagination-bullet {
    background: var(--dark-border);
    opacity: 1;
    width: 8px; height: 8px;
    transition: var(--t);
}
.products-pagination .swiper-pagination-bullet-active {
    background: var(--fty-orange);
    width: 24px;
    border-radius: 4px;
}

/* Product Card */
.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--t);
}
.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 107, 26, 0.22);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--dark-3);
}
.product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 11px;
    border-radius: 7px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    font-family: var(--font-head);
}
.badge-orange { background: var(--fty-orange); color: #fff; }
.badge-blue   { background: var(--fty-blue);   color: #fff; }
.badge-red    { background: var(--fty-red);     color: #fff; }

.product-actions {
    position: absolute;
    right: 12px; top: 50%;
    transform: translate(60px, -50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
    transition: transform 0.35s var(--ease);
}
.product-card:hover .product-actions {
    transform: translate(0, -50%);
}

.paction-btn {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--t-fast);
}
.paction-btn:hover { background: var(--fty-orange); border-color: var(--fty-orange); }
.paction-cart { background: var(--fty-orange); border-color: var(--fty-orange); }

.product-info { padding: 15px 16px 16px; }

.product-cat {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fty-orange);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--t-fast);
}
.product-card:hover .product-name { color: var(--white); }

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 9px;
}
.price-current {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--fty-orange);
}
.price-current small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}
.price-old {
    font-size: 12.5px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* V2 card (New Arrivals) */
.product-card-v2 {
    background: transparent;
}
.product-card-v2:hover {
    background: var(--dark-card);
}

/* ─── PROMO BANNER ───────────────────────────────────────── */
.promo-banner {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d1b3e 0%, #1565C0 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.promo-bg-glow { display: none; }

.promo-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin: 12px 0 16px;
}
.promo-text {
    font-size: 15px;
    color: var(--text-2);
    max-width: 470px;
    margin-bottom: 26px;
    line-height: 1.75;
}

.promo-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px;
}
.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    color: var(--text);
    padding: 7px 15px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
}
.pay-chip-wa { border-color: rgba(37,211,102,0.3); color: #25D366; background: rgba(37,211,102,0.06); }

.promo-img-wrap {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}
.promo-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    filter: brightness(0.88);
}
.promo-float-card {
    position: absolute;
    bottom: -18px; left: -24px;
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}
.promo-float-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,107,26,0.12);
    color: var(--fty-orange);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.promo-float-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 1px;
}
.promo-float-card span { font-size: 12px; color: var(--text-muted); }

.promo-float-card-2 {
    position: absolute;
    top: 20px; right: -18px;
    background: var(--dark-2);
    border: 1px solid var(--dark-border);
    border-radius: 11px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

/* ─── NEW ARRIVALS ───────────────────────────────────────── */
.new-arrivals-section {
    padding: 90px 0;
    background: #f9f9fb;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ─── WHY FTY ────────────────────────────────────────────── */
.why-section {
    padding: 90px 0;
    background: #fdf8f4;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.why-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    transition: var(--t);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    display: block;
    height: 4px;
    border-radius: 22px 22px 0 0;
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--card-accent, var(--fty-orange));
    transition: var(--t);
}
.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 16px 48px rgba(0,0,0,0.11);
}
/* Variantes couleurs */
.why-card-orange { --card-accent: #FF6B1A; }
.why-card-blue   { --card-accent: #1565C0; }
.why-card-green  { --card-accent: #25D366; }

.why-icon {
    width: 66px; height: 66px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
    transition: var(--t);
}
.why-icon-orange { background: rgba(255,107,26,0.1);  border: 1px solid rgba(255,107,26,0.25); color: #FF6B1A; }
.why-icon-blue   { background: rgba(21,101,192,0.1);  border: 1px solid rgba(21,101,192,0.25); color: #1565C0; }
.why-icon-green  { background: rgba(37,211,102,0.1);  border: 1px solid rgba(37,211,102,0.25); color: #25D366; }

.why-card-orange:hover .why-icon-orange { background: #FF6B1A; border-color: #FF6B1A; color: #fff; transform: scale(1.1); }
.why-card-blue:hover   .why-icon-blue   { background: #1565C0; border-color: #1565C0; color: #fff; transform: scale(1.1); }
.why-card-green:hover  .why-icon-green  { background: #25D366; border-color: #25D366; color: #fff; transform: scale(1.1); }

.why-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.why-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section {
    padding: 90px 0 0;
    background: #e8e8f0;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 2rem;
    gap: 3px;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.09); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(255, 107, 26, 0.62);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-inner {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: #fff;
    transform: translateY(10px);
    transition: var(--t);
}
.gallery-item:hover .gallery-overlay-inner { transform: translateY(0); }
.gallery-overlay-inner i  { font-size: 28px; }
.gallery-overlay-inner span { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
    padding: 90px 0;
    background: #f4f4f8;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.newsletter-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 28px;
    padding: 60px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.newsletter-glow-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-glow-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(21,101,192,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.22;
    margin-bottom: 10px;
}
.newsletter-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.newsletter-input {
    width: 100%;
    background: #f5f5f8;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    color: #222;
    padding: 13px 18px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--t-fast);
}
.newsletter-input:focus {
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.04);
}
.newsletter-input::placeholder { color: #999; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.fty-footer {
    background: #1a1a2e;
    border-top: 3px solid var(--fty-orange);
}
.footer-top { padding: 72px 0 52px; }

.footer-logo {
    height: 48px;
    margin-bottom: 18px;
}
.footer-desc {
    font-size: 13.5px;
    color: #9999bb;
    line-height: 1.75;
    max-width: 290px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex; gap: 9px;
}
.social-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: #bbbbd0;
    font-size: 17px;
    transition: var(--t-fast);
}
.social-btn:hover {
    color: var(--white);
    border-color: rgba(255,107,26,0.4);
    background: rgba(255,107,26,0.08);
}
.social-whatsapp:hover {
    border-color: rgba(37,211,102,0.4);
    background: rgba(37,211,102,0.08);
    color: #25D366;
}

.footer-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-links li a {
    font-size: 14px;
    color: #9999bb;
    transition: var(--t-fast);
    display: inline-block;
}
.footer-links li a:hover {
    color: var(--fty-orange);
    transform: translateX(5px);
}

.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(37,211,102,0.07);
    border: 1px solid rgba(37,211,102,0.18);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    transition: var(--t);
    color: inherit;
}
.footer-wa-icon {
    font-size: 28px;
    color: #25D366;
    flex-shrink: 0;
}
.footer-whatsapp-btn strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 1px;
}
.footer-whatsapp-btn span { font-size: 12px; color: var(--text-muted); }
.footer-whatsapp-btn:hover {
    background: rgba(37,211,102,0.12);
    border-color: rgba(37,211,102,0.35);
    transform: translateX(4px);
}

.footer-pay-block { }
.footer-pay-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}
.footer-pay-list { display: flex; flex-wrap: wrap; gap: 7px; }
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #bbbbd0;
    padding: 5px 12px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 500;
}
.pay-badge-delivery {
    border-color: rgba(255,107,26,0.25);
    color: var(--fty-orange);
    background: rgba(255,107,26,0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: #9999bb;
    margin: 0;
}
.footer-bottom strong { color: var(--fty-orange); }

/* ─── NEWSLETTER FOOTER ──────────────────────────────────── */
.footer-newsletter {
    background: linear-gradient(135deg, #0b1120 0%, #0f172a 100%);
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 44px 0;
}
.fty-newsletter-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.fty-nl-text { flex: 1 1 280px; }
.fty-nl-title {
    font-family: var(--fty-font);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.fty-nl-sub { font-size: .9rem; color: #94a3b8; margin: 0; }
.fty-nl-form {
    flex: 1 1 360px;
    display: flex;
    gap: 10px;
}
.fty-nl-input {
    flex: 1;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .9rem;
    color: #e2e8f0;
    outline: none;
    transition: border-color .2s;
}
.fty-nl-input::placeholder { color: #475569; }
.fty-nl-input:focus { border-color: var(--fty-orange); }
.fty-nl-btn {
    background: var(--fty-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-family: var(--fty-font);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}
.fty-nl-btn:hover { background: #e85e0f; transform: translateY(-1px); }
.fty-nl-msg { font-size: .9rem; padding: 10px 16px; border-radius: 10px; }
.fty-nl-msg-ok  { background: rgba(22,163,74,.15); color: #4ade80; border: 1px solid rgba(22,163,74,.3); }
.fty-nl-msg-err { background: rgba(220,38,38,.12); color: #f87171; border: 1px solid rgba(220,38,38,.25); }
.fty-nl-promo {
    display: inline-block;
    margin-top: 8px;
    background: var(--fty-orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .85rem;
    letter-spacing: 1px;
}
@media (max-width: 640px) {
    .fty-nl-form { flex-direction: column; }
    .fty-newsletter-wrap { gap: 24px; }
}

/* ─── CHATBOT WHATSAPP ───────────────────────────────────── */
.ftychat {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 16px;
    pointer-events: none; /* le container transparent ne bloque aucun clic */
}

/* Bouton déclencheur */
.ftychat-trigger {
    pointer-events: auto;
    position: relative;
    width: 50px; height: 50px;
    flex-shrink: 0;
    background: #25D366;
    border: none; outline: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37,211,102,0.5);
    transition: transform .2s ease;
    animation: pulseWA 2.5s ease-in-out infinite;
}
.ftychat-trigger:hover { transform: scale(1.08); animation: none; }
.ftychat-trigger .ftychat-icon-open  { font-size: 24px; }
.ftychat-trigger .ftychat-icon-close { font-size: 17px; }
.ftychat-trigger-label { display: none; }

/* Badge notification */
.ftychat-notif {
    position: absolute;
    top: 0; right: 0;
    background: #ff4c4c;
    color: #fff;
    font-size: 9px; font-weight: 800;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
.ftychat-notif.d-none { display: none !important; }

/* Panneau chat */
.ftychat-panel {
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 44px rgba(0,0,0,0.22);
    overflow: hidden;
    display: flex; flex-direction: column;
    transform: scale(.9) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .22s ease;
    transform-origin: bottom right;
}
.ftychat-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Header — sobre, sombre */
.ftychat-header {
    background: #075e54;
    padding: 9px 12px;
    display: flex; align-items: center; gap: 9px;
    flex-shrink: 0;
}
.ftychat-header-avatar {
    position: relative;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
    flex-shrink: 0;
}
.ftychat-online-dot {
    position: absolute;
    bottom: 0; right: 0;
    width: 9px; height: 9px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #075e54;
}
.ftychat-header-info { flex: 1; }
.ftychat-header-info strong { display: block; color: #fff; font-size: 13px; font-weight: 700; }
.ftychat-header-info span   { color: rgba(255,255,255,.65); font-size: 10px; }
.ftychat-close-btn {
    background: none; border: none; color: rgba(255,255,255,.65);
    font-size: 14px; cursor: pointer; padding: 4px;
    border-radius: 5px; transition: background .2s;
}
.ftychat-close-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Corps */
.ftychat-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ece5dd;
}
/* Section FAQ fixe en haut */
.ftychat-faq-section {
    flex-shrink: 0;
    padding: 8px 10px 6px;
    background: rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.ftychat-faq-label {
    font-size: 9px;
    font-weight: 700;
    color: #075e54;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 5px;
}
.ftychat-faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.ftychat-faq-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 5px 9px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 5px;
}
.ftychat-faq-btn i { font-size: 11px; transition: color .15s; }
.ftychat-faq-btn:hover {
    background: #075e54;
    border-color: #075e54;
    color: #fff;
}
.ftychat-faq-btn:hover i { color: #fff !important; }

/* Zone messages défilante */
.ftychat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-height: 0;
}
/* Messages */
.ftychat-msg { display: flex; flex-direction: column; max-width: 88%; }
.ftychat-msg-bot { align-self: flex-start; }
.ftychat-msg-user { align-self: flex-end; }
.ftychat-bubble {
    background: #fff;
    padding: 8px 11px;
    border-radius: 0 11px 11px 11px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #222;
    box-shadow: 0 1px 3px rgba(0,0,0,.09);
}
.ftychat-msg-user .ftychat-bubble {
    background: #dcf8c6;
    border-radius: 11px 0 11px 11px;
    color: #111;
}
.ftychat-time { font-size: 9.5px; color: #999; margin-top: 2px; padding: 0 3px; }
.ftychat-msg-user .ftychat-time { text-align: right; }

/* Bouton WA */
.ftychat-wa-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
    align-self: flex-start;
    box-shadow: 0 3px 10px rgba(37,211,102,.28);
    transition: background .2s;
}
.ftychat-wa-btn:hover { background: #1ebe5c; color: #fff; }

/* Bouton "Continuer sur WhatsApp" */
.ftychat-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    transition: background .2s, transform .2s;
}
.ftychat-wa-btn:hover { background: #1ebe5c; color: #fff; transform: translateY(-2px); }

/* Chips d'action : Autre question / Terminer & envoyer */
.ftychat-action-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 2px 0 3px;
    align-self: stretch;
}
.ftychat-chip-btn {
    flex: 1;
    min-width: 95px;
    padding: 6px 8px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background .18s, color .18s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}
.ftychat-chip-more {
    background: #f0f4f8;
    color: #075e54;
    border: 1px solid #075e54;
}
.ftychat-chip-more:hover { background: #075e54; color: #fff; }
.ftychat-chip-end {
    background: #25D366;
    color: #fff;
}
.ftychat-chip-end:hover { background: #1ebe5c; }

/* Saisie */
.ftychat-footer {
    display: flex; gap: 6px;
    padding: 8px 10px;
    background: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
}
.ftychat-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 18px;
    padding: 6px 13px;
    font-size: 12px;
    outline: none;
    background: #fff;
    color: #111;
    transition: border-color .2s;
}
.ftychat-input:focus { border-color: #25D366; }
.ftychat-send {
    width: 33px; height: 33px;
    background: #25D366;
    border: none; border-radius: 50%;
    color: #fff; font-size: 15px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.ftychat-send:hover { background: #1ebe5c; }

/* Typing indicator */
.ftychat-typing .ftychat-bubble {
    display: flex; gap: 4px; align-items: center;
    padding: 10px 13px;
}
.ftychat-dot {
    width: 6px; height: 6px;
    background: #bbb;
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}
.ftychat-dot:nth-child(2) { animation-delay: .2s; }
.ftychat-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
    0%, 80%, 100% { transform: translateY(0); opacity: .5; }
    40%            { transform: translateY(-5px); opacity: 1; }
}

/* Responsive */
@media (max-width: 400px) {
    .ftychat-panel { width: calc(100vw - 14px); height: 380px; }
    .ftychat { right: 8px; bottom: 14px; }
}
@keyframes pulseWA {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--text);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--t);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--fty-orange);
    border-color: var(--fty-orange);
    color: #fff;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-stats { display: none; }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .cat-card-large {
        grid-column: span 2;
        height: 260px;
    }
    .cat-card { height: 200px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .newsletter-card { padding: 46px 38px; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .hero-btn-prev, .hero-btn-next { display: none !important; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { display: none; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .cat-card-large { grid-column: span 2; height: 220px; }
    .cat-card { height: 180px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-card { padding: 32px 22px; }
    .promo-methods { display: grid; grid-template-columns: 1fr 1fr; }
    .back-to-top { right: 24px; bottom: 100px; }
    .ftychat { bottom: 16px; right: 16px; }
    .ftychat-panel { width: calc(100vw - 32px); height: 480px; }
}

@media (max-width: 480px) {
    .trending-ticker { height: 36px; }
    .ticker-label { padding: 0 14px; font-size: 10px; }
    .categories-section,
    .products-section,
    .promo-banner,
    .new-arrivals-section,
    .why-section,
    .gallery-section,
    .newsletter-section { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SECTIONS CLAIRES — TEXTES SOMBRES ─────────────────── */
/* Catégories (fond gris clair) */
.categories-section .section-title {
    color: #111;
}
.categories-section .section-tag {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.07);
}
.categories-section .section-header::after {
    background: linear-gradient(90deg, var(--fty-orange), transparent);
}

/* New Arrivals (fond blanc cassé) */
.new-arrivals-section .section-title {
    color: #111;
}
.new-arrivals-section .section-tag {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.07);
}
.new-arrivals-section .section-header::after {
    background: linear-gradient(90deg, var(--fty-orange), transparent);
}
.new-arrivals-section .product-card-v2 {
    background: #fff;
    border: 1px solid #e0e0ea;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}
.new-arrivals-section .product-card-v2:hover {
    background: #f5f5fa;
    border-color: rgba(255,107,26,0.3);
    box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}
.new-arrivals-section .product-name {
    color: #1a1a2e;
}
.new-arrivals-section .product-card-v2:hover .product-name {
    color: #111;
}
.new-arrivals-section .price-old {
    color: #999;
}

/* Why FTY (fond blanc chaud) */
.why-section .section-title {
    color: #111;
}
.why-section .section-tag {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.07);
}
.why-section .section-header::after {
    background: linear-gradient(90deg, var(--fty-orange), transparent);
}

/* Gallery (fond gris pâle) */
.gallery-section .section-title {
    color: #111;
}
.gallery-section .section-tag {
    color: var(--fty-orange);
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.07);
}
.gallery-section .section-header::after {
    background: linear-gradient(90deg, var(--fty-orange), transparent);
}

/* ═══════════════════════════════════════════════════════════
   BOUTIQUE PAGE
═══════════════════════════════════════════════════════════ */

/* Header */
.boutique-header {
    background: linear-gradient(135deg, #fff 0%, #f8f4ff 50%, #fff5ef 100%);
    padding: 18px 0 14px;
    border-bottom: 1px solid #ebebf3;
    position: relative;
    overflow: hidden;
}
.boutique-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fty-breadcrumb {
    --bs-breadcrumb-divider-color: #bbb;
    font-size: 13px;
    margin-bottom: 0;
}
.fty-breadcrumb .breadcrumb-item a { color: var(--fty-orange); text-decoration: none; font-weight: 500; }
.fty-breadcrumb .breadcrumb-item.active { color: #888; }
.fty-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #bbb; }
.boutique-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.boutique-main-title { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; color: #111; margin: 0; }
.boutique-main-title em { color: var(--fty-orange); font-style: normal; }
.boutique-main-title i { color: var(--fty-orange); font-size: 0.9em; }
.boutique-sub {
    color: #888;
    font-size: 13px;
    margin: 5px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.boutique-sub::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--fty-orange);
    border-radius: 2px;
}

/* Body */
.boutique-body { background: #f4f4f8; min-height: 70vh; }

/* Sidebar */
.boutique-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-block {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.sidebar-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #aaa;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f4;
}
/* Recherche sidebar */
.sidebar-search-wrap {
    display: flex;
    border: 1.5px solid #e5e5eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.sidebar-search-wrap:focus-within { border-color: var(--fty-orange); }
.sidebar-search-input {
    border: none;
    outline: none;
    padding: 9px 12px;
    flex: 1;
    font-size: 14px;
    background: transparent;
    color: #111;
}
.sidebar-search-btn {
    border: none;
    background: var(--fty-orange);
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.sidebar-search-btn:hover { background: #e55a0a; }

/* Catégories sidebar */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 7px;
    text-decoration: none;
    color: #444;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.18s;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-cat-item i { width: 16px; text-align: center; color: #bbb; flex-shrink: 0; font-size: 13px; }
.sidebar-cat-item:hover { background: #fff5ef; color: var(--fty-orange); }
.sidebar-cat-item:hover i { color: var(--fty-orange); }
.sidebar-cat-item.active {
    background: rgba(255,107,26,0.1);
    color: var(--fty-orange);
    font-weight: 700;
}
.sidebar-cat-item.active i { color: var(--fty-orange); }
.cat-name { flex: 1; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.cat-count {
    flex-shrink: 0;
    background: #f0f0f4;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 1px 7px;
    color: #999;
    margin-left: auto;
}
.sidebar-cat-item.active .cat-count {
    background: rgba(255,107,26,0.15);
    color: var(--fty-orange);
}

/* Tri sidebar */
.sidebar-sort-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.sidebar-sort-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 7px;
    text-decoration: none;
    color: #555;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.18s;
}
.sidebar-sort-item i { width: 16px; text-align: center; color: #bbb; font-size: 13px; }
.sidebar-sort-item:hover { background: #f0f4ff; color: var(--fty-blue); }
.sidebar-sort-item.active { background: rgba(21,101,192,0.1); color: var(--fty-blue); font-weight: 700; }
.sidebar-sort-item.active i { color: var(--fty-blue); }

/* WhatsApp bloc sidebar */
.sidebar-wa-block {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border-top: 3px solid #25D366;
}
.sidebar-wa-icon {
    font-size: 2rem;
    color: #25D366;
    display: block;
    margin-bottom: 8px;
}
.sidebar-wa-block p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
}
.fty-btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.fty-btn-wa:hover { background: #1dba57; color: #fff; }

/* Grille produits boutique */
.boutique-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.boutique-empty-icon {
    font-size: 3.5rem;
    color: #e0e0e0;
    margin-bottom: 16px;
}
.boutique-empty h3 { color: #333; font-weight: 700; }
.boutique-empty p { color: #888; }

/* Toolbar mobile tri */
.toolbar-sort-select {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    width: 100%;
    max-width: 220px;
    cursor: pointer;
    outline: none;
}

/* Pagination boutique */
.boutique-pagination .pagination { gap: 6px; }
.boutique-pagination .page-link {
    border-radius: 8px !important;
    border: 1.5px solid #ddd;
    color: #555;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.18s;
}
.boutique-pagination .page-item.active .page-link {
    background: var(--fty-orange);
    border-color: var(--fty-orange);
    color: #fff;
}
.boutique-pagination .page-link:hover {
    background: rgba(255,107,26,0.1);
    border-color: var(--fty-orange);
    color: var(--fty-orange);
}

/* Responsive boutique */
@media (max-width: 991px) {
    .boutique-sidebar { position: static; }
}
@media (max-width: 575px) {
    .boutique-main-title { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUIT PAGE
═══════════════════════════════════════════════════════════ */

.produit-section {
    background: #f4f4f8;
    padding: 32px 0 48px;
}

/* Galerie */
.produit-main-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.produit-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.produit-main-img-wrap:hover .produit-main-img { transform: scale(1.04); }
.produit-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 14px;
    padding: 5px 12px;
}
.produit-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #aaa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}
.produit-fav-btn.active { color: #e74c3c; }
.produit-fav-btn:hover { color: #e74c3c; transform: scale(1.1); }
.produit-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.produit-thumb {
    width: 62px;
    height: 62px;
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.produit-thumb img { width: 100%; height: 100%; object-fit: cover; }
.produit-thumb.active,
.produit-thumb:hover { border-color: var(--fty-orange); }

/* Infos */
.produit-info-block { padding: 6px 0; }
.produit-cat-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.produit-cat-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fty-orange);
    text-decoration: none;
    background: rgba(255,107,26,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}
.produit-ref { font-size: 12px; color: #aaa; }
.produit-title {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 14px;
}
.produit-price-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.produit-price-main {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--fty-orange);
}
.produit-price-old {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
}
.produit-price-saved {
    font-size: 12px;
    font-weight: 700;
    color: #25a550;
    background: rgba(37,165,80,0.1);
    padding: 3px 9px;
    border-radius: 20px;
}
.produit-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 7px;
    margin-bottom: 14px;
}
.produit-stock.in-stock { color: #25a550; background: rgba(37,165,80,0.1); }
.produit-stock.out-stock { color: #e74c3c; background: rgba(231,76,60,0.1); }
.produit-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}
.produit-desc-more {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--fty-orange);
    text-decoration: none;
    font-weight: 600;
}
.produit-delivery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.delivery-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e8e8eb;
    border-radius: 8px;
    padding: 8px 12px;
    flex: 1;
    min-width: 100px;
}
.delivery-chip i { color: #bbb; font-size: 0.95rem; }
.delivery-chip.delivery-free i { color: #25a550; }
.delivery-chip strong { font-size: 12px; color: #222; display: block; line-height: 1.2; }
.delivery-chip span { font-size: 11px; color: #999; }
.produit-pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.produit-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.produit-btn-cart,
.produit-btn-wa {
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Description complète */
.produit-desc-full {
    margin-top: 32px;
    background: #fff;
    border-radius: 8px;
    padding: 22px 26px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.produit-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f0f0f4;
}
.produit-desc-content {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

/* Similaires */
.similaires-section {
    background: #f9f9fb;
    padding: 36px 0 48px;
}

@media (max-width: 575px) {
    .produit-title { font-size: 1.1rem; }
    .produit-price-main { font-size: 1.35rem; }
    .produit-desc-full { padding: 16px 14px; }
    .delivery-chip { min-width: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════════════════ */

.cart-section {
    background: #f4f4f8;
    padding: 30px 0 56px;
    min-height: 70vh;
}
.cart-empty {
    text-align: center;
    padding: 36px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.cart-empty-icon { font-size: 2.4rem; color: #ddd; margin-bottom: 10px; }
.cart-empty h2 { font-weight: 800; color: #222; font-size: 1.1rem; }
.cart-empty p { color: #888; font-size: 13.5px; }

/* Items wrap */
.cart-items-wrap { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 8px;
    padding: 13px 15px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.cart-item:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.08); }
.cart-item-img {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 7px;
    overflow: hidden;
    background: #f0f0f4;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.cart-item-name:hover { color: var(--fty-orange); }
.cart-item-cat { font-size: 12px; color: #aaa; display: block; margin-bottom: 6px; }
.cart-item-price-row { display: flex; align-items: baseline; gap: 8px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--fty-orange); }
.cart-item-old { font-size: 13px; color: #bbb; text-decoration: line-through; }
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e4;
    border-radius: 7px;
    overflow: hidden;
}
.qty-btn {
    background: #f4f4f8;
    border: none;
    width: 28px;
    height: 30px;
    cursor: pointer;
    color: #555;
    font-size: 10px;
    transition: background 0.15s;
}
.qty-btn:hover { background: #ffe0cc; color: var(--fty-orange); }
.qty-val { width: 30px; text-align: center; font-weight: 700; font-size: 14px; color: #111; }
.cart-item-total { font-size: 14px; font-weight: 800; color: #111; min-width: 80px; text-align: right; }
.cart-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 6px;
}
.cart-remove-btn:hover { color: #e74c3c; }

/* Actions bar */
.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.fty-btn-outline {
    border: 1.5px solid var(--fty-orange);
    color: var(--fty-orange);
    background: transparent;
    border-radius: 7px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.18s;
}
.fty-btn-outline:hover { background: var(--fty-orange); color: #fff; }
.fty-btn-danger-outline {
    border: 1.5px solid #e74c3c;
    color: #e74c3c;
    background: transparent;
    border-radius: 7px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.18s;
}
.fty-btn-danger-outline:hover { background: #e74c3c; color: #fff; }

/* Récapitulatif */
.cart-summary {
    background: #fff;
    border-radius: 8px;
    padding: 20px 18px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    position: sticky;
    top: 90px;
}
.cart-summary-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f0f0f4;
}
.cart-zone-block { margin-bottom: 14px; }
.cart-zone-label { font-size: 12px; color: #888; font-weight: 600; display: block; margin-bottom: 8px; }
.cart-zone-btns { display: flex; gap: 8px; }
.zone-btn {
    flex: 1;
    border: 1.5px solid #e0e0e4;
    background: #fafafa;
    border-radius: 7px;
    padding: 8px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}
.zone-btn span { font-size: 12px; color: #aaa; font-weight: 500; }
.zone-btn.active {
    border-color: var(--fty-orange);
    background: rgba(255,107,26,0.07);
    color: var(--fty-orange);
}
.zone-btn.active span { color: var(--fty-orange); }
.cart-free-delivery {
    font-size: 13px;
    color: #25a550;
    font-weight: 600;
    margin: 10px 0 0;
}
.cart-free-hint {
    font-size: 12px;
    color: #888;
    margin: 10px 0 0;
}
.cart-summary-rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 4px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555;
}
.summary-row.summary-total {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    border-top: 1.5px solid #f0f0f4;
    padding-top: 10px;
    margin-top: 4px;
}
.summary-total-val { color: var(--fty-orange); }
.cart-wa-btn { padding: 11px; font-size: 14px; font-weight: 800; border-radius: 8px; }
.cart-pay-info { margin-top: 14px; }
.cart-pay-label { font-size: 12px; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.cart-pay-list { display: flex; flex-wrap: wrap; gap: 6px; }
.cart-secure {
    margin-top: 14px;
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

/* Mobile cart */
@media (max-width: 767px) {
    .cart-item { flex-wrap: wrap; }
    .cart-item-controls { width: 100%; justify-content: space-between; }
    .cart-summary { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES (login / register)
═══════════════════════════════════════════════════════════ */

.auth-section {
    background: #0b0b1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 16px;
}

/* ── Split box ───────────────────────────────────── */
.auth-box {
    display: flex;
    width: 100%;
    max-width: 860px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

/* ── Left panel ──────────────────────────────────── */
.auth-panel {
    flex: 0 0 46%;
    background: linear-gradient(160deg, #0f0f22 0%, #1a1a3a 60%, #221020 100%);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.auth-panel-logo { height: 110px; object-fit: contain; }
.auth-panel-logo-link { display: flex; justify-content: center; margin-bottom: 32px; }
.auth-panel-logo-link:hover { opacity: .85; }
.auth-panel-title { font-size: 1.55rem; font-weight: 900; color: #fff; margin: 0 0 10px; line-height: 1.2; }
.auth-panel-sub { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.6; margin: 0 0 26px; }
.auth-perks {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 13px;
}
.auth-perks li {
    display: flex; align-items: center; gap: 11px;
    font-size: 13px; color: rgba(255,255,255,0.75);
}
.auth-perks li i {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,107,26,0.15);
    color: var(--fty-orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}
.auth-perks li i.fa-whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.auth-panel-foot { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.auth-panel-foot a { color: var(--fty-orange); font-weight: 700; text-decoration: none; }
.auth-panel-foot a:hover { text-decoration: underline; }

/* ── Right panel ─────────────────────────────────── */
.auth-form-panel {
    flex: 1;
    background: #fff;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-title { font-size: 1.4rem; font-weight: 900; color: #111; margin: 0 0 4px; }
.auth-sub { color: #888; font-size: 13px; margin: 0 0 22px; }
.fty-alert-danger {
    background: rgba(231,76,60,0.08);
    border: 1.5px solid rgba(231,76,60,0.3);
    color: #c0392b;
    border-radius: 10px;
    font-size: 13.5px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 5px; }
.auth-label { font-size: 12.5px; font-weight: 700; color: #444; }
.auth-input-wrap { position: relative; display: flex; align-items: center; }
.auth-icon {
    position: absolute; left: 13px;
    color: var(--fty-orange); font-size: 14px;
    pointer-events: none; z-index: 1;
}
.auth-input {
    width: 100%;
    padding: 10px 13px 10px 40px;
    border: 1.5px solid #dde1e7;
    border-radius: 10px;
    font-size: 13.5px;
    color: #111;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.auth-input:focus {
    border-color: var(--fty-orange);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
    background: #fff;
}
.auth-input.is-invalid { border-color: #e74c3c; }
.auth-eye {
    position: absolute; right: 11px;
    background: none; border: none;
    color: #999; font-size: 15px;
    cursor: pointer; padding: 3px;
    transition: color 0.2s;
}
.auth-eye:hover { color: var(--fty-orange); }
.auth-row-between { display: flex; justify-content: space-between; align-items: center; }
.auth-check {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: #666; cursor: pointer;
}
.auth-check input { accent-color: var(--fty-orange); cursor: pointer; }
.auth-submit { padding: 11px; font-size: 14.5px; font-weight: 800; border-radius: 10px; margin-top: 2px; }
.auth-wa-btn { font-size: 14px; padding: 10px; border-radius: 10px; }
.auth-separator {
    display: flex; align-items: center; gap: 10px;
    margin: 14px 0; color: #ccc; font-size: 12px;
}
.auth-separator::before,
.auth-separator::after { content: ''; flex: 1; height: 1px; background: #ebebeb; }
.auth-switch-mobile {
    display: none;
    text-align: center; font-size: 13px; color: #888; margin: 14px 0 0;
}
.auth-switch-mobile a { color: var(--fty-orange); font-weight: 700; text-decoration: none; }

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 700px) {
    /* Section : démarre sous la navbar, pas de centrage vertical (formulaire long) */
    .auth-section {
        align-items: flex-start;
        padding: calc(var(--navbar-h, 64px) + 24px) 0 48px;
        background: #0b0b1a;
    }
    /* Box : pleine largeur, pas d'overflow:hidden pour garder l'ombre */
    .auth-box {
        flex-direction: column;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
    }
    /* Panneau branding : remplacé par un mini header compact */
    .auth-panel { display: none; }
    /* Panneau formulaire : carte blanche pleine largeur */
    .auth-form-panel {
        padding: 28px 20px 36px;
        border-radius: 0;
        min-height: calc(100svh - var(--navbar-h, 64px) - 24px);
    }
    /* Titre un peu plus grand pour respirer */
    .auth-title { font-size: 1.3rem; }
    /* Lien switch déjà caché en desktop */
    .auth-switch-mobile { display: block; margin-top: 20px; }
    /* Inputs 16px → empêche zoom iOS */
    .auth-input { font-size: 16px !important; }
    /* Champ dans la moitié de largeur : hauteur réduite */
    .auth-box-register .row .auth-input { padding-top: 9px; padding-bottom: 9px; }
    /* Bouton soumettre : hauteur confortable */
    .auth-submit { padding: 13px; }
}

/* Très petit écran (< 380px) : empile les 2 colonnes */
@media (max-width: 379px) {
    .auth-box-register .row > .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .auth-form-panel { padding: 24px 16px 32px; }
}

@media (min-width: 701px) and (max-width: 900px) {
    .auth-panel { flex: 0 0 42%; padding: 36px 26px; }
    .auth-form-panel { padding: 36px 28px; }
}

/* ── Fallback card (register.php) ───────────────── */
.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.auth-logo { text-align: center; margin-bottom: 22px; }
.auth-logo img { height: 44px; object-fit: contain; margin-bottom: 10px; }
.auth-switch { text-align: center; font-size: 13.5px; color: #888; margin: 16px 0 0; }
.auth-switch a { color: var(--fty-orange); font-weight: 700; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* ── Register box (wider) ───────────────────────── */
.auth-box-register { max-width: 960px; }
.auth-box-register .auth-form { gap: 11px; }
.auth-box-register .auth-form-panel { padding: 36px 34px; }

/* ═══════════════════════════════════════════════════════════
   ACCOUNT / COMMANDES
═══════════════════════════════════════════════════════════ */

.account-section {
    background: #f4f4f8;
    padding: 50px 0 80px;
    min-height: 70vh;
}
.fty-btn-logout {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
}
.fty-alert-success {
    background: rgba(37,165,80,0.1);
    border: 1.5px solid rgba(37,165,80,0.3);
    color: #25a550;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 600;
}

/* Sidebar */
.account-sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.account-avatar {
    background: linear-gradient(135deg, #0b0b1a, #1a1a2e);
    padding: 28px 20px;
    text-align: center;
}
.account-avatar-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--fty-orange);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.account-name { color: #fff; font-weight: 700; font-size: 15px; }
.account-email { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 3px; }
.account-nav { padding: 12px 8px; display: flex; flex-direction: column; gap: 4px; }
.account-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.18s;
    position: relative;
}
.account-nav-item i { width: 18px; text-align: center; color: #bbb; }
.account-nav-item:hover { background: #fff5ef; color: var(--fty-orange); }
.account-nav-item:hover i { color: var(--fty-orange); }
.account-nav-item.active { background: rgba(255,107,26,0.1); color: var(--fty-orange); font-weight: 700; }
.account-nav-item.active i { color: var(--fty-orange); }
.account-nav-badge {
    margin-left: auto;
    background: var(--fty-orange);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
}
.account-nav-logout { color: #e74c3c; margin-top: 8px; border-top: 1px solid #f0f0f4; padding-top: 16px; }
.account-nav-logout i { color: #e74c3c; }

/* Contenu */
.account-content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    overflow: hidden;
}
.account-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 2px solid #f0f0f4;
}
.account-card-title { font-size: 1.1rem; font-weight: 800; color: #111; margin: 0; }
.fty-btn-sm-orange {
    background: var(--fty-orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.18s;
}
.fty-btn-sm-orange:hover { background: #e55a0a; color: #fff; }
.account-empty {
    text-align: center;
    padding: 70px 20px;
}
.account-empty-icon { font-size: 4rem; color: #ddd; margin-bottom: 18px; }
.account-empty h3 { font-weight: 800; color: #222; }
.account-empty p { color: #888; }

/* Liste commandes */
.commandes-list { padding: 20px 20px; display: flex; flex-direction: column; gap: 16px; }
.commande-card {
    background: #fafafa;
    border: 1.5px solid #e8e8ef;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.commande-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.commande-card-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
}
.commande-ref .commande-ref-label { font-size: 11px; color: #aaa; display: block; }
.commande-ref strong { font-size: 14px; color: #111; }
.commande-date { font-size: 13px; color: #888; margin-left: auto; }
.commande-total { font-size: 16px; font-weight: 900; color: var(--fty-orange); }
.commande-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}
.commande-status-warning  { background: #fff8e1; color: #f59e0b; }
.commande-status-blue     { background: rgba(21,101,192,0.1); color: var(--fty-blue); }
.commande-status-info     { background: #e0f7fa; color: #0097a7; }
.commande-status-purple   { background: #f3e5f5; color: #7b1fa2; }
.commande-status-success  { background: rgba(37,165,80,0.1); color: #25a550; }
.commande-status-danger   { background: rgba(231,76,60,0.1); color: #e74c3c; }

/* Barre de progression */
.commande-progress {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f4;
    overflow-x: auto;
    gap: 0;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 70px;
    flex-shrink: 0;
}
.progress-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8e8ef;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s;
}
.progress-step span { font-size: 10px; color: #bbb; text-align: center; white-space: nowrap; }
.progress-step.done .progress-step-dot { background: rgba(37,165,80,0.15); color: #25a550; }
.progress-step.done span { color: #25a550; }
.progress-step.current .progress-step-dot {
    background: var(--fty-orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(255,107,26,0.2);
}
.progress-step.current span { color: var(--fty-orange); font-weight: 700; }
.progress-line {
    flex: 1;
    height: 2px;
    background: #e8e8ef;
    margin-bottom: 18px;
    min-width: 20px;
    transition: background 0.25s;
}
.progress-line.done { background: #25a550; }

.commande-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-top: 1px solid #f0f0f4;
    flex-wrap: wrap;
}
.commande-articles { font-size: 13px; color: #888; margin-right: auto; }
.fty-btn-sm-outline {
    border: 1.5px solid #ddd;
    color: #555;
    background: transparent;
    border-radius: 9px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s;
    display: inline-flex;
    align-items: center;
}
.fty-btn-sm-outline:hover { border-color: var(--fty-orange); color: var(--fty-orange); }
.fty-btn-sm-wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.18s;
}
.fty-btn-sm-wa:hover { background: #1dba57; color: #fff; }

/* Modal commande */
.fty-modal { z-index: 1060; background: rgba(0,0,0,0.6); }
.fty-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
.fty-modal-header {
    background: #0b0b1a;
    color: #fff;
    padding: 20px 28px;
    border: none;
}
.fty-modal-header .modal-title { font-weight: 800; color: #fff; }
.fty-modal-body { padding: 28px; }
.modal-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    margin-bottom: 14px;
}
.modal-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.modal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f9f9fb;
    border-radius: 12px;
}
.modal-item-img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.modal-item-info { flex: 1; }
.modal-item-info strong { display: block; font-size: 14px; color: #111; }
.modal-item-info span { font-size: 13px; color: #888; }
.modal-item-price { font-weight: 800; color: var(--fty-orange); white-space: nowrap; }
.modal-totals {
    background: #f9f9fb;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modal-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}
.modal-total-final { font-weight: 900; font-size: 16px; color: #111; border-top: 1px solid #e8e8ef; padding-top: 10px; margin-top: 2px; }
.text-orange { color: var(--fty-orange); }
.modal-admin-note {
    display: flex;
    gap: 12px;
    background: rgba(255,107,26,0.07);
    border-left: 3px solid var(--fty-orange);
    border-radius: 0 12px 12px 0;
    padding: 14px 16px;
    margin-top: 16px;
    font-size: 14px;
    color: #444;
}
.modal-admin-note strong { display: block; color: var(--fty-orange); margin-bottom: 4px; }
.modal-admin-note p { margin: 0; }
.fty-modal-footer { border: none; border-top: 1px solid #f0f0f4; padding: 16px 24px; gap: 12px; }

/* Responsive account */
@media (max-width: 991px) {
    .account-sidebar { position: static; }
}
@media (max-width: 575px) {
    .commande-card-top { gap: 10px; }
    .commande-date { margin-left: 0; }
    .account-card-header { flex-wrap: wrap; gap: 12px; }
}

/* ============================================================
   ACCOUNT — FAVORIS
============================================================ */
.fav-empty {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}
.fav-empty-icon {
    font-size: 64px;
    color: #e0e0e6;
    display: block;
    margin-bottom: 20px;
}
.fav-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.fav-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.fav-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.fav-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.fav-card:hover .fav-card-img { transform: scale(1.05); }
.fav-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--fty-orange); color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 3px 9px; border-radius: 20px;
}
.fav-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.fav-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--fty-orange); }
.fav-card-name { font-size: 14px; font-weight: 700; color: #111; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fav-card-name:hover { color: var(--fty-orange); }
.fav-card-price { font-size: 15px; font-weight: 800; color: #111; }
.fav-card-old { font-size: 12px; font-weight: 400; color: #aaa; text-decoration: line-through; margin-left: 6px; }
.fav-card-actions { display: flex; gap: 8px; align-items: center; margin-top: auto; }
.fav-remove-btn {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1.5px solid #fce; background: #fff8f8;
    color: #e55; cursor: pointer; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: background .18s, color .18s;
    flex-shrink: 0;
}
.fav-remove-btn:hover { background: #e55; color: #fff; border-color: #e55; }

/* ============================================================
   ACCOUNT — PROFIL
============================================================ */
.account-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.account-page-title { font-size: 22px; font-weight: 800; color: #111; margin: 0; }
.profil-card { background: #fff; border-radius: 18px; box-shadow: 0 2px 16px rgba(0,0,0,.06); overflow: hidden; }
.profil-card-header { padding: 16px 24px; background: #f9f9fb; font-size: 14px; font-weight: 700; color: #444; border-bottom: 1px solid #eee; }
.profil-label { font-size: 12px; font-weight: 700; color: #555; display: block; margin-bottom: 6px; }
.profil-input {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e0e0e4; border-radius: 10px;
    font-size: 14px; color: #111; background: #fafafa;
    outline: none; font-family: var(--font-primary);
    transition: border-color .18s;
}
.profil-input:focus { border-color: var(--fty-orange); background: #fff; }
.profil-input.disabled { background: #f0f0f5; color: #aaa; cursor: not-allowed; }
.profil-textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e0e0e4; border-radius: 10px;
    font-size: 14px; color: #111; background: #fafafa;
    outline: none; font-family: var(--font-primary);
    resize: vertical; transition: border-color .18s;
}
.profil-textarea:focus { border-color: var(--fty-orange); background: #fff; }
.profil-input-icon-wrap { position: relative; }
.profil-input-icon-wrap .profil-input { padding-right: 44px; }
.profil-eye {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: #aaa; font-size: 15px;
    padding: 4px;
}
.profil-eye:hover { color: var(--fty-orange); }
.profil-flash { padding: 14px 18px; border-radius: 12px; font-weight: 600; font-size: 14px; }
.profil-flash-success { background: rgba(37,165,80,.1); color: #25a550; border: 1px solid rgba(37,165,80,.2); }
.profil-flash-danger { background: rgba(220,53,69,.1); color: #dc3545; border: 1px solid rgba(220,53,69,.2); }

/* ============================================================
   ADMIN — commande status badges (partagés boutique front)
============================================================ */
.commande-status { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.commande-status-warning  { background: rgba(245,158,11,.12); color: #b45309; }
.commande-status-blue     { background: rgba(21,101,192,.12);  color: #1565C0; }
.commande-status-info     { background: rgba(14,165,233,.12);  color: #0284c7; }
.commande-status-purple   { background: rgba(139,92,246,.12);  color: #7c3aed; }
.commande-status-success  { background: rgba(37,165,80,.12);   color: #25a550; }
.commande-status-danger   { background: rgba(220,53,69,.12);   color: #dc3545; }
/* ╔══════════════════════════════════════════════════════════════╗
   ║  MOBILE-FIRST COMPREHENSIVE IMPROVEMENTS v2                 ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── 1. Announcement bar : plus compact sur mobile ──────── */
@media (max-width: 575px) {
    :root { --announce-h: 28px; }
    .announcement-bar { height: 28px; }
    .marquee-content { gap: 0; }
    .marquee-content span { font-size: 10.5px; }
}

/* ── 2. Navbar mobile : menu déroulant bien affiché ─────── */
@media (max-width: 991px) {
    /* Panneau déroulant : fond sombre, ombre, bien calé */
    .fty-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #0b0f1e;
        border-top: 1px solid rgba(255,255,255,.07);
        border-bottom: 2px solid rgba(255,107,26,.3);
        box-shadow: 0 12px 32px rgba(0,0,0,.55);
        padding: 10px 16px 16px;
        z-index: 999;
        max-height: calc(100svh - var(--navbar-h));
        overflow-y: auto;
    }
    /* Liens de navigation : touch targets 44px, séparateurs */
    .fty-navbar .navbar-nav .nav-link {
        min-height: 44px !important;
        padding: 10px 14px !important;
        font-size: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,.06);
        border-radius: 0 !important;
        display: flex;
        align-items: center;
    }
    .fty-navbar .navbar-nav .nav-item:last-child .nav-link { border-bottom: none; }
    .fty-navbar .navbar-nav .nav-link.active::after { display: none; }
    /* Dropdown Boutique : ouvre inline dans le panneau */
    .fty-navbar .dropdown-menu.fty-dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none;
        border-left: 3px solid rgba(255,107,26,.4);
        border-radius: 0 !important;
        margin: 0 0 4px 14px !important;
        padding: 4px 0;
        background: rgba(255,255,255,.04);
    }
    .fty-navbar .dropdown-menu.fty-dropdown .dropdown-item {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13.5px;
        border-radius: 0;
    }
    .fty-navbar .dropdown-menu.fty-dropdown .dropdown-divider { margin: 4px 0; }
    /* Caret du dropdown : toujours visible */
    .fty-navbar .nav-link.dropdown-toggle::after { opacity: .6; }
}

/* ── Réseaux sociaux dans le menu mobile ──── */
.nav-mobile-socials {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 10px;
    padding: 14px 4px 4px;
}
.nav-mobile-socials-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin: 0 0 10px 4px;
}
.nav-mobile-socials-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nav-mobile-social-btn {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.nav-mobile-social-btn:hover,
.nav-mobile-social-btn:active {
    background: rgba(255,255,255,.13);
    transform: scale(1.08);
}

/* ── Bloc compte dans le menu hamburger ──── */
.nav-mobile-account {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 6px;
    padding-top: 12px;
}
.nav-mobile-account-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 4px;
}
.nav-mobile-account-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--fty-orange);
    color: #fff;
    font-weight: 900;
    font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-mobile-account-head > div {
    display: flex; flex-direction: column; gap: 2px;
    overflow: hidden;
}
.nav-mobile-account-head strong {
    font-size: 14px; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-mobile-account-head small {
    font-size: 11.5px; color: rgba(255,255,255,.4);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-mobile-account-links {
    display: flex;
    flex-direction: column;
}
.nav-mobile-account-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .15s, background .15s;
    border-radius: 6px;
}
.nav-mobile-account-links a:last-child { border-bottom: none; }
.nav-mobile-account-links a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
    color: var(--fty-orange);
}
.nav-mobile-account-links a:hover,
.nav-mobile-account-links a:active {
    color: #fff;
    background: rgba(255,255,255,.06);
}
.nav-mobile-account-links a.nav-mobile-logout,
.nav-mobile-account-links a.nav-mobile-logout i { color: #e74c3c !important; }
.nav-mobile-account-links a.nav-mobile-logout:hover { background: rgba(231,76,60,.08); }

@media (max-width: 575px) {
    .fty-navbar .container-xl { padding: 0 12px; }
    .navbar-logo { height: 42px !important; }
}

/* ── 3. Hero — améliorations mobiles ────────────────────── */
@media (max-width: 767px) {
    /* Rend le sous-titre lisible sur tablette/mobile */
    .hero-subtitle {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .hero-actions { gap: 10px; flex-wrap: wrap; }
    .hero-actions .fty-btn-primary,
    .hero-actions .fty-btn-ghost {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 140px;
    }
}
@media (max-width: 480px) {
    .hero-subtitle { display: none !important; }
    .hero-title { font-size: clamp(1.55rem, 7.5vw, 2.2rem) !important; }
    .hero-badge { font-size: 9.5px; padding: 4px 12px; letter-spacing: 0.8px; }
    .hero-content { padding-bottom: 72px; }
    .hero-price-amount { font-size: clamp(1.4rem, 7vw, 2rem) !important; }
    .hero-product-price { margin-bottom: 16px; }
    .hero-actions .fty-btn-primary,
    .hero-actions .fty-btn-ghost { padding: 11px 16px; font-size: 13px; }
    .hero-actions .fty-btn-ghost { display: none; } /* 1 seul CTA sur très petit écran */
    .hero-dot { width: 6px; height: 6px; }
    .hero-dot.active { width: 20px; }
}

/* ── 4. Catégories — boutons toujours visibles sur touch ── */
@media (hover: none), (max-width: 991px) {
    .cat-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
        font-size: 11.5px;
        padding: 5px 12px;
    }
}
@media (max-width: 575px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 10px;
    }
    .cat-card-large { grid-column: span 2 !important; height: 180px !important; }
    .cat-card { height: 155px !important; }
    .cat-content { padding: 12px 14px; }
    .cat-content h3 { font-size: 13.5px !important; }
    .cat-content span { display: none; }
    .cat-icon { font-size: 18px; margin-bottom: 5px; }
}
@media (max-width: 360px) {
    .cat-card-large { height: 145px !important; }
    .cat-card { height: 130px !important; }
}

/* ── 5. Cartes produits — actions visibles sur touch ─────── */
@media (hover: none), (max-width: 991px) {
    /* Réaffiche les actions toujours visibles en bas de l'image */
    .product-actions {
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        top: auto !important;
        left: 0 !important;
        transform: none !important;
        flex-direction: row;
        justify-content: flex-end;
        gap: 6px;
        padding: 6px 8px;
        background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
    }
    .paction-btn { width: 32px; height: 32px; font-size: 13px; }
    /* Empêche le card hover transform agressif sur touch */
    .product-card:hover { transform: none; }
}
@media (max-width: 575px) {
    .product-card { border-radius: 12px; }
    .product-info { padding: 10px 11px 12px; }
    .product-name { font-size: 12.5px; line-height: 1.35; }
    .price-current { font-size: 13.5px; font-weight: 800; }
    .price-old { font-size: 11px; }
    .product-cat { font-size: 10px; }
}

/* ── 6. Espacement général sections sur mobile ───────────── */
@media (max-width: 575px) {
    .categories-section,
    .products-section,
    .new-arrivals-section,
    .why-section,
    .gallery-section { padding: 52px 0; }
    .section-title { font-size: clamp(1.1rem, 5.5vw, 1.65rem) !important; }
    .section-sub { font-size: 13px; }
    .section-header { margin-bottom: 28px !important; }
}

/* ── 7. Boutique sidebar — tiroir collapsible mobile ──────── */
/* Toggle bouton */
.boutique-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e0e0e4;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.boutique-filter-btn:hover,
.boutique-filter-btn.open { border-color: var(--fty-orange); color: var(--fty-orange); }
.boutique-filter-dot {
    width: 8px; height: 8px;
    background: var(--fty-orange);
    border-radius: 50%;
    flex-shrink: 0;
}
/* Sidebar collapse sur mobile */
@media (max-width: 991px) {
    .boutique-sidebar {
        position: static !important;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 0;
    }
    .boutique-sidebar.open {
        max-height: 1400px;
        margin-bottom: 8px;
    }
}

/* ── 8. Boutique toolbar mobile ─────────────────────────── */
@media (max-width: 575px) {
    .boutique-toolbar { gap: 8px; }
    .toolbar-sort-select { font-size: 13px; padding: 8px 12px; max-width: 100%; flex: 1; }
    .boutique-main-title { font-size: 1rem !important; }
    .boutique-sub { font-size: 12.5px; margin-top: 2px; }
}

/* ── 9. Panier — améliorations mobiles ──────────────────── */
@media (max-width: 575px) {
    .cart-section { padding: 20px 0 48px; }
    .cart-item { gap: 10px; padding: 14px 12px; }
    .cart-item-img { width: 68px; height: 68px; border-radius: 8px; flex-shrink: 0; }
    .cart-item-img img { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; }
    .cart-item-name { font-size: 13px; line-height: 1.3; }
    .cart-item-cat { font-size: 11px; }
    .cart-item-price { font-size: 14px; }
    .cart-item-controls { padding-top: 6px; }
    .qty-control { height: 34px; }
    .qty-btn { width: 30px; height: 30px; font-size: 11px; }
    .qty-val { min-width: 30px; font-size: 14px; }
    .cart-remove-btn { width: 34px; height: 34px; font-size: 13px; }
    .cart-actions-bar { flex-direction: column; gap: 8px; }
    .cart-actions-bar .btn,
    .cart-actions-bar button { width: 100%; justify-content: center; }
    .cart-summary { padding: 16px 14px; }
    .cart-summary-title { font-size: 15px; }
    .zone-btn { padding: 7px 4px; font-size: 11.5px; }
}

/* ── 10. Page produit — galerie & infos mobile ───────────── */
@media (max-width: 767px) {
    .produit-thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .produit-thumbs::-webkit-scrollbar { display: none; }
    .produit-thumb { flex-shrink: 0; width: 56px; height: 56px; }
}
@media (max-width: 575px) {
    .produit-section { padding: 20px 0 36px; }
    .produit-info-block { padding: 0; }
    .produit-title { font-size: 1.05rem !important; line-height: 1.3; }
    .produit-price-main { font-size: 1.4rem !important; }
    .produit-cat-badge { flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
    .produit-delivery { gap: 6px; }
    .delivery-chip { flex: 1 1 calc(50% - 3px); min-width: 0; padding: 7px 10px; }
    .delivery-chip strong { font-size: 11.5px; }
    .delivery-chip span { font-size: 10px; }
    .produit-cta { gap: 8px; }
    .produit-btn-cart,
    .produit-btn-wa { padding: 11px 16px; font-size: 13.5px; }
    .produit-desc-full { padding: 14px 12px; }
}
@media (max-width: 380px) {
    .delivery-chip { flex: 1 1 100%; }
    .produit-pay-list .pay-badge { font-size: 11px; padding: 4px 8px; }
}

/* ── 11. Pages auth (login / register) mobile ────────────── */
@media (max-width: 700px) {
    .auth-section { padding: 0; min-height: 100svh; }
    .auth-box {
        border-radius: 0;
        box-shadow: none;
        min-height: 100svh;
        align-items: flex-start;
    }
    .auth-form-panel { padding: 36px 20px 48px; }
    .auth-title { font-size: 1.25rem; }
    .auth-sub { font-size: 13px; }
    .auth-submit { height: 48px; font-size: 15px; }
    .auth-wa-btn { font-size: 14px; height: 48px; }
}
@media (max-width: 380px) {
    .auth-form-panel { padding: 28px 16px 40px; }
    .auth-field { gap: 4px; }
    .auth-form { gap: 12px; }
}

/* ── 12. Footer — compact sur mobile ────────────────────── */
@media (max-width: 575px) {
    .footer-top { padding: 40px 0 28px; }
    .footer-logo { height: 36px; margin-bottom: 12px; }
    .footer-desc { font-size: 13px; max-width: 100%; margin-bottom: 16px; }
    .footer-social a { width: 36px; height: 36px; font-size: 15px; }
    .footer-title { font-size: 11px; margin-bottom: 10px; }
    .footer-links li a { font-size: 13px; }
    .footer-links { gap: 8px; }
    .footer-whatsapp-btn { padding: 12px 13px; gap: 10px; }
    .footer-wa-icon { font-size: 22px; }
    .footer-whatsapp-btn strong { font-size: 13.5px; }
    .footer-bottom { padding: 14px 0; }
    .footer-bottom p { font-size: 12px; }
    .pay-badge { font-size: 11.5px; padding: 4px 9px; }
}

/* ── 13. Chatbot + back-to-top sur mobile ────────────────── */
@media (max-width: 575px) {
    .back-to-top { bottom: 82px; right: 14px; width: 40px; height: 40px; }
    .ftychat { bottom: 14px; right: 12px; }
    .ftychat-trigger { width: 48px; height: 48px; }
    .ftychat-trigger-label { display: none !important; }
}

/* ── 14. Collection / nouvelles arrivées mobile ──────────── */
@media (max-width: 575px) {
    .product-card-v2 { border-radius: 12px; }
    .new-arrivals-section .product-info { padding: 10px 12px 12px; }
}

/* ── 15. Favoris publique (boutique) mobile ──────────────── */
@media (max-width: 575px) {
    .fav-card-body { padding: 10px 12px; }
    .fav-card-name { font-size: 13px; }
    .fav-card-price { font-size: 14px; }
    .fav-card-actions { gap: 6px; }
}

/* ── 16. Section boutique header mobile ──────────────────── */
@media (max-width: 575px) {
    .boutique-header { padding: 16px 0 12px; }
    .boutique-header .container-xl { padding: 0 12px; }
    .boutique-header .mb-2 { margin-bottom: 6px !important; }
    .boutique-title-row { margin-top: 4px !important; }
}

/* ── 17. Cibles tactiles : taille minimale 44px ──────────── */
@media (max-width: 991px) {
    .nav-icon-btn {
        min-width: 44px; min-height: 44px;
        display: inline-flex !important;
        align-items: center; justify-content: center;
        color: #fff !important;
        font-size: 18px;
    }
    /* Icône WhatsApp : garde son vert */
    .nav-icon-btn[style*="25D366"] { color: #25D366 !important; }
    .sidebar-cat-item, .sidebar-sort-item { padding: 10px 12px; min-height: 44px; }
    .navbar-toggler { min-width: 44px; min-height: 44px; }
    .btn-fav:active, .paction-btn:active { opacity: 0.75; }
    /* Barres du toggler : bien blanches */
    .toggler-bar { background: #fff; }
}

/* ── 18. Grille produits très petits écrans ──────────────── */
@media (max-width: 350px) {
    .col-6 { width: 100% !important; }
    .product-card { border-radius: 10px; }
}

/* ── 19. Section "Pourquoi FTY" mobile ───────────────────── */
@media (max-width: 575px) {
    .why-card { padding: 20px 16px; border-radius: 12px; }
    .why-icon { width: 48px; height: 48px; font-size: 1.3rem; }
}

/* ── 20. Promo banner mobile ─────────────────────────────── */
@media (max-width: 575px) {
    .promo-banner { padding: 52px 0; }
    .promo-title { font-size: clamp(1.1rem, 5.5vw, 1.6rem) !important; }
    .promo-methods { grid-template-columns: 1fr 1fr; gap: 8px; }
    .method-card { padding: 14px 10px; border-radius: 10px; }
}

/* ── 21. Newsletter section mobile (footer) ──────────────── */
@media (max-width: 575px) {
    .footer-newsletter { padding: 32px 0; }
    .fty-newsletter-wrap { gap: 18px; flex-direction: column; }
    .fty-nl-title { font-size: 1.15rem; }
    .fty-nl-sub { font-size: 13px; }
    .fty-nl-form { flex-direction: column; gap: 10px; }
    .fty-nl-input { padding: 12px 14px; font-size: 14px; }
    .fty-nl-btn { padding: 12px 20px; font-size: 14px; justify-content: center; display: flex; }
}

/* ── 22. Accueil mobile plein écran (anti-décalage) ─────── */
@media (max-width: 575px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .home-page .container-xl {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-page .categories-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .home-page .cat-card,
    .home-page .cat-card-large {
        grid-column: span 1 !important;
        height: 170px !important;
    }

    .home-page .new-arrivals-section .col-6 {
        width: 100% !important;
    }
}