/* ═══════════════════════════════════════════════════════════
   FLEXSHOP HAITI — Design System
   Inspired by: Stripe + Shopify + Modern SaaS dashboards
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --blue:        #1a3fb5;
  --blue-dark:   #0f2a8a;
  --blue-light:  #2563eb;
  --blue-50:     #eff6ff;
  --blue-100:    #dbeafe;
  --red:         #dc2626;
  --red-light:   #ef4444;
  --red-50:      #fef2f2;
  --gold:        #f59e0b;
  --green:       #16a34a;
  --green-light: #22c55e;
  --green-50:    #f0fdf4;
  --purple:      #7c3aed;
  --orange:      #ea580c;

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Sizing */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-blue: 0 8px 30px rgba(37,99,235,0.25);

  /* Transitions */
  --t: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.75rem; font-weight: 700; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}
.navbar-logo .flex  { color: var(--blue); }
.navbar-logo .shop  { color: var(--red); }
.navbar-logo .haiti { color: var(--gray-600); font-size: 0.65rem; font-weight: 700; display: block; letter-spacing: 2px; margin-top: -4px; }
.logo-cart { font-size: 1.5rem; margin-right: 4px; }

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
  background: var(--white);
}
.search-bar:focus-within { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.search-cat {
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
  appearance: none;
  outline: none;
  min-width: 120px;
}
.search-input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  background: transparent;
  color: var(--gray-800);
}
.search-input::placeholder { color: var(--gray-400); }
.search-btn {
  padding: 10px 18px;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--t);
}
.search-btn:hover { background: var(--blue-dark); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-balance {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav-balance-label { font-size: 0.72rem; color: var(--gray-500); }
.nav-balance-value { font-size: 0.95rem; font-weight: 700; color: var(--blue); font-family: var(--font-heading); }

.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: var(--t);
}
.nav-icon-btn:hover { background: var(--blue-50); color: var(--blue); }
.nav-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--t);
  border: 1px solid var(--gray-200);
}
.nav-user:hover { background: var(--gray-50); border-color: var(--gray-300); }
.nav-user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--blue);
  overflow: hidden;
}
.nav-user-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.nav-user-arrow { font-size: 0.7rem; color: var(--gray-400); }

/* Navbar Bottom (category bar) */
.navbar-bottom {
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border-radius: 0;
  transition: var(--t);
  white-space: nowrap;
}
.nav-cat-btn:hover { background: var(--blue-dark); }
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-link {
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--t);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); font-weight: 600; }
.nav-support {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.btn-secondary:hover { background: var(--gray-200); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }

.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #b91c1c; }

.btn-success { background: var(--green); color: white; }
.btn-success:hover { background: #15803d; }

.btn-ghost { background: transparent; color: var(--gray-600); }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-800); }

.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; font-weight: 700; }
.btn-full { width: 100%; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body { padding: 20px; }
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title { font-size: 1rem; font-weight: 700; color: var(--gray-800); }
.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-blue   { background: var(--blue-100); color: var(--blue); }
.badge-green  { background: var(--green-50); color: var(--green); }
.badge-red    { background: var(--red-50); color: var(--red); }
.badge-gold   { background: #fef3c7; color: #92400e; }
.badge-purple { background: #f5f3ff; color: var(--purple); }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }
.badge-orange { background: #fff7ed; color: var(--orange); }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-label span { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--t);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-input.has-icon { padding-left: 42px; }
.form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1rem;
}
.form-input-wrap { position: relative; }
.form-hint { font-size: 0.78rem; color: var(--gray-500); margin-top: 5px; }
.form-error { font-size: 0.78rem; color: var(--red); margin-top: 5px; }
.form-textarea { min-height: 100px; resize: vertical; }

/* ── HERO / SLIDESHOW ─────────────────────────────────────── */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}
.slide {
  display: none;
  min-height: 420px;
  align-items: center;
  padding: 60px 0;
  position: relative;
}
.slide.active { display: flex; }
.slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2a8a 0%, #1a3fb5 50%, #1e40af 100%);
}
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.slide-content { position: relative; z-index: 2; max-width: 540px; }
.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.slide h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
}
.slide h1 span { color: var(--gold); }
.slide p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.6; }
.slide-actions { display: flex; gap: 12px; align-items: center; }
.slide-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 520px;
  z-index: 2;
}
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--t);
  border: none;
}
.dot.active { background: white; width: 24px; border-radius: 4px; }
.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--t);
  backdrop-filter: blur(4px);
}
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,0.25); }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-200);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-100);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-title { font-size: 0.875rem; font-weight: 700; color: var(--gray-800); }
.trust-sub { font-size: 0.78rem; color: var(--gray-500); margin-top: 1px; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 48px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title { font-size: 1.35rem; font-weight: 800; color: var(--gray-900); }
.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--t);
}
.section-link:hover { gap: 8px; }

