/* ============================================
   RÉFÉRENCE GADGET — Premium Dark Theme
   Innovation • Qualité • Confiance
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:       #0d0d0d;
    --dark:        #111318;
    --dark2:       #1a1d24;
    --dark3:       #22262f;
    --blue:        #1a6fd4;
    --blue-light:  #2b7de9;
    --blue-glow:   #3d8ef0;
    --blue-dark:   #0d3d7a;
    --silver:      #c0c0c0;
    --silver-light:#e8e8e8;
    --white:       #ffffff;
    --grey:        #6b7280;
    --grey-light:  #9ca3af;
    --success:     #10b981;
    --warning:     #f59e0b;
    --danger:      #ef4444;
    --orange:      #ff6600;
    --mtn:         #ffcc00;
    --whatsapp:    #25D366;
    --gradient-blue: linear-gradient(135deg, #1a6fd4, #0d3d7a);
    --gradient-dark: linear-gradient(135deg, #1a1d24, #0d0d0d);
    --gradient-silver: linear-gradient(135deg, #e8e8e8, #c0c0c0);
    --glow-blue: 0 0 20px rgba(26, 111, 212, 0.4);
    --glow-blue-strong: 0 0 40px rgba(26, 111, 212, 0.6);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--silver-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Motif de fond subtil (2026-08-12, corrigé le 2026-08-15) — 1er essai posé sur le fond de <body>,
   invisible en pratique : la quasi-totalité des sections du site (hero, bandeaux catégories, footer...)
   déclarent leur PROPRE fond opaque en style inline (background:var(--black) etc.), qui recouvre
   entièrement le fond du body derrière — aucune zone du site n'était réellement transparente pour le
   laisser transparaître. Corrigé en überlay fixe pleine page avec mix-blend-mode:overlay : contrairement
   à un simple background, un blend mode se compose visuellement avec TOUT ce qu'il y a en dessous au
   moment du rendu, donc le motif apparaît bien par-dessus n'importe quel fond de section, opaque ou non.
   pointer-events:none + position:fixed (ne défile pas, reste stable) + opacité globale basse en plus des
   opacités déjà faibles par touche pour rester discret. */
/* Pseudo-élément plutôt qu'une div à ajouter dans chaque page (~20 fichiers publics) — même rendu,
   zéro changement de markup nécessaire.
   Corrigé une 2e fois (2026-08-15) : `mix-blend-mode:overlay` restait quasi invisible même en forçant
   l'opacité à 100% pour tester — pas un souci d'opacité mais de blend mode. "overlay" a une propriété
   mathématique connue : sur un fond très proche du noir pur (#0d0d0d ici), sa formule (2×fond×source)
   écrase quasiment tout effet, peu importe l'intensité de la source — ce mode est conçu pour préserver
   les extrêmes de luminosité, pas pour en ajouter sur du noir. "screen" (1-(1-fond)×(1-source)) fait
   l'inverse : il ajoute de la lumière quasiment telle quelle sur un fond sombre — même mode déjà utilisé
   avec succès pour la traînée lumineuse au scroll (#rg-scroll-glow) et le reflet du hero. */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: screen;
    /* Diagonales retirées (2026-08-15, demande explicite) — points uniquement. */
    background: radial-gradient(rgba(43,125,233,0.16) 1px, transparent 1.5px) 0 0 / 28px 28px;
}
/* Jamais sur les grilles produits (2026-08-15, demande explicite) — isolation:isolate crée un nouveau
   contexte d'empilement pour chaque carte, ce qui coupe la fusion (mix-blend-mode) de body::after à sa
   frontière : la carte garde son fond plein normal, sans le calque de points par-dessus. Comportement
   CSS standard, pas une astuce fragile. */
