/* ============================================
   HONOR.SN — Charte Graphique Officielle
   Inspiré de honor.com/mea
   Police : Inter (proche de HarmonyOS Sans)
   Couleurs : Blanc, Noir, Rouge #CC0A2C
   Philosophie : Minimaliste, Premium, Aéré
============================================ */

/* ======================================
   VARIABLES — Design System Honor
====================================== */
:root {
    /* Backgrounds */
    --bg-white:      #FFFFFF;
    --bg-light:      #F5F5F5;
    --bg-lighter:    #FAFAFA;
    --bg-dark:       #0D0D0D;
    --bg-dark-2:     #1A1A1A;

    /* Textes */
    --text-black:    #0D0D0D;
    --text-dark:     #1A1A1A;
    --text-medium:   #444444;
    --text-light:    #666666;
    --text-muted:    #999999;
    --text-white:    #FFFFFF;

    /* Couleurs Brand Honor */
    --red:           #CC0A2C;   /* Rouge officiel Honor */
    --red-dark:      #A30823;
    --red-light:     #FFF0F2;
    --black:         #000000;
    --white:         #FFFFFF;

    /* Bordures */
    --border:        #E8E8E8;
    --border-dark:   #D0D0D0;

    /* Ombres — très légères, style Honor */
    --shadow-xs:     0 1px 4px rgba(0,0,0,0.06);
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.12);

    /* Rayons — Honor utilise des coins plus droits */
    --radius-xs:     4px;
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     16px;
    --radius-pill:   100px;

    /* Transitions */
    --ease:          cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition:    all 0.25s var(--ease);
    --transition-md: all 0.4s var(--ease);

    /* Typographie */
    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height:    64px;
}

/* ======================================
   RESET & BASE
====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 600;
    color: var(--text-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.section-padding { padding: 80px 0; }
.bg-light-section { background: var(--bg-light); }

/* ======================================
   ANNOUNCEMENT BAR — comme honor.com
====================================== */
.announcement-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.announcement-bar .separator { opacity: 0.4; margin: 0 8px; }
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ======================================
   NAVBAR — style honor.com : blanc, épuré
====================================== */
#mainNav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    z-index: 1000;
    transition: var(--transition);
}
#mainNav .container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand - Logo style Honor */
.navbar-brand { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.brand-icon {
    width: 32px; height: 32px;
    background: var(--black);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px; color: var(--white);
    letter-spacing: -1px;
    margin-right: 10px;
}
.brand-text {
    font-family: var(--font);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-black);
    letter-spacing: -0.03em;
}
.brand-tld { color: var(--red); }

/* Search */
.navbar-search { flex: 1; max-width: 440px; }
.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.search-wrapper:focus-within {
    background: var(--white);
    border-color: var(--text-black);
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-dark);
    padding: 10px 16px;
    font-size: 14px;
    font-family: var(--font);
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
    background: var(--black);
    border: none;
    color: var(--white);
    padding: 10px 16px;
    font-size: 13px;
    transition: var(--transition);
}
.search-btn:hover { background: var(--red); }

/* Nav actions */
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.nav-action-btn {
    position: relative;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}
.nav-action-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    width: 18px; height: 18px;
    background: var(--red);
    border-radius: 50%;
    font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    border: 2px solid var(--white);
}

/* Catégories nav */
.categories-nav {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}
.categories-list {
    list-style: none;
    display: flex; align-items: center;
    margin: 0; padding: 0;
    overflow-x: auto;
    gap: 0;
}
.categories-list li a {
    display: block;
    padding: 11px 20px;
    color: var(--text-medium);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.categories-list li a:hover {
    color: var(--text-black);
    border-bottom-color: var(--black);
}

/* Mobile toggler */
.navbar-toggler {
    background: transparent; border: none;
    display: flex; flex-direction: column; gap: 5px;
    padding: 4px; cursor: pointer;
}
.toggler-icon {
    display: block; width: 22px; height: 2px;
    background: var(--text-dark); border-radius: 1px; transition: var(--transition);
}
.offcanvas { background: var(--white); width: 300px !important; }
.offcanvas-header { border-bottom: 1px solid var(--border); }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 8px; color: var(--text-medium);
    font-weight: 500; font-size: 15px;
    border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--text-black); background: var(--bg-light); }

/* Messages */
.messages-container { position: fixed; top: 80px; right: 20px; z-index: 9999; width: 340px; }
.custom-alert {
    background: var(--white); border: 1px solid var(--border);
    color: var(--text-dark); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}
.custom-alert.alert-success { border-left: 3px solid #16A34A; }
.custom-alert.alert-error   { border-left: 3px solid var(--red); }

/* ======================================
   BOUTONS HONOR — style officiel
====================================== */
/* Bouton noir (CTA principal) */
.btn-honor-black {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid var(--black);
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer; text-decoration: none;
}
.btn-honor-black:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Bouton contour blanc */
.btn-honor-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 28px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    transition: var(--transition);
    cursor: pointer; text-decoration: none;
}
.btn-honor-outline:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* Bouton "En savoir plus" — texte seul avec flèche */
.btn-learn-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-dark);
    font-size: 14px; font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: var(--transition);
}
.btn-learn-more:hover { color: var(--red); }
.btn-learn-more i { font-size: 11px; transition: var(--transition); }
.btn-learn-more:hover i { transform: translateX(3px); }

