/* ============================================================
   lmora — Premium Moroccan general store homepage
   Palette: deep ink + warm gold + cream
   ============================================================ */

:root {
  /* Brand */
  --ink-950: #0a0b14;
  --ink-900: #14151f;
  --ink-800: #1f2030;
  --ink-700: #2c2d40;
  --ink-500: #5e5e74;
  --ink-300: #9b9bab;
  --ink-100: #d5d4dc;

  --gold-600: #b08433;
  --gold-500: #d4a24c;
  --gold-400: #e2b96c;
  --gold-300: #f0d094;
  --gold-100: #faecca;

  --coral-500: #e85d4e;
  --coral-600: #c94235;

  --cream: #faf8f3;
  --cream-soft: #f3eee2;
  --border: #ece5d3;
  --border-strong: #ddd2b8;

  --text: #1c1c24;
  --text-soft: #46465c;
  --muted: #6e6e80;
  --success: #16a34a;

  --shadow-sm: 0 4px 14px rgba(10, 11, 20, 0.06);
  --shadow-md: 0 14px 36px rgba(10, 11, 20, 0.1);
  --shadow-lg: 0 28px 64px rgba(10, 11, 20, 0.18);
  --shadow-gold: 0 14px 32px rgba(212, 162, 76, 0.35);

  --gradient-gold: linear-gradient(135deg, #f0d094 0%, #d4a24c 60%, #b08433 100%);
  --gradient-ink: linear-gradient(135deg, #14151f 0%, #2c2d40 100%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold-300); color: var(--ink-950); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.icon { width: 22px; height: 22px; flex-shrink: 0; stroke-width: 2; }
.icon-lg { width: 32px; height: 32px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--ink-950);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-outline {
  background: transparent;
  color: var(--ink-950);
  border: 1.5px solid var(--ink-950);
}
.btn-outline:hover { background: var(--ink-950); color: var(--cream); }

.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 162, 76, 0.12);
  color: var(--gold-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ink-950);
}
.section-title .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 56px;
}

section { padding: 90px 0; position: relative; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   Top bar & Header
   ============================================================ */
.topbar {
  background: var(--ink-950);
  color: var(--cream-soft);
  padding: 9px 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.topbar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; color: var(--gold-400); }

.header {
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}
.header.scrolled { padding: 10px 0; box-shadow: 0 4px 18px rgba(10, 11, 20, 0.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cairo', sans-serif;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink-950);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10, 11, 20, 0.25);
}
.logo-mark::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(212, 162, 76, 0.5);
}
.logo-mark svg { width: 24px; height: 24px; position: relative; z-index: 1; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-text .wordmark {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink-950);
  letter-spacing: -0.04em;
}
.logo-text .wordmark .dot { color: var(--gold-500); }
.logo-text small {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.lang-switch {
  display: inline-flex;
  background: var(--cream-soft);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-switch button {
  appearance: none;
  border: none;
  background: transparent;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
.lang-switch button:hover { color: var(--ink-950); }
.lang-switch button.active {
  background: var(--ink-950);
  color: var(--gold-400);
}

.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink-950); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(212, 162, 76, 0.18), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(232, 93, 78, 0.1), transparent 60%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10, 11, 20, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--ink-950);
  letter-spacing: -0.02em;
}
.hero-text h1 .grad {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text .subtitle {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-features {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.hero-features li .check {
  width: 26px; height: 26px;
  background: var(--ink-950);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-features li .check svg { width: 14px; height: 14px; stroke-width: 3; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-rating {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-rating .stars { display: flex; gap: 2px; }
.hero-rating .stars svg { width: 18px; height: 18px; color: var(--gold-500); fill: var(--gold-500); }
.hero-rating .label { color: var(--text-soft); font-size: 14px; }
.hero-rating .label strong { color: var(--ink-950); font-weight: 800; }
.hero-rating .avatars { display: flex; }
.hero-rating .avatars .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-right: -10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-950); font-weight: 800; font-size: 13px;
  font-family: 'Cairo', sans-serif;
}

/* Hero visual: stacked floating product cards */
.hero-visual {
  position: relative;
  height: 540px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.float-card:hover { transform: translateY(-8px) rotate(0deg) !important; box-shadow: 0 30px 80px rgba(10, 11, 20, 0.25); }
.float-card-image {
  height: 240px;
  background-color: var(--ink-950);
  background-size: cover;
  background-position: center;
}
.float-card-body { padding: 16px 18px; }
.float-card-body h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--ink-950); }
.float-card-body .price {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  color: var(--gold-600);
  font-size: 20px;
}
.float-card-body .price small { font-size: 12px; color: var(--muted); font-weight: 600; margin-right: 4px; }

.fc-1 {
  width: 260px;
  top: 20px;
  right: 30px;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
}
.fc-2 {
  width: 240px;
  top: 200px;
  left: 10px;
  transform: rotate(3deg);
  animation: float 7s ease-in-out infinite 1s;
}
.fc-3 {
  width: 220px;
  bottom: 30px;
  right: 80px;
  transform: rotate(-2deg);
  animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -3deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, -3deg)); }
}

.fc-1 { --rot: -3deg; }
.fc-2 { --rot: 3deg; }
.fc-3 { --rot: -2deg; }

/* Decorative badge */
.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-gold);
  color: var(--ink-950);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(212, 162, 76, 0.5);
  z-index: 2;
  transform: rotate(8deg);
}
.hero-badge strong { font-size: 16px; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 52px; height: 52px;
  background: var(--cream-soft);
  color: var(--gold-600);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.trust-text strong { display: block; font-weight: 800; font-size: 15px; color: var(--ink-950); }
.trust-text span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Featured products
   ============================================================ */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}