.product-card, .products-grid, .rg-marquee-row {
    isolation: isolate;
}
@media (prefers-reduced-motion: reduce) {
    body::after { opacity: 0.6; } /* le motif lui-même est statique (pas d'animation) — juste un peu plus feutré par cohérence */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Sans accent-color explicite, une checkbox native hérite du rendu bas-contraste du mode sombre
   système sur mobile — quasi invisible sur notre fond noir (remonté par l'owner sur le formulaire
   fournisseur, mais s'applique à toute checkbox du site). */
input[type="checkbox"], input[type="radio"] {
    accent-color: var(--blue);
    width: 18px;
    height: 18px;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============ SELECTION ============ */
::selection { background: var(--blue); color: #fff; }

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 111, 212, 0.3);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-left img {
    height: 48px;
    width: auto;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-name span { color: var(--blue-light); }

.nav-center { flex: 1; max-width: 500px; }

.search-bar {
    display: flex;
    align-items: center;
    background: var(--dark2);
    border: 1px solid rgba(26, 111, 212, 0.3);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 10px 18px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

/* Recherche instantanée (2026-08-30) — menu de suggestions, rgInitSearchSuggest() dans app.js.
   .rg-search-suggest-anchor est ajouté par le JS sur le <form> lui-même (desktop .search-bar ou
   mobile .rg-mob-search form) pour lui donner un contexte de positionnement, sans dépendre d'une
   règle CSS par page. */
.rg-search-suggest-anchor { position: relative; }
.rg-search-suggest {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--dark2);
    border: 1px solid rgba(26, 111, 212, 0.25);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    overflow: hidden;
    z-index: 999;
}
.rg-search-suggest.rg-visible { display: block; }
.rg-suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s;
}
.rg-suggest-item:last-of-type { border-bottom: none; }
.rg-suggest-item:hover, .rg-suggest-item:focus { background: rgba(26,111,212,0.12); }
.rg-suggest-item img {
    width: 40px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
    background: var(--dark3);
}
.rg-suggest-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rg-suggest-name {
    font-size: 13px; font-weight: 600; color: var(--white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rg-suggest-price { font-size: 12px; color: var(--blue-light); font-weight: 600; }
.rg-suggest-empty { padding: 16px; text-align: center; color: var(--grey); font-size: 13px; }
.rg-suggest-viewall {
    display: block; text-align: center; padding: 10px; font-size: 12px; font-weight: 700;
    color: var(--blue-light); text-decoration: none; background: rgba(26,111,212,0.06);
}
.rg-suggest-viewall:hover { background: rgba(26,111,212,0.14); }

.search-bar input::placeholder { color: var(--grey); }

.search-bar button {
    background: var(--gradient-blue);
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.search-bar button:hover { background: var(--blue-glow); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.nav-right a {
    color: var(--grey-light);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--white);
    background: rgba(26, 111, 212, 0.15);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark2);
    border: var(--border-glass);
    border-color: rgba(26, 111, 212, 0.3);
    border-radius: var(--radius);
    min-width: 220px;
    box-shadow: var(--shadow-card);
    z-index: 100;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 11px 16px;
    color: var(--grey-light) !important;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(26, 111, 212, 0.2) !important;
    color: var(--white) !important;
    padding-left: 22px;
}

.dropdown:hover .dropdown-content { display: block; }

/* Cart badge */
.cart-badge {
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 11px;
    margin-left: 3px;
    font-weight: 700;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    inset: -40px 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 111, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(13, 61, 122, 0.2) 0%, transparent 60%),
        url('../images/hero.png') center/cover no-repeat;
    filter: brightness(0.3);
    /* Léger parallax au scroll (2026-08-09) — --rg-parallax-y fixée en JS (app.js), inset:-40px ci-dessus
       laisse une marge pour que le décalage ne révèle jamais de bord vide. */
    transform: translateY(var(--rg-parallax-y, 0px));
}
@media (prefers-reduced-motion: reduce) {
    .hero::before { transform: none !important; }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Reflet "éclair" qui balaie l'image au scroll (2026-08-11) — 1re couche, peinte au-dessus de la
       2e (l'assombrissement déjà en place, inchangé). Bande diagonale claire, plus large que la boîte
       (250%) pour glisser sans jamais révéler de bord ; sa position horizontale (--rg-glare-x) est
       pilotée en JS par rgInitHeroParallax(), qui réutilise l'écouteur de scroll déjà en place pour le
       parallax plutôt que d'en ajouter un second. */
    background:
        linear-gradient(115deg,
            transparent 42%,
            rgba(255,255,255,0.09) 48%,
            rgba(255,255,255,0.17) 50%,
            rgba(255,255,255,0.09) 52%,
            transparent 58%
        ) var(--rg-glare-x, -50%) 0 / 250% 100% no-repeat,
        linear-gradient(135deg,
            rgba(13,13,13,0.7) 0%,
            rgba(26,111,212,0.05) 50%,
            rgba(13,13,13,0.8) 100%
        );
}
@media (prefers-reduced-motion: reduce) {
    .hero::after {
        background: linear-gradient(135deg, rgba(13,13,13,0.7) 0%, rgba(26,111,212,0.05) 50%, rgba(13,13,13,0.8) 100%) !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 111, 212, 0.15);
    border: 1px solid rgba(26, 111, 212, 0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--blue-light);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease forwards;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.1s both;
    letter-spacing: -0.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--blue-light), var(--silver-light), var(--blue-light));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Léger chatoiement continu sur le titre (2026-08-11), distinct et complémentaire de l'effet
       machine à écrire déjà en place (celui-ci tape le texte une fois ; ceci anime en boucle le
       dégradé une fois le texte présent — les deux n'entrent jamais en conflit). */
    animation: rgHeroTitleShimmer 4s ease-in-out infinite;
}
@keyframes rgHeroTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero h1 span { animation: none; background-position: 0% 50%; }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--grey-light);
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-stat { text-align: left; }
.hero-stat .number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-light);
    line-height: 1;
}
.hero-stat .label {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 111, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue-strong);
}