/* ======================================
   HERO SECTION
====================================== */
.hero-section { position: relative; overflow: hidden; }
.hero-swiper { width: 100%; }
.hero-slide {
    min-height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center;
    position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 20px;
}
/* Badge "NEW" style honor.com */
.hero-badge { background: var(--red); }

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--text-black);
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--white);
}
.btn-hero:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* Hero Swiper controls */
.hero-next, .hero-prev {
    width: 44px !important; height: 44px !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50%;
    color: var(--text-dark) !important;
    box-shadow: var(--shadow-sm);
    border: none !important;
    transition: var(--transition) !important;
}
.hero-next:hover, .hero-prev:hover { background: var(--white) !important; }
.hero-next:after, .hero-prev:after { display: none !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; width: 6px !important; height: 6px !important; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--white) !important; width: 20px !important; border-radius: 3px !important; }

/* Hero défaut (sans bannière) — fond light comme honor.com */
.hero-default {
    background: var(--bg-light);
    padding: 80px 0 100px;
    position: relative; overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}
.min-vh-80 { min-height: 75vh; }
.hero-default .hero-title { color: var(--text-black); }
.hero-default .hero-subtitle { color: var(--text-medium); }

/* Illustration Hero */
.hero-illustration { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-phone-mockup {
    width: 190px; height: 350px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 32px;
    display: flex; align-items: center; justify-content: center;
    font-size: 72px; color: var(--text-medium);
    position: relative; z-index: 2;
    box-shadow: var(--shadow-lg);
}
.hero-floating-card {
    position: absolute; background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}
.card-1 { top: 60px; right: 0; animation-delay: 0s; }
.card-2 { bottom: 100px; left: 20px; animation-delay: 1.2s; }
.card-3 { top: 50%; right: 10px; animation-delay: 2.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ======================================
   TRUST BAR — bande confiance comme honor.com
====================================== */
.trust-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px;
    border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
    width: 40px; height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 16px; flex-shrink: 0;
}
.trust-content h6 { font-size: 13px; font-weight: 600; margin: 0; color: var(--text-dark); }
.trust-content p  { font-size: 11.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-bottom: 1px solid var(--border); }
}

/* ======================================
   SECTION HEADER — style honor.com
====================================== */
.section-header { margin-bottom: 40px; }
.section-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--red); margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; margin: 0;
    letter-spacing: -0.03em;
    color: var(--text-black);
}
.btn-link-accent {
    color: var(--text-medium); font-weight: 500; font-size: 13.5px;
    display: flex; align-items: center; gap: 5px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px; white-space: nowrap;
    transition: var(--transition);
}
.btn-link-accent:hover { color: var(--text-black); border-color: var(--text-black); }

/* Séparateur section */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ======================================
   CATEGORIES GRID
====================================== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.category-card {
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    transition: var(--transition);
    cursor: pointer; position: relative;
}
.category-card:hover {
    background: var(--white);
    border-color: var(--border-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.category-icon {
    width: 52px; height: 52px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--text-dark);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.category-card:hover .category-icon { border-color: var(--black); color: var(--black); }
.category-name { font-size: 13px; font-weight: 600; margin: 0; color: var(--text-dark); }
.category-arrow {
    position: absolute; bottom: 12px; right: 12px;
    font-size: 10px; color: var(--red);
    opacity: 0; transform: translateX(-4px); transition: var(--transition);
}
.category-card:hover .category-arrow { opacity: 1; transform: translateX(0); }

/* ======================================
   PRODUCT CARD — minimaliste style honor.com
====================================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-md);
    height: 100%; display: flex; flex-direction: column;
    position: relative;
}
.product-card:hover {
    border-color: var(--border-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Badges */
.product-badges { position: absolute; top: 10px; left: 10px; z-index: 3; display: flex; flex-direction: column; gap: 4px; }
.badge-new {
    background: var(--red); color: var(--white);
    font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
    padding: 2px 8px; border-radius: var(--radius-xs);
    display: inline-block; text-transform: uppercase;
}
.badge-promo {
    background: var(--text-black); color: var(--white);
    font-size: 10px; font-weight: 600;
    padding: 2px 8px; border-radius: var(--radius-xs);
    display: inline-block;
}
.badge-out {
    background: var(--bg-light); color: var(--text-muted);
    font-size: 10px; font-weight: 500;
    padding: 2px 8px; border-radius: var(--radius-xs);
}

.product-img-link { display: block; }
.product-img-wrapper {
    position: relative; aspect-ratio: 1;
    background: var(--bg-light); overflow: hidden;
}
.product-img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 20px;
    transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px; color: var(--text-muted); opacity: 0.3;
}
.product-img-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.quick-view-btn {
    background: var(--white); color: var(--text-dark);
    border: 1px solid var(--border-dark);
    padding: 9px 18px; border-radius: var(--radius-pill);
    font-size: 12.5px; font-weight: 500;
    transform: translateY(8px); transition: var(--transition);
}
.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 500; margin-bottom: 8px; flex: 1; line-height: 1.4; }
.product-name a { color: var(--text-dark); }
.product-name a:hover { color: var(--text-black); }
.product-specs { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.product-specs span {
    font-size: 11px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2px 7px; border-radius: var(--radius-xs);
    color: var(--text-light); font-weight: 500;
}
.product-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: auto; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.product-price { display: flex; flex-direction: column; gap: 1px; }
.current-price {
    font-size: 15px; font-weight: 700;
    color: var(--text-black);
    letter-spacing: -0.02em;
}
.original-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.btn-add-cart {
    width: 36px; height: 36px;
    background: var(--black);
    border: none; border-radius: var(--radius-sm);
    color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; transition: var(--transition); flex-shrink: 0;
}
.btn-add-cart:hover { background: var(--red); }
.out-of-stock-btn {
    width: 36px; height: 36px;
    background: var(--bg-light); border-radius: var(--radius-sm);
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
}

/* Products Swiper arrows */
.products-swiper { padding: 6px 4px !important; }
.product-next, .product-prev {
    width: 40px !important; height: 40px !important;
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50%; color: var(--text-dark) !important;
    box-shadow: var(--shadow-sm); top: -56px !important;
    transition: var(--transition) !important;
}
.product-next { right: 0 !important; }
.product-prev { right: 48px !important; left: auto !important; }
.product-next:after, .product-prev:after { display: none !important; }
.product-next i, .product-prev i { font-size: 12px; }
.product-next:hover, .product-prev:hover { background: var(--black) !important; border-color: var(--black) !important; color: var(--white) !important; }

/* ======================================
   PROMO SECTION
====================================== */
.promo-banner {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative; overflow: hidden;
}
.promo-bg-pattern { display: none; }
.promo-tag {
    display: inline-block;
    background: var(--red); color: var(--white);
    padding: 4px 14px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 14px;
}
.promo-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.03em; }
.promo-subtitle { color: var(--text-medium); font-size: 15px; margin-bottom: 28px; }
.btn-promo {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: var(--white);
    padding: 12px 28px; border-radius: var(--radius-pill);
    font-weight: 500; font-size: 14px; transition: var(--transition);
    border: 1px solid var(--black);
}
.btn-promo:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.promo-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.promo-product-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px;
    display: flex; gap: 10px; align-items: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.promo-product-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.promo-discount-badge { position: absolute; top: 6px; right: 6px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: var(--radius-xs); }