/* ── CATEGORY CARDS ───────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}
.cat-card-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 36px;
}
.cat-card-icons img { height: 28px; width: auto; border-radius: 6px; }
.cat-name { font-size: 0.78rem; font-weight: 700; color: var(--gray-700); }
.cat-link { font-size: 0.7rem; color: var(--blue); font-weight: 600; }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* Kart konteyner */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
}
.product-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Zòn imaj — TOUJOU anwo, pran tout lajè */
.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  background: var(--gray-100);
}
.product-image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  inset: 0;
}
.product-card:hover .product-image { transform: scale(1.05); }
.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--gray-100);
  position: absolute;
  inset: 0;
}

/* Kè favori */
.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 5;
  color: var(--gray-300);
  backdrop-filter: blur(4px);
}
.btn-wishlist:hover {
  background: white;
  transform: scale(1.12);
  color: var(--red);
  box-shadow: 0 4px 14px rgba(220,38,38,0.2);
}
.btn-wishlist.active { color: var(--red); background: var(--red-50); }
.btn-wishlist.active:hover { background: white; }
@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.btn-wishlist.pop { animation: heartPop 0.35s ease forwards; }

/* Kò kart */
.product-content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Kategori */
.product-category {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Non pwodwi — pran espas ki lib la, koupé apre 2 liy */
.product-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.35;
  text-decoration: none;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 8px;
}
.product-title:hover { color: var(--blue); }

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Pri — toujou jis anwo bouton an */
.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  font-family: var(--font-heading);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.product-price-old {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 4px;
  font-weight: 500;
}

/* Bouton achte — toujou anba */
.product-card .btn.btn-primary.btn-sm.w-full {
  flex-shrink: 0;
  margin-top: auto;
}