.btn-outline {
    background: transparent;
    color: var(--silver-light);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

/* Bouton "Envoi en cours..." — protection anti-double-clic sur les formulaires de commande
   (rgGuardCheckoutSubmit dans app.js). Même définition que son équivalent admin. */
.rg-spinner { display:inline-block; width:14px; height:14px; border:2px solid rgba(255,255,255,0.35); border-top-color:#fff; border-radius:50%; animation:rg-spin 0.7s linear infinite; vertical-align:-2px; margin-right:6px; }
@keyframes rg-spin { to { transform:rotate(360deg); } }

/* Pagination catalogue/recherche (products.php, search.php) */
.rg-pagination { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:36px; }
.rg-page-btn {
    padding:9px 14px; border-radius:8px; background:var(--dark2); border:1px solid rgba(255,255,255,0.08);
    color:var(--grey-light); text-decoration:none; font-size:13px; font-weight:600; transition:all .2s;
}
.rg-page-btn:hover { border-color:rgba(26,111,212,0.4); color:var(--white); }
.rg-page-btn.rg-active { background:var(--gradient-blue); color:#fff; border-color:transparent; }
.rg-page-btn.rg-disabled { opacity:0.35; pointer-events:none; }

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--silver-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(26, 111, 212, 0.1);
    color: var(--blue-light);
    border: 1px solid rgba(26, 111, 212, 0.3);
}

.btn-ghost:hover {
    background: rgba(26, 111, 212, 0.2);
    box-shadow: var(--glow-blue);
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 5%;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 111, 212, 0.1);
    border: 1px solid rgba(26, 111, 212, 0.3);
    color: var(--blue-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--grey-light);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ============ SECTIONS ============ */
.featured-products,
.products-page,
.category-section {
    padding: 80px 5%;
}

.featured-products { background: var(--dark); }
.products-page { background: var(--black); }

/* ============ PRODUCT GRID ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ============ PRODUCT CARD ============ */
.product-card {
    background: var(--dark2);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition), box-shadow 0.35s ease, transform 0.25s ease;
    position: relative;
    group: true;
    /* Léger relief 3D (2026-08-12) — inclinaison vers le curseur pilotée en JS via --rg-tilt-x/-y
       (rgInitCardTilt(), app.js, souris uniquement — voir la garde pointer:fine plus bas), plus une
       ombre de profondeur déjà présente au repos (pas seulement au survol) pour un rendu plus "posé". */
    transform: perspective(900px) rotateX(var(--rg-tilt-x, 0deg)) rotateY(var(--rg-tilt-y, 0deg)) translateY(var(--rg-card-lift, 0px));
    box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.25);
}