.product-card .img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }

.product-card .badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ink-950);
  color: var(--gold-400);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 1;
}
.product-card .badge svg { width: 11px; height: 11px; }
.product-card .badge.hot { background: var(--coral-500); color: #fff; }
.product-card .badge.new { background: var(--gradient-gold); color: var(--ink-950); }

.product-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-950);
  letter-spacing: -0.01em;
}
.product-card .tagline {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.product-card .features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 12px;
}
.product-card .features-list li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  padding: 4px 10px;
  background: var(--cream-soft);
  border-radius: 999px;
}
.product-card .features-list svg { width: 12px; height: 12px; color: var(--gold-500); }

.product-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.product-card .price {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--gold-600);
}
.product-card .price small { font-size: 13px; color: var(--muted); font-weight: 600; margin-right: 4px; }
.product-card .price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-right: 8px; }

.product-card .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--ink-950);
  color: var(--cream);
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  margin-top: 14px;
  transition: 0.2s;
}
.product-card .cta:hover {
  background: var(--gradient-gold);
  color: var(--ink-950);
}
.product-card .cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.product-card:hover .cta svg { transform: translateX(-4px); }

/* Coming-soon product card */
.product-card.coming-soon {
  background: linear-gradient(135deg, var(--cream-soft), #fff);
  border-style: dashed;
  border-color: var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  min-height: 460px;
}
.product-card.coming-soon:hover { transform: translateY(-4px); border-color: var(--gold-400); }
.product-card.coming-soon .cs-icon {
  width: 72px; height: 72px;
  background: var(--ink-950);
  color: var(--gold-400);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product-card.coming-soon .cs-icon svg { width: 32px; height: 32px; }
.product-card.coming-soon h3 { font-size: 22px; margin-bottom: 8px; }
.product-card.coming-soon p { color: var(--text-soft); font-size: 14px; max-width: 240px; }

/* ============================================================
   Categories
   ============================================================ */
.categories {
  background: var(--ink-950);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% 20%, rgba(212, 162, 76, 0.2), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(232, 93, 78, 0.12), transparent 60%);
}
.categories .container { position: relative; }
.categories .section-title { color: #fff; }
.categories .section-sub { color: var(--ink-300); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}
.cat-card:hover {
  background: rgba(212, 162, 76, 0.15);
  border-color: var(--gold-400);
  transform: translateY(-6px);
}
.cat-icon {
  width: 52px; height: 52px;
  background: var(--gradient-gold);
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-950);
}
.cat-icon svg { width: 26px; height: 26px; }
.cat-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.cat-card p {
  font-size: 11px;
  color: var(--ink-300);
  margin-top: 4px;
}

/* ============================================================
   Why lmora
   ============================================================ */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream);
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.18), transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform 0.5s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.why-card:hover::before { transform: translate(20%, -20%) scale(1.3); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--ink-950);
  color: var(--gold-400);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--ink-950); }