.promo-product-img { width: 56px; height: 56px; flex-shrink: 0; background: var(--bg-light); border-radius: var(--radius-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.promo-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.promo-product-info h6 { font-size: 12px; font-weight: 500; margin-bottom: 5px; color: var(--text-dark); }
.promo-prices { display: flex; flex-direction: column; gap: 1px; }
.new-price { font-size: 13px; font-weight: 700; color: var(--text-black); }
.old-price { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }

/* ======================================
   BRANDS
====================================== */
.brands-slider { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.brand-item {
    background: var(--bg-light); border: 1px solid transparent;
    border-radius: var(--radius-sm); padding: 16px 24px;
    display: flex; align-items: center; justify-content: center;
    min-width: 110px; transition: var(--transition);
}
.brand-item:hover { background: var(--white); border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.brand-logo { max-height: 36px; max-width: 90px; object-fit: contain; filter: grayscale(100%); opacity: 0.45; transition: var(--transition); }
.brand-item:hover .brand-logo { filter: none; opacity: 1; }
.brand-name-text { font-weight: 700; font-size: 15px; color: var(--text-muted); letter-spacing: -0.02em; }
.brand-item:hover .brand-name-text { color: var(--text-black); }

/* ======================================
   STATS — fond noir style honor.com
====================================== */
.stats-section { background: var(--black); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 48px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); display: inline; letter-spacing: -0.04em; }
.stat-plus { font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.5); }
.stat-label { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 8px; font-weight: 400; }
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
}

/* ======================================
   NEWSLETTER
====================================== */
.newsletter-section { padding: 80px 0; background: var(--bg-light); }
.newsletter-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative; overflow: hidden;
}
.newsletter-decoration { display: none; }
.nd-circle { display: none; }
.newsletter-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.03em; }
.newsletter-subtitle { color: var(--text-medium); font-size: 15px; }
.newsletter-form-big { position: relative; }
.newsletter-input-big {
    display: flex;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: var(--transition);
    max-width: 480px;
}
.newsletter-input-big:focus-within { border-color: var(--text-black); background: var(--white); }
.newsletter-input-big input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 14px 20px; color: var(--text-dark);
    font-family: var(--font); font-size: 14px;
}
.newsletter-input-big input::placeholder { color: var(--text-muted); }
.newsletter-input-big button {
    background: var(--black); border: none; color: var(--white);
    padding: 14px 24px; font-weight: 500; font-size: 14px;
    cursor: pointer; white-space: nowrap; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}