.product-card:hover {
    --rg-card-lift: -6px;
    box-shadow: var(--shadow-hover), var(--glow-blue), 0 24px 44px rgba(0,0,0,0.45);
    border-color: rgba(26, 111, 212, 0.4);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .product-card { transform: none !important; }
    .product-card:hover { transform: translateY(-6px) !important; }
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img { transform: scale(1.05); }

.product-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 14px 16px 4px;
    letter-spacing: 0.3px;
}

.product-card .price {
    padding: 4px 16px 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-light);
    font-family: 'Rajdhani', sans-serif;
}

.short-desc {
    color: var(--grey);
    font-size: 12px;
    padding: 0 16px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-actions { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; }

/* Animations produits (2026-08-09) — slide-up des actions au survol souris uniquement : gardé toujours
   visible sur tactile (hover:none), sinon un bouton "caché tant qu'on ne survole pas" serait
   inatteignable sur mobile, seul vecteur de trafic réel de ce site. */
@media (hover: hover) and (pointer: fine) {
    .product-card-actions {
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .product-card:hover .product-card-actions {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .product-card-actions { opacity: 1 !important; transform: none !important; }
}

/* Reveal au scroll — classes ajoutées/retirées en JS (app.js, rgInitScrollReveal()) via IntersectionObserver */
.rg-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rg-reveal.rg-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .rg-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: var(--glow-blue);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    animation: rgDiscountPulse 2s ease-in-out infinite;
}
@keyframes rgDiscountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
    .discount-badge { animation: none !important; }
}

/* ============ DÉFILEMENT AUTOMATIQUE CONTINU "MARQUEE" (2026-08-09) ============
   Remplace le 1er essai (carrousel à pagination manuelle, jugé "pas optimal" par l'owner — il voulait
   un mouvement continu et visible en permanence, pas un slider qui attend 4s entre deux sauts). Chaque
   rangée de produits (vedettes + chaque catégorie) défile en boucle infinie, alternant de sens une
   rangée sur deux. Le contenu de chaque rangée est dupliqué une fois par rgMarqueeRow() (index.php) :
   translateX(0) -> translateX(-50%) en boucle = exactement la largeur d'une copie, donc aucune coupure
   visible au moment où la boucle recommence. */
.rg-marquee-row { overflow: hidden; position: relative; }
.rg-marquee-row::before, .rg-marquee-row::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.rg-marquee-row::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.rg-marquee-row::after  { right: 0; background: linear-gradient(270deg, var(--black), transparent); }
.rg-marquee-track {
    display: flex;
    width: max-content;
    animation: rgMarqueeScroll 45s linear infinite;
}
.rg-marquee-set { display: flex; gap: 24px; padding-right: 24px; flex-shrink: 0; }
.rg-marquee-row.rg-marquee-reverse .rg-marquee-track { animation-direction: reverse; }
.rg-marquee-row:hover .rg-marquee-track,
.rg-marquee-track:focus-within { animation-play-state: paused; }
.rg-marquee-track > .rg-marquee-set > .product-card { width: 280px; flex-shrink: 0; }

/* Glisser pour accélérer (2026-08-11, rgInitMarqueeDrag() dans app.js) — touch-action:pan-y laisse le
   défilement vertical normal de la page fonctionner au doigt ; seul un geste horizontal est capté par
   le JS pour ne jamais entrer en conflit avec le scroll de la page sur mobile. */
.rg-marquee-track { cursor: grab; touch-action: pan-y; }
.rg-marquee-track.rg-marquee-dragging { cursor: grabbing; }
@keyframes rgMarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
    .rg-marquee-track > .rg-marquee-set > .product-card { width: 220px; }
    .rg-marquee-row::before, .rg-marquee-row::after { width: 30px; }
}
@media (prefers-reduced-motion: reduce) {
    /* Pas de mouvement continu pour cet utilisateur — retombe sur une grille statique normale, un seul
       exemplaire de chaque carte (la copie dupliquée, décorative, est masquée). */
    .rg-marquee-track { animation: none !important; transform: none !important; flex-wrap: wrap; width: auto; }
    .rg-marquee-set { flex-wrap: wrap; }
    .rg-marquee-set[aria-hidden="true"] { display: none; }
    .rg-marquee-row::before, .rg-marquee-row::after { display: none; }
}