.why-card p { color: var(--text-soft); font-size: 15px; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote-icon {
  position: absolute;
  top: 22px; left: 22px;
  color: var(--gold-500);
  opacity: 0.2;
}
.testimonial .quote-icon svg { width: 44px; height: 44px; }
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial .stars svg { width: 17px; height: 17px; color: var(--gold-500); fill: var(--gold-500); }
.testimonial p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 15px;
}
.testimonial .author-info .name { font-weight: 800; color: var(--ink-950); font-size: 14px; }
.testimonial .author-info .city { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.testimonial .author-info .city svg { width: 11px; height: 11px; }

/* ============================================================
   CTA strip
   ============================================================ */
.cta-strip {
  background: var(--ink-950);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(212, 162, 76, 0.25), transparent 60%),
    radial-gradient(600px 300px at 20% 100%, rgba(232, 93, 78, 0.15), transparent 60%);
}
.cta-strip .container { position: relative; text-align: center; }
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-strip h2 .grad {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-strip p { color: var(--ink-300); font-size: 17px; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-strip .btn-primary { padding: 18px 38px; font-size: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-950);
  color: var(--ink-300);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo .logo-mark { background: rgba(255,255,255,0.06); }
.footer .logo .logo-text .wordmark { color: #fff; }
.footer .logo .logo-text small { color: var(--ink-300); }
.footer .col h5 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer .col p { font-size: 14px; color: var(--ink-300); margin: 14px 0; }
.footer .col ul { list-style: none; }
.footer .col ul li { margin-bottom: 8px; }
.footer .col ul a { color: var(--ink-300); font-size: 14px; transition: color 0.15s; }
.footer .col ul a:hover { color: var(--gold-400); }
.footer .socials { display: flex; gap: 10px; margin-top: 16px; }
.footer .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s;
}
.footer .socials a:hover { background: var(--gold-500); color: var(--ink-950); }
.footer .socials svg { width: 16px; height: 16px; }
.footer .bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-500);
  font-size: 13px;
}

/* ============================================================
   LTR adjustments
   ============================================================ */
html[dir="ltr"] body { direction: ltr; }
html[dir="ltr"] .topbar .container,
html[dir="ltr"] .header .container { direction: ltr; }
html[dir="ltr"] .logo-mark::after { right: auto; left: -6px; }
html[dir="ltr"] .hero-rating .avatars .avatar { margin-right: 0; margin-left: -10px; }
html[dir="ltr"] .product-card .price small { margin-right: 0; margin-left: 4px; }
html[dir="ltr"] .product-card .price-old { margin-right: 0; margin-left: 8px; }
html[dir="ltr"] .product-card:hover .cta svg { transform: translateX(4px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar .container { gap: 14px; font-size: 12px; }
  .topbar span:nth-child(3) { display: none; }
  .hero-visual { height: 420px; }
  .float-card { transform: scale(0.85); transform-origin: top right; }
  .fc-1 { right: 10px; }
  .fc-2 { left: 0; }
  .fc-3 { right: 40px; }
}