.newsletter-input-big button:hover { background: var(--red); }
.newsletter-privacy { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ======================================
   FOOTER — fond très sombre comme honor.com
====================================== */
.site-footer { background: var(--bg-dark); border-top: none; }
.footer-top { padding: 60px 0; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo .brand-text { color: var(--white); font-size: 18px; }
.footer-logo .brand-tld { color: var(--red); }
.footer-desc { color: #6B6B6B; font-size: 13.5px; line-height: 1.8; margin-bottom: 22px; max-width: 280px; }
.social-links { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #6B6B6B; font-size: 14px; transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-title { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #6B6B6B; font-size: 13.5px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-newsletter-text { color: #6B6B6B; font-size: 13.5px; margin-bottom: 12px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; color: #6B6B6B; font-size: 13px; }
.footer-contact-item i { color: var(--red); width: 14px; }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: #444444; font-size: 12.5px;
}
.payment-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); padding: 3px 8px; border-radius: var(--radius-xs); font-size: 10.5px; font-weight: 600; color: #555; }
.payment-methods { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* ======================================
   PAGE HEADER — minimaliste
====================================== */
.page-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 36px 0 28px;
}
.page-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0; letter-spacing: -0.03em; }
.page-subtitle { color: var(--text-medium); margin-top: 6px; margin-bottom: 0; font-size: 15px; }
.custom-breadcrumb { background: transparent; padding: 0; margin-bottom: 8px; }
.custom-breadcrumb .breadcrumb-item a { color: var(--text-muted); font-size: 13px; }
.custom-breadcrumb .breadcrumb-item.active { color: var(--text-muted); font-size: 13px; }
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ======================================
   FILTER SIDEBAR
====================================== */
.filter-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.filter-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); background: var(--bg-light); }
.filter-header h5 { margin: 0; font-size: 14px; font-weight: 600; }
.filter-reset { font-size: 13px; color: var(--red); font-weight: 500; }
.filter-reset:hover { color: var(--red-dark); }
.filter-group { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 12px; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--text-medium); font-size: 13.5px; }
.filter-checkbox input { accent-color: var(--black); width: 14px; height: 14px; cursor: pointer; }
.filter-checkbox:hover { color: var(--text-black); }
.price-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-input { flex: 1; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-dark); padding: 8px 12px; font-size: 13px; outline: none; width: 100%; font-family: var(--font); }
.price-input:focus { border-color: var(--text-black); background: var(--white); }
.price-separator { color: var(--text-muted); flex-shrink: 0; }
.btn-filter-apply { width: 100%; background: var(--black); color: var(--white); border: none; padding: 10px; border-radius: var(--radius-sm); font-weight: 500; font-size: 13.5px; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.btn-filter-apply:hover { background: var(--red); }

/* ======================================
   TOOLBAR
====================================== */
.products-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding: 12px 18px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.products-count { margin: 0; color: var(--text-medium); font-size: 13.5px; }
.products-count strong { color: var(--text-black); }
.sort-select { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-dark); padding: 7px 14px; font-size: 13px; outline: none; cursor: pointer; font-family: var(--font); }
.sort-select:focus { border-color: var(--text-black); }

/* ======================================
   PAGINATION
====================================== */
.pagination-wrapper { display: flex; justify-content: center; margin-top: 44px; }
.custom-pagination { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0; }
.page-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-medium); font-size: 13.5px; font-weight: 500;
    transition: var(--transition);
}
.page-btn:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.page-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* ======================================
   EMPTY STATE
====================================== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 56px; color: var(--text-muted); margin-bottom: 20px; opacity: 0.25; }
.empty-state h4 { margin-bottom: 10px; }
.empty-state p { color: var(--text-medium); margin-bottom: 28px; }

/* ======================================
   BOUTONS GÉNÉRIQUES
====================================== */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--black); color: var(--white);
    padding: 12px 28px; border-radius: var(--radius-pill);
    font-weight: 500; font-size: 14px;
    border: 1px solid var(--black); cursor: pointer;
    transition: var(--transition); text-decoration: none;
}
.btn-primary-custom:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-dark);
    padding: 12px 28px; border-radius: var(--radius-pill);
    font-weight: 500; font-size: 14px;
    border: 1px solid var(--border-dark); cursor: pointer;
    transition: var(--transition); text-decoration: none;
}
.btn-outline-custom:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* ======================================
   PRODUCT DETAIL