/* Legacy aliases pou compatibilité */
.product-body  { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.product-name  { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); flex: 1; }
.product-img   { position: relative; aspect-ratio: 1; overflow: hidden; }
.btn-add { width: 100%; padding: 9px; background: var(--blue); color: white; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; border: none; cursor: pointer; transition: var(--t); display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-add:hover { background: var(--blue-dark); }

/* ── SHOP PAGE ────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-section { margin-bottom: 20px; }
.sidebar-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 12px; }
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--t);
  font-size: 0.875rem;
  color: var(--gray-600);
}
.sidebar-item:hover { background: var(--blue-50); color: var(--blue); }
.sidebar-item.active { background: var(--blue-50); color: var(--blue); font-weight: 600; }
.sidebar-item-icon { font-size: 1rem; margin-right: 8px; }
.sidebar-count {
  padding: 2px 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
}
.sidebar-item.active .sidebar-count { background: var(--blue); color: white; }

.trust-widget {
  padding: 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-widget-icon { font-size: 1.5rem; color: var(--blue); flex-shrink: 0; }
.trust-widget-title { font-size: 0.85rem; font-weight: 700; color: var(--blue); }
.trust-widget-text { font-size: 0.78rem; color: var(--gray-600); margin-top: 2px; }

/* Shop header */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.shop-title { font-size: 1.6rem; font-weight: 800; }
.shop-meta { font-size: 0.85rem; color: var(--gray-500); margin-top: 2px; }
.shop-controls { display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.view-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.view-btn.active, .view-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }

/* ── PRODUCT PAGE ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-700); font-weight: 500; }

.product-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.product-main {

  display:grid;

  grid-template-columns:
    480px 1fr;

  gap:32px;

  align-items:start;

}
.product-page-img {
  width: 260px; height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  float: left;
  margin-right: 24px;
}
.product-page-img img { width: 100%; height: 100%; object-fit: cover; }
.product-page-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.product-page-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-page-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  font-family: var(--font-heading);
  margin-bottom: 16px;
}
.product-page-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.product-page-desc ul { padding-left: 20px; }
.product-page-desc li { margin-bottom: 4px; display: flex; align-items: flex-start; gap: 8px; }
.product-page-desc li::marker { color: var(--green); }

/* Variants */
.variant-label { font-size: 0.875rem; font-weight: 700; color: var(--gray-700); margin-bottom: 10px; }
.variants-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.variant-btn {
  padding: 10px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--t);
  text-align: center;
  position: relative;
}
.variant-btn:hover { border-color: var(--blue); }
.variant-btn.selected { border-color: var(--blue); background: var(--blue-50); }
.variant-btn .v-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); }
.variant-btn .v-price { font-size: 0.82rem; color: var(--blue); font-weight: 500; }
.variant-popular {
  position: absolute;
  top: -10px; right: -10px;
  padding: 2px 8px;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Payment methods */
.payment-methods-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.payment-method {
  padding: 10px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--t);
  text-align: center;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.payment-method:hover { border-color: var(--blue); }
.payment-method.selected { border-color: var(--blue); background: var(--blue-50); }
.payment-method img { height: 22px; width: auto; object-fit: contain; }
.payment-method-name { font-size: 0.72rem; font-weight: 500; color: var(--gray-600); }

/* Order summary */
.order-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.order-summary-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  font-weight: 700;
}
.order-summary-body { padding: 20px; }
.summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.summary-img { width: 52px; height: 52px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.summary-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-item-name { font-size: 0.875rem; font-weight: 600; }
.summary-item-sub { font-size: 0.78rem; color: var(--gray-500); }
.summary-item-price { font-weight: 700; color: var(--blue); margin-left: auto; white-space: nowrap; }

.summary-divider { border: none; border-top: 1px solid var(--gray-100); margin: 14px 0; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.summary-row-label { color: var(--gray-600); }
.summary-row-value { font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--gray-200);
}
.summary-total-label { font-size: 1rem; font-weight: 700; }
.summary-total-value { font-size: 1.3rem; font-weight: 900; color: var(--blue); font-family: var(--font-heading); }

.summary-features { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.summary-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
}
.summary-feature-icon { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.summary-feature-title { font-weight: 600; color: var(--gray-700); }
.summary-feature-text { color: var(--gray-500); font-size: 0.78rem; }

/* ── BOTTOM FEATURES ──────────────────────────────────────── */
.features-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 20px 0;
}
.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon { font-size: 1.5rem; color: var(--gray-400); flex-shrink: 0; }
.feature-title { font-size: 0.82rem; font-weight: 700; color: var(--gray-700); }
.feature-text { font-size: 0.75rem; color: var(--gray-500); }

/* ── LOGIN PAGE ───────────────────────────────────────────── */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 130px);
}
.auth-left {
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
}
.auth-heading { font-size: 2rem; font-weight: 900; color: var(--gray-900); margin-bottom: 8px; }
.auth-heading span { color: var(--blue); }
.auth-heading strong { color: var(--red); }
.auth-sub { font-size: 1rem; color: var(--gray-600); margin-bottom: 32px; line-height: 1.6; }
.auth-features { display: flex; flex-direction: column; gap: 14px; }
.auth-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.auth-feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.auth-feature-title { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.auth-feature-text { font-size: 0.8rem; color: var(--gray-600); margin-top: 1px; }
.auth-illustration { margin-top: 40px; text-align: center; }
.auth-illustration img { max-width: 280px; margin: 0 auto; }

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: var(--white);
}
.auth-form { width: 100%; max-width: 400px; }
.auth-form-header { margin-bottom: 32px; }
.auth-form-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.auth-form-title { font-size: 1.5rem; font-weight: 800; }
.auth-form-sub { font-size: 0.875rem; color: var(--gray-500); margin-top: 4px; }

.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.btn-google {
  width: 100%;
  padding: 11px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
}
.btn-google:hover { background: var(--gray-50); border-color: var(--gray-300); }
.google-icon { width: 20px; height: 20px; }

.auth-footer { text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--gray-500); }
.auth-footer a { color: var(--blue); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* ── DASHBOARD ────────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: calc(100vh - 130px); }

.dashboard-sidebar {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  padding: 24px 16px;
  position: sticky;
  top: 130px;
  height: calc(100vh - 130px);
  overflow-y: auto;
}
.sidebar-user {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue); font-size: 1rem;
  flex-shrink: 0;
}
.sidebar-user-name { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); }
.sidebar-user-email { font-size: 0.75rem; color: var(--gray-500); }
.sidebar-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--green-50);
  color: var(--green);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 3px;
}

.sidebar-nav { margin-bottom: 8px; }
.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--t);
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}
.sidebar-nav-item:hover { background: var(--gray-50); color: var(--gray-800); }
.sidebar-nav-item.active { background: var(--blue-50); color: var(--blue); font-weight: 600; }
.sidebar-nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }

.sidebar-help {
  margin-top: auto;
  padding: 14px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 24px;
}
.sidebar-help-icon { font-size: 1.5rem; margin-bottom: 6px; }
.sidebar-help-title { font-size: 0.82rem; font-weight: 700; color: var(--gray-700); }
.sidebar-help-text { font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }

/* Dashboard main */
.dashboard-main { padding: 28px 32px; background: var(--gray-50); }
.welcome-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  color: white;
}
.welcome-banner::after {
  content: '';
  position: absolute;
  right: 100px;
  top: -20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.welcome-icon { font-size: 2rem; flex-shrink: 0; }
.welcome-title { font-size: 1.15rem; font-weight: 800; }
.welcome-sub { font-size: 0.85rem; opacity: 0.85; margin-top: 2px; }
.welcome-img {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  opacity: 0.9;
}

/* Balance + Quick actions */
.dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.balance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.balance-label { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; margin-bottom: 8px; }
.balance-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}
.balance-htg { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; font-family: var(--font-body); }
.balance-actions { display: flex; gap: 10px; margin-top: 16px; }

.quick-actions { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 24px; }
.quick-actions-title { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; margin-bottom: 14px; }
.quick-actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--t);
  text-align: center;
}
.quick-action:hover { border-color: var(--blue); background: var(--blue-50); }
.quick-action-icon { font-size: 1.4rem; color: var(--blue); }
.quick-action-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-700); }
.quick-action-sub { font-size: 0.68rem; color: var(--gray-500); line-height: 1.3; }

/* Popular products carousel */
.products-carousel { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.products-carousel::-webkit-scrollbar { display: none; }
.carousel-product {
  flex-shrink: 0;
  width: 180px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t);
}
.carousel-product:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.carousel-product-img { aspect-ratio: 16/10; overflow: hidden; }
.carousel-product-img img { width: 100%; height: 100%; object-fit: cover; }
.carousel-product-body { padding: 10px 12px; }
.carousel-product-name { font-size: 0.8rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.carousel-product-sub { font-size: 0.72rem; color: var(--gray-500); }
.carousel-product-price { font-size: 0.95rem; font-weight: 800; color: var(--blue); margin: 6px 0; font-family: var(--font-heading); }
.carousel-product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--gray-500); }
.carousel-btn {
  width: 100%;
  padding: 8px;
  background: var(--blue);
  color: white;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font-body);
}
.carousel-btn:hover { background: var(--blue-dark); }

/* ── TOAST NOTIFICATIONS ──────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  pointer-events: all;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast-success { border-left: 4px solid var(--green); }
.toast-error   { border-left: 4px solid var(--red); }
.toast-info    { border-left: 4px solid var(--blue); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-title { font-size: 0.875rem; font-weight: 700; }
.toast-text  { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.modal-title { font-size: 1.05rem; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
  font-size: 1rem;
  border: none;
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--gray-100); display: flex; gap: 10px; justify-content: flex-end; }

/* ── ALERT BANNER ─────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  border: 1px solid;
}
.alert-success { background: var(--green-50); border-color: #bbf7d0; color: #166534; }
.alert-info    { background: var(--blue-50);  border-color: var(--blue-100); color: var(--blue); }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.alert-error   { background: var(--red-50);  border-color: #fecaca; color: #991b1b; }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; }
.alert-action { margin-left: auto; font-size: 0.82rem; font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: white; }
.page-btn.nav { background: var(--gray-50); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand {

  display:flex;

  flex-direction:column;

  gap:10px;

}
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; margin-bottom: 12px; }
.footer-logo .flex { color: var(--blue-light); }
.footer-logo .shop { color: var(--red-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: var(--gray-500); margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--gray-800);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  font-size: 0.9rem;
}
.footer-social:hover { background: var(--blue); color: white; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-link {
  display: block;
  font-size: 0.83rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  transition: var(--t);
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  font-size: 0.8rem;
  color: var(--gray-600);
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payment-tag {
  padding: 4px 10px;
  background: var(--gray-800);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
}

/* ── QUANTITY SELECTOR ────────────────────────────────────── */
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.qty-btn {
  width: 38px; height: 38px;
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray-600);
  transition: var(--t);
}
.qty-btn:hover { background: var(--gray-100); }
.qty-value { padding: 0 16px; font-size: 0.9rem; font-weight: 600; color: var(--gray-800); }
.qty-total { padding: 9px 16px; background: var(--blue-50); color: var(--blue); font-size: 0.9rem; font-weight: 700; margin-left: 12px; border-radius: var(--radius); }