/* Sentinelle du défilement infini "Tous les produits" (2026-08-11) — voir rgInitInfiniteProductFeed()
   dans app.js. Invisible tant qu'elle n'est pas observée par l'IntersectionObserver ; le spinner ne
   tourne que le temps du fetch (classe .rg-loading ajoutée/retirée en JS). */
#rg-infinite-sentinel { display: flex; align-items: center; justify-content: center; padding: 40px 0 20px; min-height: 60px; }
.rg-infinite-spinner {
    width: 30px; height: 30px; border-radius: 50%;
    border: 3px solid rgba(26,111,212,0.15); border-top-color: var(--blue-light);
    opacity: 0; animation: rgSpin 0.8s linear infinite;
}
#rg-infinite-sentinel.rg-loading .rg-infinite-spinner { opacity: 1; }
@keyframes rgSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .rg-infinite-spinner { animation: none; }
}

/* ============ TRAÎNÉE LUMINEUSE AU SCROLL + POINTEUR DE TOUCHER (2026-08-12) ============ */
/* Orb qui suit le doigt/curseur pendant un scroll (rgInitScrollGlareTrail(), app.js). transition sur
   transform crée volontairement un léger retard -> effet de traînée qui "chasse" le point de contact
   plutôt qu'un curseur qui le suit à l'identique. mix-blend-mode:screen = la lumière se pose sur le
   fond sombre sans jamais l'assombrir (additif, jamais un halo terne). */
#rg-scroll-glow {
    position: fixed; top: 0; left: 0; width: 90px; height: 90px; border-radius: 50%;
    background: radial-gradient(circle, rgba(43,125,233,0.55) 0%, rgba(43,125,233,0.18) 45%, transparent 72%);
    mix-blend-mode: screen; pointer-events: none; z-index: 9998;
    opacity: 0; will-change: transform, opacity;
    transition: transform 0.15s ease-out, opacity 0.35s ease;
}
#rg-scroll-glow.rg-visible { opacity: 1; }