====================================== */
.product-gallery { position: sticky; top: 90px; }
.main-image-wrapper {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; margin-bottom: 10px;
}
.main-image { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.main-image img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.gallery-badge { position: absolute; top: 10px; left: 10px; }
.thumbnail-gallery { display: flex; gap: 8px; }
.thumbnail {
    width: 68px; height: 68px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer; transition: var(--transition);
}
.thumbnail.active, .thumbnail:hover { border-color: var(--text-black); }
.thumbnail img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.product-detail-info { padding: 4px 0; }
.detail-brand { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); }
.detail-title { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 700; margin: 8px 0 14px; letter-spacing: -0.03em; }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { display: flex; gap: 2px; }
.stars .fa-star { color: #DDDDDD; font-size: 13px; }
.stars .fa-star.filled { color: #F59E0B; }
.rating-count { color: var(--text-medium); font-size: 13.5px; }
.detail-price-block { margin-bottom: 14px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.detail-current-price { font-size: 1.9rem; font-weight: 800; color: var(--text-black); letter-spacing: -0.04em; }
.detail-old-price { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.detail-savings {
    display: inline-block;
    background: var(--red-light); color: var(--red);
    border: 1px solid rgba(204,10,44,0.15);
    padding: 2px 8px; border-radius: var(--radius-xs);
    font-size: 11.5px; font-weight: 600;
}
.stock-badge { font-size: 13px; font-weight: 500; }
.stock-badge.in-stock  { color: #16A34A; }
.stock-badge.out-of-stock { color: var(--red); }
.detail-short-desc { color: var(--text-medium); font-size: 14.5px; margin: 18px 0; line-height: 1.8; }
.detail-stock { margin-bottom: 14px; }

.detail-cart-form { display: flex; gap: 10px; align-items: center; margin: 22px 0; }
.quantity-selector {
    display: flex; align-items: center;
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
    width: 36px; height: 36px; background: transparent;
    border: none; color: var(--text-dark); cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--black); color: var(--white); }
.qty-input { width: 46px; height: 36px; background: transparent; border: none; outline: none; text-align: center; color: var(--text-dark); font-weight: 600; font-size: 14px; font-family: var(--font); }
.btn-add-to-cart-big {
    flex: 1; background: var(--black); border: none;
    color: var(--white); padding: 13px 22px;
    border-radius: var(--radius-sm); font-weight: 500; font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--transition); font-family: var(--font);
}
.btn-add-to-cart-big:hover { background: var(--red); }
.btn-buy-now {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--bg-light);
    border: 1px solid var(--border-dark); color: var(--text-dark);
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-weight: 500; font-size: 15px; cursor: pointer;
    transition: var(--transition); text-decoration: none; margin-bottom: 22px;
    font-family: var(--font);
}
.btn-buy-now:hover { background: var(--text-black); color: var(--white); border-color: var(--text-black); }
.detail-trust {
    display: flex; gap: 16px; flex-wrap: wrap;
    padding: 16px 18px; background: var(--bg-light);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 18px;
}
.trust-badge-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-medium); }
.trust-badge-item i { color: #16A34A; }
.detail-share { display: flex; align-items: center; gap: 10px; }
.detail-share span { font-size: 13.5px; color: var(--text-medium); font-weight: 500; }
.share-btn { width: 34px; height: 34px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; transition: var(--transition); }
.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn:hover { opacity: 0.85; }

/* Tabs */
.custom-tabs { display: flex; border-bottom: 1px solid var(--border); list-style: none; padding: 0; margin-bottom: 0; }
.custom-tab { background: transparent; border: none; color: var(--text-medium); padding: 14px 22px; font-size: 14px; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; transition: var(--transition); font-family: var(--font); }
.custom-tab.active { color: var(--text-black); border-bottom-color: var(--black); }
.custom-tab:hover { color: var(--text-black); }
.product-tab-content { background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 28px; }
.product-description { color: var(--text-medium); line-height: 1.9; font-size: 14.5px; }
.specs-table { display: flex; flex-direction: column; }
.spec-row { display: flex; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: none; }
.spec-label { width: 150px; font-weight: 600; font-size: 13.5px; color: var(--text-medium); flex-shrink: 0; }
.spec-value { color: var(--text-dark); font-size: 13.5px; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding: 18px; background: var(--bg-light); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--white); }
.reviewer-info strong { display: block; font-size: 13.5px; font-weight: 600; }
.review-stars .fa-star { font-size: 11px; color: #DDDDDD; }
.review-stars .fa-star.filled { color: #F59E0B; }
.review-date { margin-left: auto; font-size: 11.5px; color: var(--text-muted); }
.review-comment { color: var(--text-medium); font-size: 13.5px; margin: 0; }
.review-form-wrapper { background: var(--bg-light); border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--border); }
.review-form-wrapper h5 { margin-bottom: 18px; }
.star-rating-input { display: flex; align-items: center; gap: 6px; }
.star-rating-input span { color: var(--text-medium); font-size: 13.5px; }
.star-rating-input input[type="radio"] { display: none; }
.star-rating-input label { font-size: 22px; color: #DDDDDD; cursor: pointer; transition: color 0.2s; }
.star-rating-input label:hover { color: #F59E0B; }

/* ======================================
   FORMS — style Honor
====================================== */
.custom-input {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    padding: 11px 14px;
    font-family: var(--font); font-size: 14px;
    transition: var(--transition); width: 100%;
}
.custom-input:focus { border-color: var(--text-black); background: var(--white); outline: none; box-shadow: none; }
.custom-input::placeholder { color: var(--text-muted); }
.form-select.custom-input { appearance: auto; }
.custom-label { font-size: 12.5px; font-weight: 600; color: var(--text-medium); margin-bottom: 5px; display: block; }

/* ======================================
   CART
====================================== */
.cart-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 18px; }
.cart-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 14px 22px; border-bottom: 1px solid var(--border); background: var(--bg-light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.cart-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.cart-row:last-child { border-bottom: none; }
.cart-row:hover { background: var(--bg-lighter); }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 66px; height: 66px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cart-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.cart-product-name { font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text-dark); }
.cart-remove { font-size: 12px; color: var(--red); font-weight: 500; }
.cart-remove:hover { color: var(--red-dark); }
.cart-price { font-weight: 500; font-size: 14px; color: var(--text-dark); }
.cart-subtotal { font-weight: 700; font-size: 15px; color: var(--text-black); }
.cart-actions { display: flex; gap: 10px; }
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.summary-title { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.summary-lines { display: flex; flex-direction: column; gap: 12px; }
.summary-line { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-medium); }
.summary-line.total { font-size: 17px; font-weight: 700; color: var(--text-black); padding-top: 12px; border-top: 1px solid var(--border); }
.btn-checkout {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--black);
    color: var(--white); border: none; padding: 15px;
    border-radius: var(--radius-pill); font-weight: 500; font-size: 15px;
    cursor: pointer; transition: var(--transition);
    margin-top: 22px; text-decoration: none; font-family: var(--font);
}
.btn-checkout:hover { background: var(--red); color: var(--white); }
.summary-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; color: #16A34A; font-size: 12.5px; font-weight: 500; }

/* ======================================
   CHECKOUT
====================================== */
.checkout-steps { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.step { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.step.active { color: var(--text-dark); font-weight: 600; }
.step-divider { color: var(--text-muted); }
.checkout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 18px; }
.checkout-card-title { font-size: 15px; margin-bottom: 18px; font-weight: 600; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px 18px;
    cursor: pointer; display: flex; align-items: center; gap: 14px;
    transition: var(--transition); position: relative;
}
.payment-option input { position: absolute; opacity: 0; }
.payment-option.selected, .payment-option:hover { border-color: var(--text-black); background: var(--white); }
.payment-option-content { display: flex; align-items: center; gap: 14px; flex: 1; }
.payment-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-dark); }
.payment-option-content strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.payment-option-content p { font-size: 12px; color: var(--text-muted); margin: 0; }
.payment-check { width: 20px; height: 20px; border: 1.5px solid var(--border-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: transparent; margin-left: auto; flex-shrink: 0; transition: var(--transition); }
.payment-option.selected .payment-check { background: var(--black); border-color: var(--black); color: var(--white); }
.checkout-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.checkout-item { display: flex; align-items: center; gap: 10px; }
.checkout-item-img { width: 48px; height: 48px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; position: relative; flex-shrink: 0; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.checkout-item-qty { position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; background: var(--text-dark); border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--white); }
.checkout-item-info { flex: 1; }
.checkout-item-info p { font-size: 12.5px; color: var(--text-medium); margin: 0; }
.checkout-item-price { font-size: 13px; font-weight: 700; white-space: nowrap; color: var(--text-black); }

/* ======================================
   ORDER SUCCESS
====================================== */
.success-page { text-align: center; max-width: 600px; margin: 80px auto; }
.success-icon-wrapper { position: relative; display: inline-block; margin-bottom: 28px; }
.success-icon {
    width: 90px; height: 90px;
    background: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--white); position: relative; z-index: 2;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-ripple { position: absolute; inset: -16px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.15); animation: ripple 1.5s ease-out infinite; }