/* ── UTILITIES ────────────────────────────────────────────── */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 4px; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.text-sm { font-size: 0.85rem; } .text-xs { font-size: 0.75rem; }
.text-muted { color: var(--gray-500); }
.text-blue  { color: var(--blue); }
.text-red   { color: var(--red); }
.text-green { color: var(--green); }
.font-bold  { font-weight: 700; }
.font-black { font-weight: 900; }
.text-center { text-align: center; }
.rounded-full { border-radius: var(--radius-full); }
.w-full { width: 100%; }

/* ── SKELETON LOADING ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 200px 1fr; gap: 20px; }
  .dashboard-layout { grid-template-columns: 220px 1fr; }
  .product-page-layout { grid-template-columns: 1fr 320px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ═══════════════════════════════
   MOBILE DRAWER
═══════════════════════════════ */

.nb-hamburger{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--gray-100);

  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;

  flex-shrink:0;
}

.nb-hamburger span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--gray-700);
}

.nb-drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);

  opacity:0;
  visibility:hidden;

  transition:.25s;
  z-index:998;
}

.nb-drawer-overlay.open{
  opacity:1;
  visibility:visible;
}

.nb-drawer{
  position:fixed;
  top:0;
  left:0;

  width:82vw;
  max-width:320px;
  height:100vh;

  background:#fff;

  z-index:999;

  transform:translateX(-100%);
  transition:transform .28s ease;

  display:flex;
  flex-direction:column;
}

.nb-drawer.open{
  transform:translateX(0);
}

.nb-drawer-header{
  height:72px;

  padding:0 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-bottom:1px solid var(--gray-200);
}

.nb-drawer-close{
  width:38px;
  height:38px;

  border-radius:10px;

  background:var(--gray-100);

  font-size:1rem;
}

.nb-drawer-nav{
  flex:1;
  overflow-y:auto;

  padding:12px;
}

.nb-drawer-link{
  display:flex;
  align-items:center;
  gap:12px;

  padding:12px 14px;

  border-radius:12px;

  color:var(--gray-700);

  font-size:.9rem;
  font-weight:600;

  transition:.2s;
}

.nb-drawer-link:hover{
  background:var(--blue-50);
  color:var(--blue);
}

.nb-drawer-link-icon{
  width:20px;
  text-align:center;
  flex-shrink:0;
}

.nb-drawer-divider{
  height:1px;
  background:var(--gray-200);

  margin:14px 0;
}

.nb-drawer-section-title{
  font-size:.72rem;
  font-weight:800;

  color:var(--gray-400);

  text-transform:uppercase;
  letter-spacing:.6px;

  padding:0 12px;
  margin-bottom:8px;
}

.nb-drawer-footer{
  padding:14px;

  border-top:1px solid var(--gray-200);

  display:flex;
  flex-direction:column;
  gap:8px;
}

@media (max-width:768px){

  .nb-hamburger{
    display:flex;
  }

  .nb-bar{
    display:none;
  }

  .nb-search{
    display:none;
  }

  .nb-auth-btn.ghost{
    display:none;
  }

  .nb-uname{
    display:none;
  }

  .nb-top-inner{
    gap:10px;
  }

}