/* Anneau de retour visuel à chaque tap/clic (rgInitTapRipple(), app.js). */
.rg-tap-ripple {
    position: fixed; width: 10px; height: 10px; margin: -5px 0 0 -5px;
    border: 2px solid rgba(43,125,233,0.7); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    animation: rgTapRipple 0.6s ease-out forwards;
}
@keyframes rgTapRipple {
    from { transform: scale(1); opacity: 0.9; }
    to   { transform: scale(6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    #rg-scroll-glow { display: none; }
    .rg-tap-ripple { display: none; }
}

/* ============ BOUTIQUE FOURNISSEUR — badge vérifié + filtre catégories (2026-08-12) ============ */
.rg-verified-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35);
    color: var(--success); padding: 5px 14px; border-radius: 50px;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.rg-shop-filter {
    background: var(--dark3); color: var(--grey-light); border: 1px solid rgba(255,255,255,0.08);
    padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer;
    transition: var(--transition);
}
.rg-shop-filter:hover { border-color: rgba(26,111,212,0.4); color: var(--white); }
.rg-shop-filter.rg-active { background: var(--gradient-blue); color: #fff; border-color: transparent; }

/* ============ HERO — typewriter / parallax / shimmer CTA (2026-08-09) ============ */
.hero-tag.rg-shimmer-cta, .btn-primary.rg-shimmer {
    position: relative;
    overflow: hidden;
}
.rg-shimmer::after {
    content: '';
    position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: rgShimmer 3.2s ease-in-out infinite;
}
@keyframes rgShimmer {
    0%   { left: -60%; }
    50%  { left: 130%; }
    100% { left: 130%; }
}
.rg-typewriter-cursor {
    display: inline-block;
    width: 3px;
    background: var(--blue-light);
    margin-left: 3px;
    animation: rgBlink 0.9s step-end infinite;
}
@keyframes rgBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .rg-shimmer::after { animation: none !important; display: none; }
    .rg-typewriter-cursor { animation: none !important; opacity: 1; }
}

.price-old {
    text-decoration: line-through;
    color: var(--grey);
    font-size: 13px;
    margin-right: 6px;
}

.price-new {
    color: var(--blue-light);
    font-weight: 700;
    font-size: 20px;
    font-family: 'Rajdhani', sans-serif;
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: var(--dark2);
    border-bottom: 1px solid rgba(26, 111, 212, 0.2);
    padding: 48px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(26,111,212,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    position: relative;
}

.page-header p {
    color: var(--grey-light);
    margin-top: 10px;
    font-size: 1rem;
    position: relative;
}

/* ============ OFFERS ============ */
.offers {
    padding: 80px 5%;
    background: var(--dark);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.offer-card {
    background: var(--dark2);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-blue);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,111,212,0.3);
}

.offer-card.highlight {
    background: linear-gradient(135deg, rgba(26,111,212,0.15), rgba(13,61,122,0.2));
    border-color: rgba(26,111,212,0.4);
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.offer-card p {
    color: var(--grey-light);
    font-size: 14px;
    margin-bottom: 24px;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail-page {
    padding: 60px 5%;
    background: var(--black);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-info h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.discount-tag {
    display: inline-block;
    background: var(--gradient-blue);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-description { color: var(--grey-light); line-height: 1.8; }
.product-description h2, .product-description h3 { color: var(--white); font-family: 'Rajdhani', sans-serif; margin: 16px 0 8px; }
.product-description ul, .product-description ol { margin-left: 20px; margin-bottom: 12px; }
.product-description li { margin-bottom: 6px; }

.order-form input,
.order-form select {
    width: 100%;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    margin-bottom: 12px;
}

.order-form input:focus, .order-form select:focus {
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.order-form input::placeholder { color: var(--grey); }

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 60px 5%; background: var(--black); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info p { color: var(--grey-light); margin-bottom: 24px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: var(--glow-blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey); }

.contact-form textarea { resize: vertical; min-height: 130px; }

/* ============ ORDER SUCCESS ============ */
.order-success {
    min-height: 70vh;
    padding: 60px 5%;
    background: var(--black);
    text-align: center;
}

.order-success h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.order-success > p {
    color: var(--grey-light);
    margin-bottom: 30px;
}

/* ============ CART ============ */
.cart-section { max-width: 800px; margin: 40px auto; padding: 0 5%; }

/* ============ FOOTER ============ */
.footer {
    background: var(--dark2);
    border-top: 1px solid rgba(26, 111, 212, 0.2);
    padding: 60px 5% 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.brand-red { color: var(--blue-light); }

.footer-col p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: var(--grey);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--blue-light);
    padding-left: 6px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: var(--grey);
    font-size: 13px;
}

/* ============ GLASS CARD ============ */
.glass-card {
    background: rgba(26, 29, 36, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(26,111,212,0.3); }
    50%       { box-shadow: 0 0 40px rgba(26,111,212,0.6); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-fadeUp { animation: fadeUp 0.6s ease both; }
.animate-glow   { animation: glow 3s ease infinite; }

/* ═══════════════════════════════════════════
   SYSTÈME NAVIGATION MOBILE — RG (Final)
   ═══════════════════════════════════════════ */

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.28s ease;
    transform-origin: center;
}
.hamburger-btn.rg-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.rg-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.rg-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.rg-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 1099;
    -webkit-tap-highlight-color: transparent;
}
.rg-overlay.rg-open { display: block; }

/* Drawer */
.rg-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: #12151c;
    border-left: 1px solid rgba(26,111,212,0.2);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    padding-bottom: 40px;
}
.rg-drawer.rg-open { right: 0; }

/* Drawer header */
.rg-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 6px;
    position: sticky;
    top: 0;
    background: #12151c;
    z-index: 1;
}
.rg-drawer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.rg-drawer-brand em { color: #2b7de9; font-style: normal; }
.rg-drawer-close {
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 8px;
    color: #fff;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Drawer links */
.rg-drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s;
    -webkit-tap-highlight-color: transparent;
}
.rg-drawer-link:hover,
.rg-drawer-link:active { background: rgba(26,111,212,0.12); color: #fff; border-left-color: #2b7de9; }
.rg-drawer-highlight { color: #2b7de9 !important; font-weight: 700; background: rgba(26,111,212,0.07); }
.rg-drawer-accent    { color: #2b7de9 !important; font-weight: 700; }
.rg-drawer-danger    { color: #ef4444 !important; }
.rg-drawer-sep  { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 14px; }
.rg-drawer-section { padding: 8px 16px 2px; font-size: 10px; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin: 0; }
.rg-drawer-badge { background: #ef4444; color: #fff; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-left: auto; flex-shrink: 0; }

/* Mobile search */
.rg-mob-search {
    display: none;
    padding: 10px 12px;
    background: #1a1d24;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 58px;
    z-index: 990;
}
.rg-mob-search form { display: flex; gap: 8px; }
.rg-mob-search input {
    flex: 1;
    background: #22262f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 12px;
    color: #fff;
    font-size: 16px; /* prevent iOS zoom */
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.rg-mob-search button {
    background: linear-gradient(135deg,#1a6fd4,#0d3d7a);
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Bannière find product */
.rg-find-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(26,111,212,0.08);
    border: 1px solid rgba(26,111,212,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 24px;
    max-width: 680px;
}
.rg-find-banner strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; }
.rg-find-banner span   { font-size: 12px; color: #9ca3af; }

/* ═══════════════════════════════════════════
   MEDIA QUERIES
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        height: 58px;
        padding: 0 12px;
        position: sticky;
        top: 0;
        z-index: 998;
    }
    .nav-center,
    .nav-right { display: none !important; }
    .hamburger-btn { display: flex !important; }
    .rg-mob-search { display: block; }

    /* Hero */
    .hero { padding: 32px 14px 44px !important; }
    .hero h1 { font-size: 1.65rem !important; line-height: 1.2 !important; }
    .hero p  { font-size: 14px !important; }
    .hero-buttons { flex-direction: column !important; gap: 10px !important; }
    .hero-stats  { gap: 16px !important; }
    .rg-find-banner { flex-direction: column !important; text-align: center !important; }

    /* Sections */
    section { padding: 26px 12px !important; }

    /* Grid produits — 2 col */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 9px !important;
    }
    .product-card { padding: 10px 8px !important; }
    .product-card img { height: 115px !important; border-radius: 10px !important; }
    .product-card h3 { font-size: 12px !important; line-height: 1.3 !important; margin-top: 8px !important; }
    .product-card .short-desc { display: none !important; }
    .product-card .price { font-size: 13px !important; }
    .product-card-actions { gap: 5px !important; }
    .product-card-actions .btn { font-size: 11px !important; padding: 7px 5px !important; }

    /* Filtre catégories — scroll horizontal */
    .products-page + div,
    [style*="overflow-x:auto"] { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }

    /* Page produit */
    .product-detail-container { grid-template-columns: 1fr !important; gap: 16px !important; }

    /* Cart */
    .cart-layout { grid-template-columns: 1fr !important; gap: 16px !important; }
    .cart-summary { width: 100% !important; }
    .cart-item { gap: 12px !important; padding: 14px !important; }
    .cart-item img { width: 64px !important; height: 64px !important; }

    /* Grilles 2 colonnes (formulaires, sections) — contact, fournisseur, register, profil */
    .rg-grid-2 { grid-template-columns: 1fr !important; gap: 12px !important; }

    /* Dashboard */
    .dashboard-wrapper { grid-template-columns: 1fr !important; }
    .dash-sidebar { position: relative !important; top: 0 !important; height: auto !important; }

    /* Footer */
    .footer-container { grid-template-columns: 1fr !important; gap: 20px !important; }
    .footer { padding: 24px 14px !important; }

    /* Chatbot (le widget a sa propre règle <480px ; celle-ci couvre 480-768px) */
    .chatbot-window {
        width: calc(100vw - 16px) !important;
        right: 0 !important;
        left: 8px !important;
        bottom: 68px !important;
        max-height: 60vh !important;
    }
    .chatbot-bubble { bottom: 16px !important; right: 16px !important; }

    /* Formulaires — no zoom iOS */
    input, select, textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Touch targets */
    .btn { min-height: 44px; }
    a   { -webkit-tap-highlight-color: rgba(0,0,0,0); }
}

@media (max-width: 380px) {
    .products-grid { grid-template-columns: repeat(2,1fr) !important; gap: 7px !important; }
    .product-card img { height: 100px !important; }
    .hero h1 { font-size: 1.4rem !important; }
}