@keyframes ripple { from { transform: scale(0.8); opacity: 1; } to { transform: scale(1.4); opacity: 0; } }
.success-title { font-size: 2.2rem; margin-bottom: 10px; letter-spacing: -0.04em; }
.success-subtitle { color: var(--text-medium); font-size: 15px; margin-bottom: 36px; }
.order-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 36px; text-align: left; }
.order-info-item { display: flex; flex-direction: column; gap: 3px; }
.order-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; }
.order-info-value { font-size: 14.5px; font-weight: 500; color: var(--text-dark); }
.order-number { font-weight: 800; color: var(--text-black); font-size: 16px; letter-spacing: -0.02em; }
.success-next-steps { margin-bottom: 36px; }
.success-next-steps h5 { margin-bottom: 18px; }
.next-steps-grid { display: flex; gap: 14px; justify-content: center; }
.next-step { flex: 1; text-align: center; max-width: 150px; }
.step-num { width: 36px; height: 36px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: var(--white); margin: 0 auto 8px; }
.next-step p { font-size: 12.5px; color: var(--text-medium); margin: 0; }

/* ======================================
   CONTACT
====================================== */
.contact-info { padding-right: 16px; }
.contact-info-title { font-size: 1.9rem; margin-bottom: 10px; letter-spacing: -0.03em; }
.contact-info-text { color: var(--text-medium); margin-bottom: 28px; line-height: 1.8; font-size: 14.5px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; }
.contact-icon { width: 40px; height: 40px; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-dark); font-size: 15px; flex-shrink: 0; }
.contact-item h6 { font-size: 12.5px; font-weight: 600; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-medium); margin: 0; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-title { font-size: 1.4rem; margin-bottom: 22px; letter-spacing: -0.02em; }

/* ======================================
   SEARCH
====================================== */
.search-wrapper-big { display: flex; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; max-width: 640px; margin: 0 auto; transition: var(--transition); }
.search-wrapper-big:focus-within { border-color: var(--text-black); background: var(--white); }
.search-input-big { flex: 1; background: transparent; border: none; outline: none; padding: 14px 22px; font-size: 15px; color: var(--text-dark); font-family: var(--font); }
.search-input-big::placeholder { color: var(--text-muted); }
.search-btn-big { background: var(--black); border: none; color: var(--white); padding: 14px 28px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: var(--transition); font-family: var(--font); font-size: 14px; }
.search-btn-big:hover { background: var(--red); }