@media (max-width: 768px) {
  .navbar-bottom { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 24px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .product-page-layout { grid-template-columns: 1fr; }
  .product-page-img { float: none; margin: 0 auto 24px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .slide h1 { font-size: 1.8rem; }
  .slide-image { display: none; }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid-2 { grid-template-columns: 1fr; }
}

/* ── REAL LOGO ────────────────────────────────────────────── */
.navbar-logo img { height: 52px; width: auto; display: block; }
.navbar-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }

/* ── SHARED DASHBOARD SIDEBAR ─────────────────────────────── */
.dash-sidebar {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  padding: 20px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dash-sidebar-user {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.dash-sidebar-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0; overflow: hidden;
}
.dash-sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dash-sidebar-name  { font-size: .88rem; font-weight: 700; color: var(--gray-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-sidebar-email { font-size: .72rem; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-sidebar-verified { font-size: .68rem; font-weight: 700; color: var(--green); margin-top: 3px; }

.dash-sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dash-sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--t);
}
.dash-sidebar-link:hover { background: var(--gray-100); color: var(--gray-800); }
.dash-sidebar-link.active { background: var(--blue-50); color: var(--blue); font-weight: 600; }
.dash-sidebar-link-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }

.dash-sidebar-help {
  margin-top: 16px;
  padding: 14px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.dash-sidebar-help-title { font-size: .82rem; font-weight: 700; color: var(--gray-700); }
.dash-sidebar-help-sub   { font-size: .72rem; color: var(--gray-500); margin-top: 2px; }

/* ── STANDARD DASHBOARD LAYOUT ────────────────────────────── */
.user-dash-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: calc(100vh - 130px);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR  v3
   ═══════════════════════════════════════════════════════════ */
.nb-root { background:#fff; position:sticky; top:0; z-index:100; box-shadow:0 1px 6px rgba(0,0,0,.08); }

/* Top row */
.nb-top { border-bottom:1px solid var(--gray-100); }
.nb-top-inner { display:flex; align-items:center; gap:16px; padding:10px 0; }

/* Logo */
.nb-logo { flex-shrink:0; text-decoration:none; display:flex; align-items:center; }
.nb-logo img { height:50px; width:auto; display:block; }
.nb-logo-text { font-family:var(--font-heading); font-size:1.5rem; font-weight:900; }
.nb-logo-text .fl { color:var(--blue); }
.nb-logo-text .sh { color:var(--red); }
.nb-logo-text .ht { font-size:.7rem; color:var(--gray-400); }

/* Search */
.nb-search {
  flex:1; max-width:620px;
  display:flex; align-items:stretch;
  border:2px solid var(--gray-200);
  border-radius:var(--radius);
  overflow:hidden; transition:border-color .2s;
}
.nb-search.focused { border-color:var(--blue); }
.nb-search-cat {
  padding:0 12px; font-size:.82rem;
  background:var(--gray-50); color:var(--gray-700);
  border:none; border-right:1px solid var(--gray-200);
  outline:none; cursor:pointer; min-width:130px; flex-shrink:0;
}
.nb-search-input {
  flex:1; padding:10px 14px;
  border:none; outline:none; font-size:.9rem;
  font-family:var(--font-body);
}
.nb-search-btn {
  padding:0 18px; background:var(--blue); color:#fff;
  border:none; cursor:pointer; display:flex; align-items:center;
  transition:background .2s; flex-shrink:0;
}
.nb-search-btn:hover { background:var(--blue-dark); }

/* Right actions */
.nb-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }

/* Balance */
.nb-balance { text-align:center; }

/* User button */
.nb-user-btn {
  display:flex; align-items:center; gap:6px;
  background:none; border:none; cursor:pointer;
  padding:4px 8px; border-radius:var(--radius);
  transition:background .2s; font-family:var(--font-body);
}
.nb-user-btn:hover { background:var(--gray-100); }
.nb-avatar {
  width:32px; height:32px; border-radius:50%;
  background:var(--blue-100); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; overflow:hidden; flex-shrink:0;
}
.nb-avatar img { width:100%; height:100%; object-fit:cover; }
.nb-uname { font-size:.8rem; font-weight:600; color:var(--gray-700); }

/* User dropdown */
.nb-dropdown {
  position:absolute; top:calc(100% + 6px); right:0;
  min-width:200px; background:#fff;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); z-index:300; overflow:hidden;
}
.nb-dd-item {
  display:flex; align-items:center; gap:10px;
  padding:11px 16px; font-size:.82rem;
  color:var(--gray-700); text-decoration:none;
  transition:background .15s; cursor:pointer;
}
.nb-dd-item:hover { background:var(--gray-50); }

/* Auth buttons */
.nb-auth-btn {
  padding:8px 16px; border-radius:var(--radius);
  font-size:.82rem; font-weight:600;
  text-decoration:none; display:flex; align-items:center; gap:6px;
  transition:var(--t); white-space:nowrap;
}
.nb-auth-btn.ghost   { color:var(--gray-700); border:1.5px solid var(--gray-200); }
.nb-auth-btn.ghost:hover { background:var(--gray-50); }
.nb-auth-btn.primary { background:var(--blue); color:#fff; border:1.5px solid var(--blue); }
.nb-auth-btn.primary:hover { background:var(--blue-dark); }

/* Cart icon */
.nb-cart {
  display:flex; flex-direction:column; align-items:center; gap:2px;
  text-decoration:none; color:var(--gray-600); transition:color .2s;
}
.nb-cart:hover { color:var(--blue); }
.nb-cart-badge {
  position:absolute; top:-5px; right:-5px;
  width:18px; height:18px; border-radius:50%;
  background:var(--red); color:#fff; font-size:.6rem; font-weight:700;
  align-items:center; justify-content:center; border:2px solid #fff;
}
.nb-cart-label { font-size:.65rem; font-weight:600; }

/* ── BOTTOM BAR ───────────────────────────────────────────── */
.nb-bar { background:#fff; }
.nb-bar-inner { display:flex; align-items:stretch; position:relative; }

/* Kategori button */
.nb-cat-wrap { position:relative; flex-shrink:0; }
.nb-cat-btn {
  display:flex; align-items:center; gap:8px;
  padding:12px 20px; font-size:.85rem; font-weight:700;
  color:#fff; background:var(--blue);
  border:none; cursor:pointer; height:100%;
  font-family:var(--font-body); white-space:nowrap;
}
.nb-cat-icon { font-size:1rem; }

/* Mega menu */
.nb-mega {
  display:none; position:absolute; top:100%; left:0;
  width:300px; background:#fff;
  border:1px solid var(--gray-200);
  box-shadow:var(--shadow-lg); z-index:200;
}
.nb-mega.open { display:block; }
.nb-mega-item {
  display:flex; align-items:center; gap:14px;
  padding:11px 18px; text-decoration:none;
  border-bottom:1px solid var(--gray-50);
  transition:background .15s;
}
.nb-mega-item:hover { background:var(--blue-50); }
.nb-mega-icon { font-size:1.1rem; width:22px; text-align:center; flex-shrink:0; }
.nb-mega-item span:nth-child(2) { flex:1; font-size:.82rem; font-weight:600; color:var(--gray-800); }
.nb-mega-arr { color:var(--gray-300); font-size:.8rem; margin-left:auto; }

/* Nav links */
.nb-links { display:flex; align-items:center; flex:1; }
.nb-link {
  padding:13px 15px; font-size:.84rem; font-weight:500;
  color:var(--gray-600); text-decoration:none; white-space:nowrap;
  transition:color .2s; position:relative;
}
.nb-link:hover { color:var(--blue); }
.nb-link.active { color:var(--blue); font-weight:700; }

/* Support 24/7 */
.nb-support {
  display:flex; align-items:center; gap:6px;
  padding:13px 18px; font-size:.82rem; font-weight:700;
  color:var(--red); text-decoration:none; flex-shrink:0;
  white-space:nowrap; margin-left:auto;
}
.nb-support:hover { opacity:.8; }
.nb-support-icon { width:20px; height:20px; object-fit:contain; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD SIDEBAR  v3
   ═══════════════════════════════════════════════════════════ */
.user-dash-layout {
  display:grid;
  grid-template-columns:260px 1fr;
  min-height:calc(100vh - 130px);
}
@media(max-width:768px) {

  .user-dash-layout{
    display:block !important;
  }

  #userSidebar{
    display:none !important;
  }

  main{
    width:100% !important;
    padding:14px !important;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr !important;
  }

  .main-grid{
    grid-template-columns:1fr !important;
  }

}

.dash-sidebar {
  background:#fff;
  border-right:1px solid var(--gray-200);
  padding:20px 14px;
  display:flex; flex-direction:column; gap:0;
  position:sticky; top:0; /* navbar height */
  max-height:100vh; overflow-y:auto;
}

/* User block */
.ds-user {
  display:flex; align-items:center; gap:12px;
  padding:14px; background:var(--gray-50);
  border-radius:var(--radius-lg); margin-bottom:20px;
}
.ds-avatar {
  width:48px; height:48px; border-radius:50%;
  background:var(--blue-100); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.1rem; flex-shrink:0; overflow:hidden;
}
.ds-avatar img { width:100%; height:100%; object-fit:cover; }
.ds-user-info { flex:1; min-width:0; }
.ds-name     { font-size:.875rem; font-weight:700; color:var(--gray-800); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ds-email    { font-size:.72rem;  color:var(--gray-500); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ds-verified { font-size:.68rem; font-weight:700; color:var(--green); margin-top:3px; }

/* Nav links */
.ds-nav { display:flex; flex-direction:column; gap:2px; flex:1; }
.ds-link {
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:var(--radius);
  font-size:.875rem; font-weight:500; color:var(--gray-600);
  text-decoration:none; transition:var(--t);
}
.ds-link:hover { background:var(--gray-100); color:var(--gray-800); }
.ds-link.active { background:var(--blue-50); color:var(--blue); font-weight:600; }
.ds-link-icon { font-size:1rem; width:20px; text-align:center; flex-shrink:0; }
.ds-signout { background:none; border:none; cursor:pointer; color:var(--red); font-family:inherit; }
.ds-signout:hover { background:var(--red-50); }

/* Help box */
.ds-help {
  margin-top:16px; padding:14px;
  background:var(--blue-50); border-radius:var(--radius-lg);
  text-align:center;
}
.ds-help-icon { width:40px; height:40px; object-fit:contain; margin:0 auto 6px; display:block; }
.ds-help-title { font-size:.82rem; font-weight:700; color:var(--gray-700); }
.ds-help-sub   { font-size:.72rem; color:var(--gray-500); margin-top:2px; }
.ds-help-btn   { margin-top:10px; width:100%; display:block; text-align:center; }

/* ═══════════════════════════════════════════════
   NAVBAR MOBILE — Hamburger Drawer
   ═══════════════════════════════════════════════ */

/* Hamburger button — kache sou desktop */
.nb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nb-hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s;
}

/* Drawer overlay */
.nb-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nb-drawer-overlay.open { display: block; }

/* Drawer panel */
.nb-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 82vw; max-width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.nb-drawer.open { transform: translateX(0); }

/* Drawer header */
.nb-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.nb-drawer-close {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
}

/* Drawer user block */
.nb-drawer-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
}
.nb-drawer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  overflow: hidden; flex-shrink: 0;
}
.nb-drawer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nb-drawer-uname  { font-size: .88rem; font-weight: 700; color: var(--gray-800); }
.nb-drawer-email  { font-size: .72rem; color: var(--gray-500); }
.nb-drawer-balance {
  font-size: .78rem; font-weight: 800;
  color: var(--blue); margin-top: 2px;
}

/* Drawer nav links */
.nb-drawer-nav { display: flex; flex-direction: column; padding: 10px 8px; flex: 1; }
.nb-drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: var(--t);
}
.nb-drawer-link:hover  { background: var(--gray-100); }
.nb-drawer-link.active { background: var(--blue-50); color: var(--blue); font-weight: 700; }
.nb-drawer-link-icon   { font-size: 1.1rem; width: 24px; text-align: center; }
.nb-drawer-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 8px 14px;
}
.nb-drawer-section-title {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--gray-400);
  padding: 8px 14px 4px;
}

/* Drawer footer */
.nb-drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 8px;
}

/* Mobile top bar adjustments */
@media(max-width: 768px) {
  /* Montre hamburger */
  .nb-hamburger { display: flex; }

  /* Kache bò bar desktop */
  .nb-bar { display: none !important; }

  /* Kache search cat, balans, non, bouton auth sou top bar */
  .nb-search-cat  { display: none; }
  .nb-balance     { display: none; }
  .nb-uname       { display: none; }
  .nb-auth-btn    { display: none; }

  /* Top bar layout */
  .nb-top-inner {
    gap: 10px;
    padding: 8px 0;
  }

  /* Search pran espas ki rete a */
  .nb-search { flex: 1; }

  /* Logo pi piti */
  .nb-logo img { height: 36px; }
}

@media(max-width:768px) {
  .nb-hamburger { display: flex; }
  .nb-bar { display: none !important; }

  /* Kache tout sa ki nan nb-actions eksepte panier */
  .nb-balance     { display: none !important; }
  .nb-uname       { display: none !important; }
  .nb-auth-btn    { display: none !important; }
  .nb-user-btn    { display: none !important; }

  /* Kache dropdown user tou */
  #nbUD           { display: none !important; }

  /* Search bar */
  .nb-search-cat  { display: none; }
  .nb-search      { flex: 1; }

  /* Top bar layout */
  .nb-top-inner   { gap: 10px; padding: 8px 0; }
  .nb-logo img    { height: 36px; }
}