/* ======================================
   ANIMATIONS
====================================== */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-animate="fadeInLeft"] { transform: translateX(-20px); }
[data-animate="fadeInRight"] { transform: translateX(20px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 992px) {
    .categories-nav { display: none !important; }
    #mainNav .container { height: 60px; }
    .newsletter-card { padding: 36px 28px; }
    .product-gallery { position: static; }
}
@media (max-width: 768px) {
    .section-padding { padding: 56px 0; }
    .hero-slide { min-height: 380px; }
    .hero-default { padding: 56px 0; }
    .promo-banner { padding: 28px 20px; }
    .promo-products-grid { grid-template-columns: 1fr; }
    .newsletter-card { padding: 28px 20px; }
    .newsletter-input-big { max-width: 100%; }
    .cart-header, .cart-row { grid-template-columns: 2fr 1fr; }
    .cart-header span:nth-child(3), .cart-header span:nth-child(4) { display: none; }
    .cart-row > div:nth-child(3), .cart-row > div:nth-child(4) { display: none; }
    .order-info-card { grid-template-columns: 1fr; }
    .next-steps-grid { flex-direction: column; align-items: center; }
    .contact-form-card { padding: 24px 16px; }
    .contact-info { padding-right: 0; margin-bottom: 32px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.9rem; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .newsletter-input-big { flex-direction: column; border-radius: var(--radius-sm); }
    .newsletter-input-big button { width: 100%; justify-content: center; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================
   SCROLLBAR
====================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ======================================
   SÉLECTION
====================================== */
::selection { background: rgba(204,10,44,0.12); color: var(--red-dark); }

/* ======================================
   UTILITAIRES
====================================== */
.product-img-placeholder.large { font-size: 72px; min-height: 200px; }
.product-img-placeholder.sm { font-size: 22px; width: 56px; height: 56px; }
.cart-actions { display: flex; gap: 10px; }
.qty-form { display: flex; }
.bg-accent { background: var(--red) !important; }
.text-success { color: #16A34A !important; }

/* Badge "NEW" — style exact honor.com */
.badge-honor-new {
    background: var(--red); color: var(--white);
    font-size: 9.5px; font-weight: 700;
    padding: 2px 7px; border-radius: 2px;
    text-transform: uppercase; letter-spacing: 0.06em;
    display: inline-block;
}

/* Gradient text désactivé — Honor n'utilise pas de gradient text */
.gradient-text { color: var(--red); }

/* ======================================
   BOUTONS COLORÉS — Variantes Attractives
   Palette : Rouge, Orange, Bleu, Vert, Violet, Dégradé
====================================== */

/* --- Palette étendue --- */
:root {
    --orange:        #F97316;
    --orange-dark:   #EA6C0A;
    --orange-light:  #FFF7ED;
    --blue:          #2563EB;
    --blue-dark:     #1D4ED8;
    --blue-light:    #EFF6FF;
    --green:         #16A34A;
    --green-dark:    #15803D;
    --green-light:   #F0FDF4;
    --purple:        #7C3AED;
    --purple-dark:   #6D28D9;
    --purple-light:  #F5F3FF;
    --teal:          #0D9488;
    --teal-dark:     #0F766E;
    --teal-light:    #F0FDFA;
}

/* ===== ROUGE (couleur brand Honor) ===== */
.btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(204,10,44,0.35);
}
.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,10,44,0.45);
    color: #fff;
}

/* ===== ORANGE ===== */
.btn-orange {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.45);
    color: #fff;
}
.btn-orange-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--orange);
    padding: 11px 26px; border: 1.5px solid var(--orange);
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-orange-outline:hover { background: var(--orange); color: #fff; }

/* ===== BLEU ===== */
.btn-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,99,235,0.30);
}
.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.40);
    color: #fff;
}
.btn-blue-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--blue);
    padding: 11px 26px; border: 1.5px solid var(--blue);
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
}
.btn-blue-outline:hover { background: var(--blue); color: #fff; }

/* ===== VERT ===== */
.btn-green {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22,163,74,0.30);
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.40);
    color: #fff;
}

/* ===== VIOLET ===== */
.btn-purple {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(124,58,237,0.30);
}
.btn-purple:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.40);
    color: #fff;
}

/* ===== TEAL ===== */
.btn-teal {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal);
    color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(13,148,136,0.30);
}
.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.40);
    color: #fff;
}

/* ===== DÉGRADÉS ===== */
.btn-gradient-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #CC0A2C 0%, #F97316 100%);
    color: #fff; padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    box-shadow: 0 4px 16px rgba(204,10,44,0.35);
}
.btn-gradient-red:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; box-shadow: 0 6px 22px rgba(204,10,44,0.45); }

.btn-gradient-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: #fff; padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}
.btn-gradient-blue:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; box-shadow: 0 6px 22px rgba(37,99,235,0.40); }