@media(max-width: 768px) {
  /* Layout prensipal */
  .user-dash-layout {
    grid-template-columns: 1fr !important;
  }

  /* Sidebar kache sou mobil */
  #userSidebar { display: none; }

  /* Main padding redwi */
  #privateDash main {
    padding: 16px !important;
  }

  /* Stats: 2 kolòn */
  .stats-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 10px !important;
  }

  /* Main grid: 1 kolòn */
  .main-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Referral link: bouton anba input */
  #privateDash .card-body > div[style*="display:flex;gap:8px"] {
    flex-direction: column !important;
  }

  /* Share buttons: 2 pa liy */
  .share-btn {
    flex: 1;
    min-width: calc(50% - 4px);
  }

  /* Tablo referans: scroll horizontal */
  #privateDash .card > div[style*="padding:0 20px"] {
    overflow-x: auto;
  }

  /* Kòd referral input */
  #refCode {
    font-size: .78rem !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Landing steps */
  .landing-steps {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
  }
  .landing-hero {
    padding: 32px 16px 24px !important;
  }
  .landing-hero h1 {
    font-size: 1.5rem !important;
  }

  /* How steps: ikòn kache */
  .how-step > div:last-child {
    display: none;
  }
}

@media(max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Bouton kopye: pi piti */
  .btn-sm {
    padding: 6px 10px !important;
    font-size: .75rem !important;
  }
}