.btn-gradient-green {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #0D9488 0%, #16A34A 100%);
    color: #fff; padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    box-shadow: 0 4px 16px rgba(22,163,74,0.28);
}
.btn-gradient-green:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.btn-gradient-fire {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #CC0A2C 50%, #F97316 100%);
    color: #fff; padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    box-shadow: 0 4px 18px rgba(124,58,237,0.35);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}
.btn-gradient-fire:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124,58,237,0.45); color: #fff; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== BOUTON AVEC ICÔNE ET BADGE ===== */
.btn-icon-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--black); color: #fff;
    padding: 12px 22px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    position: relative;
}
.btn-icon-badge .btn-badge {
    background: var(--red);
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 2px 7px; border-radius: 50px;
}
.btn-icon-badge:hover { background: #1A1A1A; transform: translateY(-2px); color: #fff; }

/* ===== BOUTON EFFET SHINE ===== */
.btn-shine {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: 12px 28px;
    border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    position: relative; overflow: hidden;
}
.btn-shine::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.btn-shine:hover::before { left: 150%; }
.btn-shine:hover { background: var(--red-dark); color: #fff; }

/* ===== BOUTON GHOST (contour coloré) ===== */
.btn-ghost-red     { display: inline-flex; align-items: center; gap: 8px; background: rgba(204,10,44,0.07); color: var(--red); padding: 11px 26px; border: 1.5px solid var(--red); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-ghost-red:hover { background: var(--red); color: #fff; }

.btn-ghost-orange  { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.07); color: var(--orange); padding: 11px 26px; border: 1.5px solid var(--orange); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-ghost-orange:hover { background: var(--orange); color: #fff; }

.btn-ghost-blue    { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.07); color: var(--blue); padding: 11px 26px; border: 1.5px solid var(--blue); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-ghost-blue:hover { background: var(--blue); color: #fff; }

.btn-ghost-green   { display: inline-flex; align-items: center; gap: 8px; background: rgba(22,163,74,0.07); color: var(--green); padding: 11px 26px; border: 1.5px solid var(--green); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-ghost-green:hover { background: var(--green); color: #fff; }

.btn-ghost-purple  { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,0.07); color: var(--purple); padding: 11px 26px; border: 1.5px solid var(--purple); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-ghost-purple:hover { background: var(--purple); color: #fff; }

/* ===== BOUTONS SPÉCIAUX (panier, checkout, whatsapp) ===== */

/* Ajouter au panier — orange vif */
.btn-add-cart {
    width: 36px; height: 36px;
    background: var(--orange) !important;
    border: none; border-radius: var(--radius-sm);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; transition: var(--transition); flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(249,115,22,0.35);
}
.btn-add-cart:hover { background: var(--orange-dark) !important; transform: scale(1.08); }

/* Ajouter au panier (grand — page détail) — dégradé rouge→orange */
.btn-add-to-cart-big {
    flex: 1; border: none;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%) !important;
    color: #fff; padding: 13px 22px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 15px;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--transition); font-family: var(--font);
    box-shadow: 0 4px 16px rgba(204,10,44,0.30);
}
.btn-add-to-cart-big:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,10,44,0.40); }

/* Acheter maintenant — bleu royal */
.btn-buy-now {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--blue) !important;
    border: none; color: #fff;
    padding: 12px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: var(--transition); text-decoration: none; margin-bottom: 22px;
    font-family: var(--font);
    box-shadow: 0 4px 14px rgba(37,99,235,0.30);
}
.btn-buy-now:hover { background: var(--blue-dark) !important; color: #fff; box-shadow: 0 6px 20px rgba(37,99,235,0.40); transform: translateY(-1px); }

/* Checkout — dégradé vert→teal */
.btn-checkout {
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%) !important;
    box-shadow: 0 4px 16px rgba(22,163,74,0.30);
}
.btn-checkout:hover { opacity: 0.92 !important; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(22,163,74,0.40) !important; }

/* WhatsApp — vert WhatsApp */
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff;
    padding: 12px 24px; border: none; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: var(--transition); text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #20BC5A; transform: translateY(-2px); color: #fff; }

/* CTA Newsletter — violet */
.newsletter-input-big button {
    background: var(--purple) !important;
    box-shadow: 0 4px 12px rgba(124,58,237,0.30);
}
.newsletter-input-big button:hover { background: var(--purple-dark) !important; }

/* Bouton Recherche — rouge */
.search-btn { background: var(--red) !important; }
.search-btn:hover { background: var(--red-dark) !important; }
.search-btn-big { background: var(--red) !important; }
.search-btn-big:hover { background: var(--red-dark) !important; }

/* Appliquer les filtres — bleu */
.btn-filter-apply {
    background: var(--blue) !important;
    box-shadow: 0 3px 10px rgba(37,99,235,0.25);
}
.btn-filter-apply:hover { background: var(--blue-dark) !important; }

/* ===== TAILLES DE BOUTONS ===== */
.btn-sm { padding: 8px 18px !important; font-size: 12.5px !important; }
.btn-lg { padding: 16px 40px !important; font-size: 16px !important; }
.btn-xl { padding: 18px 52px !important; font-size: 17px !important; }

/* ===== BOUTON PLEINE LARGEUR ===== */
.btn-full { width: 100%; justify-content: center; }

/* ===== STATS — accent coloré pour les chiffres ===== */
.stat-number { color: var(--white); }
.stat-item:nth-child(1) .stat-number { color: #F87171; }   /* rouge doux */
.stat-item:nth-child(2) .stat-number { color: #60A5FA; }   /* bleu doux */
.stat-item:nth-child(3) .stat-number { color: #34D399; }   /* vert doux */
.stat-item:nth-child(4) .stat-number { color: #FBBF24; }   /* doré */

/* ===== BADGES COLORÉS (catégories, sections) ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}

/* ===== ICÔNE ACTION PANIER (navbar) ===== */
.nav-action-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--orange)) !important;
    border-color: var(--red) !important;
    color: #fff !important;
}
