/* ====================================================================
   ALQUSSADI — Design System
   Arabic RTL e-commerce. Deep blue palette extracted from logo.
   ==================================================================== */

:root {
  /* Brand */
  --navy-900: #0B1849;
  --navy-800: #0E1F5B;
  --navy-700: #1A2F7A;
  --blue-600: #2456C8;
  --blue-500: #3A6BDB;
  --blue-400: #6EA0E8;
  --blue-100: #DCE7F8;
  --blue-50:  #EAF1FB;

  /* Warm accent for CTA */
  --coral-600: #F5552E;
  --coral-500: #FF6B4A;
  --coral-100: #FFE4DC;

  /* Support */
  --gold-500:  #F5A524;
  --green-500: #16A34A;
  --green-100: #DCFCE7;

  /* Neutrals */
  --ink-900: #0C1330;
  --ink-700: #2B3354;
  --ink-500: #6B7390;
  --ink-400: #8A92AE;
  --ink-300: #BBC2D6;
  --line:    #E8ECF3;
  --bg-soft: #F4F6FB;
  --bg:      #FFFFFF;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Shadows (soft, blue-tinted) */
  --sh-1: 0 1px 2px rgba(14, 31, 91, 0.06), 0 1px 3px rgba(14, 31, 91, 0.04);
  --sh-2: 0 4px 14px rgba(14, 31, 91, 0.08), 0 1px 3px rgba(14, 31, 91, 0.04);
  --sh-3: 0 18px 40px -12px rgba(14, 31, 91, 0.18), 0 6px 16px rgba(14, 31, 91, 0.08);
  --sh-cta: 0 12px 24px -8px rgba(245, 85, 46, 0.5);

  /* Type */
  --f-ar: "Tajawal", "Manrope", system-ui, sans-serif;
  --f-en: "Manrope", "Tajawal", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  font-family: var(--f-ar);
  color: var(--ink-900);
  background: var(--bg-soft);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.single-product{
    background: #fff !important;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* Container */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Top utility bar ===== */
.utilbar {
  background: var(--navy-900);
  color: #C7D3F0;
  font-size: 13px;
}
.utilbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
.utilbar .left { display: flex; align-items: center; gap: 18px; }
.utilbar .right { display: flex; align-items: center; gap: 18px; }
.utilbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.08); color: #fff; font-weight: 500;
}
.utilbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral-500); }
.utilbar a:hover { color: #fff; }
.utilbar .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

/* ===== Header ===== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 84px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 115px; height: 100%;
  border-radius: var(--r-md);
  background: #fff;
  display: grid; place-items: center;
}
.brand-mark img { width: 100%; height: auto; }
.brand-name {
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  line-height: 1;
}
.brand-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* Search */
.alq-search-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--r-full);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.alq-search-bar:focus-within {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58, 107, 219, 0.12);
}
.alq-search-bar .cat {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  font-weight: 500; color: var(--ink-700);
  font-size: 14px;
  white-space: nowrap;
}
.alq-search-bar input {
  flex: 1;
  border: 0; background: transparent; outline: none;
  padding: 18px 18px;
  font-family: var(--f-ar);
  font-size: 15px;
  color: var(--ink-900);
}
.alq-search-bar input::placeholder { color: var(--ink-400); }
.alq-search-bar .go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px;
  background: var(--blue-600);
  color: #fff;
  transition: background .15s;
}
.alq-search-bar .go:hover { background: var(--navy-700); }

/* Header icons */
.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--blue-50); color: var(--navy-800); }
.icon-btn .ic { width: 22px; height: 22px; color: var(--navy-800); }
.icon-btn .label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.icon-btn .label small { color: var(--ink-500); font-size: 11px; }
.icon-btn .badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--coral-500);
  color: #fff;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 11px;
  height: 18px; min-width: 18px;
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}

/* ===== Primary nav ===== */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav .row {
  display: flex; align-items: center;
  height: 56px; gap: 4px;
  overflow-x: auto;
}
.nav-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-md);
  font-weight: 600; font-size: 14px;
  margin-left: 14px;
  white-space: nowrap;
}
.nav-all:hover { background: var(--navy-900); }
.nav a.nav-link {
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  white-space: nowrap;
  transition: color .15s, background .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav a.nav-link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav .hot { color: var(--coral-600); }
.nav .nav-spacer { flex: 1; }
.nav .nav-extras { display: flex; gap: 8px; align-items: center; color: var(--ink-500); font-size: 13px; }

/* ===== Hero (v2 — product-focused, conversion-led) ===== */
.hero {
  padding: 28px 0 8px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

/* Main hero shell */
.hero2 {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: #FAFBFE;
  border: 1px solid var(--line);
  min-height: 480px;
  box-shadow: var(--sh-2);
  isolation: isolate;
}
.hero2::before {
  /* dotted grid backdrop */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(36,86,200,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
}
.hero2-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero2-bg .arc {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(110,160,232,0.35), rgba(110,160,232,0) 60%);
}
.hero2-bg .arc.a { width: 520px; height: 520px; left: -120px; top: -180px; }
.hero2-bg .arc.b { width: 380px; height: 380px; left: 30%; bottom: -200px; opacity: .7; }
.hero2-bg .ring {
  position: absolute;
  width: 480px; height: 480px;
  left: -100px; top: 50%; transform: translateY(-50%);
  border: 1.5px dashed rgba(36,86,200,0.18);
  border-radius: 50%;
}
.hero2-bg .ring2 {
  position: absolute;
  width: 320px; height: 320px;
  left: -20px; top: 50%; transform: translateY(-50%);
  border: 1.5px dashed rgba(36,86,200,0.15);
  border-radius: 50%;
}

/* Layout: text right (RTL start) + product left (RTL end) */
.hero2-row {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 56px 56px 48px;
  min-height: 480px;
}

/* Copy */
.hero2-copy { padding-left: 8px; }
.hero2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-100);
  color: var(--coral-600);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero2-eyebrow .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 0 rgba(255,107,74,0.6);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.hero2 h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero2 h1 .accent {
  color: var(--blue-600);
  position: relative;
  display: inline-block;
}
.hero2 h1 .accent::after {
  content: "";
  position: absolute;
  inset: auto 0 4px 0;
  height: 10px;
  background: var(--coral-100);
  z-index: -1;
  border-radius: 4px;
}
.hero2 .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0 0 32px;
  max-width: 44ch;
}

/* CTA group */
.hero2-cta {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px;
}
.btn-primary-xl {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--coral-500);
  color: #fff;
  padding: 18px 32px;
  border-radius: var(--r-md);
  font-size: 16px; font-weight: 800;
  box-shadow: 0 14px 30px -10px rgba(245,85,46,0.55), 0 4px 8px rgba(245,85,46,0.2);
  transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: 0.01em;
}
.btn-primary-xl:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(245,85,46,0.65), 0 6px 12px rgba(245,85,46,0.25);
}
.btn-primary-xl .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  transition: transform .2s;
}
.btn-primary-xl:hover .arrow { transform: translateX(-4px); }
.hero2-cta .secondary {
  color: var(--navy-800);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .15s;
}
.hero2-cta .secondary:hover { border-color: var(--navy-800); }

/* Trust micro-row */
.hero2-trust {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.hero2-trust .ti {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-700); font-weight: 600;
}
.hero2-trust .ti svg { color: var(--green-500); }
.hero2-trust .div { width: 1px; height: 14px; background: var(--line); }
.hero2-trust .pays {
  display: flex; align-items: center; gap: 6px;
  margin-right: auto;
}
.hero2-trust .pays span {
  background: #fff; border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 6px;
  font-family: var(--f-en); font-weight: 800; font-size: 10px;
  color: var(--ink-700); letter-spacing: 0.04em;
}

/* Product showcase (left) */
.hero2-product {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.hero2-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #EAF1FB 60%, #DCE7F8 100%);
  box-shadow:
    inset 0 -20px 60px rgba(36,86,200,0.08),
    0 30px 60px -20px rgba(14,31,91,0.25);
  display: grid; place-items: center;
}
.hero2-stage::after {
  /* floor shadow under product */
  content: "";
  position: absolute;
  bottom: 8%;
  left: 18%; right: 18%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(14,31,91,0.25), transparent 70%);
  filter: blur(4px);
}
.hero2-product .product-svg {
  position: relative;
  width: 78%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(14,31,91,0.18));
  animation: floaty 6s ease-in-out infinite;
}

/* Floating mini-cards around product */
.hero2-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--sh-2);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
}
.hero2-chip .ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero2-chip .t { font-size: 12px; color: var(--ink-500); line-height: 1.2; }
.hero2-chip .v { font-size: 14px; font-weight: 800; color: var(--navy-900); line-height: 1.2; margin-top: 2px; }
.hero2-chip.tl { top: 10%; right: -10px; animation: floaty 5s ease-in-out infinite; }
.hero2-chip.bl { bottom: 14%; left: -8px; animation: floaty-rev 6s ease-in-out infinite; }
.hero2-chip.tr { top: 22%; left: -12px; animation: floaty-rev 7s ease-in-out infinite; }

.hero2-pricetag {
  position: absolute;
  top: 4%;
  left: 8%;
  z-index: 3;
  background: var(--coral-500);
  color: #fff;
  border-radius: 50%;
  width: 92px; height: 92px;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 16px 30px -8px rgba(245,85,46,0.55);
  transform: rotate(-12deg);
  font-family: var(--f-en);
  animation: floaty 4.5s ease-in-out infinite;
  align-content: space-evenly;
}
.hero2-pricetag .o { font-size: 11px; font-weight: 700; opacity: 0.9; }
.hero2-pricetag .n { font-size: 26px; font-weight: 900; line-height: 1; margin-top: 2px; }
.hero2-pricetag .u { font-size: 10px; font-weight: 700; opacity: 0.9; margin-top: 2px; }

/* Side hero stack v2 — minimal */
.hero-side2 {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.side2-card {
  position: relative;
  border-radius: var(--r-2xl);
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}
.side2-card.a { background: linear-gradient(160deg, #1A2F7A 0%, #2456C8 100%); color: #fff; }
.side2-card.b { background: linear-gradient(160deg, #FFE4DC 0%, #FFD0BD 100%); color: var(--navy-900); }
.side2-card .tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 800;
  padding: 5px 10px; border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.side2-card.a .tag { background: rgba(255,255,255,0.18); color: #fff; }
.side2-card.b .tag { background: var(--coral-500); color: #fff; }
.side2-card h3 {
  font-size: 21px; font-weight: 800;
  margin: 12px 0 6px;
  line-height: 1.3;
}
.side2-card p {
  font-size: 13px;
  margin: 0 0 16px;
  opacity: 0.85;
  line-height: 1.5;
}
.side2-card .row {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 2;
}
.side2-card .price {
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.side2-card .price small { font-weight: 600; font-size: 12px; opacity: 0.7; margin-right: 4px; }
.side2-card .go {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .2s;
}
.side2-card.a .go { background: var(--coral-500); color: #fff; }
.side2-card.b .go { background: var(--navy-800); color: #fff; }
.side2-card .go:hover { transform: translateX(-4px); }
.side2-card .deco {
  position: absolute;
  left: -20px; bottom: -20px;
  width: 140px; height: 140px;
  opacity: 0.18;
  pointer-events: none;
}
.side2-card.b .deco { opacity: 0.28; }
.hero-main {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1A2F7A 0%, #2456C8 55%, #4F86E0 100%);
  color: #fff;
  min-height: 460px;
  box-shadow: var(--sh-3);
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-shapes .blob {
  position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: 0.55;
}
.hero-bg-shapes .b1 { width: 360px; height: 360px; background: #6EA0E8; top: -80px; left: -60px; }
.hero-bg-shapes .b2 { width: 280px; height: 280px; background: #F5A524; bottom: -90px; right: 18%; opacity: 0.35; }
.hero-bg-shapes .b3 { width: 220px; height: 220px; background: #FF6B4A; top: 30%; left: 30%; opacity: 0.28; }

.hero-content {
  position: relative; z-index: 2;
  padding: 56px 56px 56px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  height: 100%;
}
.hero-copy { padding: 0 0 0 8px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  margin-bottom: 22px;
}
.hero-eyebrow .spark { width: 16px; height: 16px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero h1 .hl {
  background: linear-gradient(120deg, #FFD68A, #FF9F66);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #535861;
  margin: 0 0 28px;
  max-width: 36ch;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-full);
  font-size: 15px; font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-cta {
  background: var(--coral-500);
  color: #fff;
  box-shadow: var(--sh-cta);
}
.btn-cta:hover { background: var(--coral-600); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; gap: 28px; }
.hero-stats .s { color: #fff; }
.hero-stats .n { font-family: var(--f-en); font-weight: 800; font-size: 22px; }
.hero-stats .l { color: #BBCBE9; font-size: 13px; }

.hero-illu {
  position: relative;
  height: 100%;
  min-height: 380px;
}

/* Side hero stack */
.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.hero-side .card {
  position: relative;
  border-radius: var(--r-2xl);
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px;
}
.hero-side .card.kettle { background: linear-gradient(135deg, #FFE4DC 0%, #FFF6F2 100%); }
.hero-side .card.pots   { background: linear-gradient(135deg, #DCE7F8 0%, #F4F8FF 100%); }
.hero-side .card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--r-full);
  align-self: flex-start;
}
.hero-side .card.kettle .tag { background: var(--coral-500); color: #fff; }
.hero-side .card.pots .tag { background: var(--blue-600); color: #fff; }
.hero-side .card h3 { font-size: 22px; margin: 10px 0 4px; color: var(--navy-900); font-weight: 800; }
.hero-side .card p { font-size: 13px; color: var(--ink-700); margin: 0; }
.hero-side .card .price { font-family: var(--f-en); font-weight: 800; color: var(--navy-800); font-size: 22px; }
.hero-side .card .price small { font-weight: 500; color: var(--ink-500); font-size: 12px; margin-right: 4px; }
.hero-side .card .illu {
  position: absolute;
  width: 150px; height: 150px;
  left: -10px; bottom: -10px;
}

/* ===== Trust strip ===== */
.trust {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  box-shadow: var(--sh-1);
}
.trust .item { display: flex; align-items: center; gap: 14px; }
.trust .ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center;
}
.trust .ico svg { width: 22px; height: 22px; }
.trust .t { font-weight: 700; font-size: 14px; color: var(--navy-900); }
.trust .s { font-size: 12px; color: var(--ink-500); margin-top: 2px; }
.trust .item + .item { border-right: 1px solid var(--line); padding-right: 24px; }

/* ===== Section ===== */
section.block { padding: 64px 0 0; }
section.block + section.block { padding-top: 56px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.section-head h2 {
  font-size: 30px; font-weight: 800;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.01em;
}
.section-head .sub {
  color: var(--ink-500);
  font-size: 14px;
  margin-top: 6px;
}
.section-head .more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-600); font-weight: 600; font-size: 14px;
}
.section-head .more:hover { color: var(--navy-800); }

/* ===== Categories ===== */
.cats {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 12px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--blue-100); }
.cat-tile .cbg {
  width: 64px; height: 64px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
}
.cat-tile .label { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.cat-tile .count { font-family: var(--f-en); font-size: 11px; color: var(--ink-500); }

/* ===== Promo banners ===== */
.promos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
.promo {
  position: relative;
  border-radius: var(--r-2xl);
  padding: 28px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column; justify-content: space-between;
}
.promo.lg { min-height: 240px; padding: 36px; }
.promo.a { background: linear-gradient(135deg, #0E1F5B 0%, #2456C8 100%); color: #fff; }
.promo.b { background: linear-gradient(135deg, #FFE4DC 0%, #FFCFC0 100%); }
.promo.c { background: linear-gradient(135deg, #DCFCE7 0%, #BFF1D1 100%); }
.promo .kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.promo h3 { font-size: 26px; font-weight: 800; margin: 8px 0 6px; line-height: 1.2; }
.promo.b h3, .promo.c h3 { color: var(--navy-900); }
.promo p { font-size: 13px; opacity: 0.85; margin: 0 0 14px; max-width: 32ch; }
.promo .lnk {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px;
}
.promo.a .lnk { color: #FFD68A; }
.promo.b .lnk, .promo.c .lnk { color: var(--navy-800); }
.promo .deco {
  position: absolute;
  left: -8px; bottom: -8px;
  width: 140px; height: 140px;
}
.promo.lg .deco { width: 220px; height: 220px; left: 24px; bottom: -20px; }

/* ===== Flash sale (light, accent-led) ===== */
.flash {
  border-radius: var(--r-2xl);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-900);
  padding: 28px 32px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.flash::before {
  /* subtle warm accent wash, top-left corner only */
  content: "";
  position: absolute;
  top: -180px; left: -120px;
  width: 460px; height: 320px;
  background: radial-gradient(closest-side, rgba(255,107,74,0.18), transparent 70%);
  pointer-events: none;
}
.flash::after {
  /* subtle blue accent wash, bottom-right */
  content: "";
  position: absolute;
  bottom: -200px; right: -120px;
  width: 480px; height: 320px;
  background: radial-gradient(closest-side, rgba(36,86,200,0.10), transparent 70%);
  pointer-events: none;
}
.flash-head {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.flash-title { display: flex; align-items: center; gap: 14px; }
.flash-title .bolt {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: linear-gradient(135deg, #FF6B4A, #F5A524);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -4px rgba(245,85,46,0.35);
}
.flash-title h2 {
  font-size: 26px; margin: 0; font-weight: 800;
  color: var(--navy-900);
  display: flex; align-items: center; gap: 10px;
}
.flash-title h2 .live {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral-100); color: var(--coral-600);
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
}
.flash-title h2 .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-500); animation: pulseDot 1.6s ease-in-out infinite;
}
.flash-title .sub { font-size: 13px; color: var(--ink-500); margin-top: 4px; }
.timer {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-en);
}
.timer .lbl { font-size: 13px; color: var(--ink-500); margin-left: 6px; font-family: var(--f-ar); font-weight: 600; }
.timer .seg {
  background: var(--navy-900); color: #fff;
  font-weight: 800; font-size: 18px;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -2px rgba(14,31,91,0.25);
}
.timer .colon { color: var(--ink-400); font-weight: 800; }

.flash-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* ===== Product card ===== */
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--blue-100); }
.product .media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}
.product .media .ph {
  position: absolute; inset: 14px;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(45deg, rgba(36,86,200,0.06) 0 8px, rgba(36,86,200,0.02) 8px 16px),
    var(--blue-50);
  display: grid; place-items: center;
  color: var(--ink-500);
  font-family: var(--f-en); font-size: 11px; letter-spacing: 0.05em;
  text-align: center; padding: 10px;
}
.product .badges {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.product .badge {
  font-family: var(--f-en); font-weight: 800; font-size: 11px;
  padding: 4px 8px; border-radius: 6px; letter-spacing: 0.02em;
}
.product .badge.sale { background: var(--coral-500); color: #fff; }
.product .badge.new  { background: var(--green-500); color: #fff; }
.product .badge.best { background: var(--gold-500); color: #2A1A00; }
.product .fav {
  position: absolute; top: 10px; left: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-500);
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: color .15s, transform .15s;
}
.product .fav:hover { color: var(--coral-500); transform: scale(1.06); }
.product .body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.product .brand { font-family: var(--f-en); font-size: 11px; color: var(--ink-500); letter-spacing: 0.05em; text-transform: uppercase; }
.product .name {
  font-size: 14px; font-weight: 600;
  color: var(--navy-900); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.9em;
}
.product .rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-500); font-family: var(--f-en);
}
.product .stars { color: var(--gold-500); letter-spacing: 1px; font-size: 13px; }
.product .price-row {
  display: flex; align-items: baseline; gap: 8px; margin-top: 4px;
  font-family: var(--f-en);
}
.product .price { font-size: 19px; font-weight: 800; color: var(--navy-900); }
.product .price .cur { font-size: 12px; color: var(--ink-500); margin-right: 2px; font-weight: 600; }
.product .was { font-size: 13px; color: var(--ink-400); text-decoration: line-through; }
.product .save { font-size: 11px; font-weight: 700; color: var(--coral-600); }
.product .add {
  margin-top: 8px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: var(--r-md);
  padding: 10px 12px;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, color .15s;
}
.product .add:hover { background: var(--blue-600); color: #fff; }

.product .stockbar {
  height: 6px; background: var(--line);
  border-radius: var(--r-full); overflow: hidden; margin-top: 6px;
}
.product.flash-card { background: #fff; border-color: var(--line); }
.product.flash-card .stockbar { background: var(--bg-soft); }
.product.flash-card .stockbar-fill { height: 100%; background: linear-gradient(90deg, #FF6B4A, #F5A524); border-radius: var(--r-full); }
.product.flash-card .stockmeta { display: flex; justify-content: space-between; font-family: var(--f-en); font-size: 11px; color: var(--ink-500); margin-top: 4px; }

/* ===== Why choose us ===== */
.why-wrap {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 48px;
  box-shadow: var(--sh-1);
  border: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: right;
  padding: 24px;
  border-radius: var(--r-xl);
  background: var(--bg-soft);
  transition: background .2s, transform .2s;
}
.why-card:hover { background: var(--blue-50); transform: translateY(-3px); }
.why-card .icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: #fff;
  color: var(--blue-600);
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: var(--sh-1);
}
.why-card .icon svg { width: 28px; height: 28px; }
.why-card h4 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--navy-900); }
.why-card p { font-size: 13px; line-height: 1.7; color: var(--ink-500); margin: 0; }

/* ===== Brand strip ===== */
.brands {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 22px;
  border: 1px solid var(--line);
}
.brands .b {
  height: 48px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-family: var(--f-en); font-weight: 800;
  color: var(--ink-500); letter-spacing: 0.04em;
  font-size: 13px;
  transition: color .15s, background .15s;
}
.brands .b:hover { color: var(--navy-800); background: var(--blue-50); }

/* ===== Newsletter ===== */
.newsletter {
  margin-top: 56px;
  background: linear-gradient(135deg, #0E1F5B 0%, #2456C8 100%);
  border-radius: var(--r-2xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter h2 { font-size: 30px; margin: 0 0 8px; font-weight: 800; }
.newsletter p { color: #BBCBE9; margin: 0 0 20px; font-size: 14px; line-height: 1.7; max-width: 44ch; }
.newsletter form {
  display: flex; gap: 8px;
  background: #fff;
  border-radius: var(--r-full);
  padding: 6px;
}
.newsletter input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 0 18px; font-family: var(--f-ar); font-size: 15px;
}
.newsletter button {
  background: var(--coral-500); color: #fff;
  padding: 12px 22px; border-radius: var(--r-full);
  font-weight: 700;
}
.newsletter .deco {
  position: absolute;
  left: -40px; bottom: -40px;
  width: 320px; height: 320px;
  opacity: 0.7;
}

/* ===== Footer ===== */
footer {
  margin-top: 48px;
  background: var(--navy-900);
  color: #C7D3F0;
}
footer .top {
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 36px;
}
footer h5 {
  color: #fff; font-weight: 700; font-size: 15px;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { font-size: 13px; color: #B5C2E0; transition: color .15s; }
footer a:hover { color: #fff; }
footer .brand-col p { font-size: 13px; line-height: 1.8; color: #95A4C7; margin: 16px 0 20px; max-width: 36ch; }
footer .socials { display: flex; gap: 8px; }
footer .socials a {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: #fff;
}
footer .socials a:hover { background: var(--blue-600); }
footer .apps { display: flex; gap: 8px; flex-direction: column; }
footer .apps a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  font-size: 13px;
}
footer .apps small { color: #95A4C7; font-size: 11px; display: block; }
footer .apps strong { font-family: var(--f-en); font-weight: 700; }

footer .pay {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 12px;
  color: #95A4C7;
}
footer .pay .methods { display: flex; gap: 8px; }
footer .pay .methods .m {
  background: #fff; color: var(--navy-900);
  padding: 6px 10px; border-radius: 6px;
  font-family: var(--f-en); font-size: 11px; font-weight: 800;
  letter-spacing: 0.03em;
}

/* ===== Animation: subtle floating + fade-in ===== */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
@keyframes floaty-rev {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(8px) rotate(-1.5deg); }
}
.floaty { animation: floaty 5s ease-in-out infinite; transform-origin: center; }
.floaty-r { animation: floaty-rev 6s ease-in-out infinite; transform-origin: center; }
.floaty-s { animation: floaty 7s ease-in-out infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .7s ease-out both; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; }

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,74,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(255,107,74,0); }
}
.pulse { animation: pulseDot 1.6s ease-in-out infinite; }

/* Scrollbar polish */
.nav .row::-webkit-scrollbar { height: 0; }

/* =====================================================================
   RESPONSIVE — Mobile-first
   Breakpoints: 576 / 768 / 1024 / 1280
   ===================================================================== */

/* ── Global safe-scroll ── */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* ── Utility visibility helpers ── */
.util-hide-xs { display: none; }
.util-hide-sm { display: none; }
.hide-mobile  { display: none !important; }
.hide-tablet  { display: none !important; }

/* ── Hamburger button ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  /* border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line); */
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
  order: -1; /* appears before brand in RTL */
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* .hamburger:hover { background: var(--blue-50); } */

/* ── Mobile nav overlay ── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 200;
  box-shadow: -4px 0 24px rgba(14,31,91,0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(120%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-title {
  font-weight: 800;
  font-size: 17px;
  color: var(--navy-900);
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: background .15s;
}
.mobile-nav-close:hover { background: var(--blue-50); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-links a {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a.hot-link {
  color: var(--coral-600);
  font-weight: 700;
}
.mobile-nav-footer {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}
.mob-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  color: var(--navy-800);
  font-weight: 700;
  font-size: 14px;
}
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 199;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav-backdrop.open {
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════════════
   MOBILE HEADER — 2-row flexbox layout
   Row 1: [cart]  [LOGO centered]  [hamburger]
   Row 2: [────── full-width search ──────]
   ════════════════════════════════════════════════ */
.header-row {
  display: flex;
  flex-wrap: wrap;               /* allows Row 2 to break onto new line  */
  align-items: center;
  padding: 10px 0 8px;
  gap: 0;
  min-height: 0;
  height: auto;
}

/* ── Left slot: cart (flex:1, content aligned left) ── */
.header-row .header-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  order: 1;
  min-width: 0;
}

/* ── Center slot: logo (flex:1, content centered) ── */
.header-row .brand {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
  position: static;
  transform: none;
  left: auto;
  min-width: 0;
}

/* ── Right slot: hamburger (flex:1, content aligned right) ── */
.header-row .hamburger {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  margin: 0;
  min-width: 0;
}

/* ── Row 2: search bar breaks to new line ── */
.header-row .alq-search-bar {
  order: 4;
  flex: 0 0 100%;             /* full width = forces new row */
  width: 100%;
  margin-top: 8px;
  margin-bottom: 12px;
  border-radius: var(--r-md);
}
.header-row .alq-search-bar .cat  { display: none; }
.header-row .alq-search-bar input { padding: 10px 14px; font-size: 14px; }
.header-row .alq-search-bar .go   { width: 44px; flex-shrink: 0; }

/* ── Primary Nav: hidden on mobile ── */
.nav { display: none; }

/* ── Mobile icon buttons: icon only, no label ── */
.icon-btn { padding: 8px 10px; gap: 6px; }
.icon-btn .label { display: none; }
.icon-btn .ic { width: 45px; height: 22px; }


/* ── Hero ── */
/* Mobile: full-width hero, stacked */
.hero { padding: 16px 0 0; }
.hero-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
/* Side cards become a row below hero */
.hero-side2 {
  grid-template-rows: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.side2-card { min-height: 160px; padding: 18px; }
.side2-card h3 { font-size: 17px; margin: 8px 0 4px; }
.side2-card p { font-size: 12px; margin: 0 0 12px; }
.side2-card .deco { width: 100px; height: 100px; }

/* Hero2 inner: stack on mobile */
.hero2-row {
  grid-template-columns: 1fr;
  padding: 28px 24px 24px;
  min-height: auto;
  gap: 24px;
}
.hero2 { min-height: auto; }
.hero2 h1 { font-size: 30px; margin-bottom: 12px; }
.hero2 .lead { font-size: 14px; margin-bottom: 20px; }
.hero2-cta { flex-wrap: wrap; gap: 10px; }
.btn-primary-xl { padding: 14px 24px; font-size: 14px; }
.hero2-trust { gap: 10px; padding-top: 16px; }
.hero2-trust .div { display: none; }
.hero2-trust .ti { font-size: 11px; }
.hero2-product { min-height: 260px; }
.hero2-stage { max-width: 280px; }
.hero2-chip { display: none; } /* hide floating chips on mobile */
.hero2-pricetag { width: 90px; height: 90px; }
.hero2-pricetag .n { font-size: 20px; }
.hero2-eyebrow { font-size: 11px; }

/* Trust strip: 2-col on mobile */
.trust {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
}
.trust .item + .item { border-right: none; padding-right: 0; }
.trust .item { flex-direction: column; align-items: flex-start; gap: 8px; }

/* ── Categories ── */
.cats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
.cat-tile { padding: 12px 8px 10px; }
.cat-tile .cbg { width: 48px; height: 48px; }
.cat-tile .label { font-size: 11px; }
.cat-tile .count { display: none; }

/* ── Promos ── */
.promos { grid-template-columns: 1fr; gap: 12px; }
.promo { min-height: 160px; padding: 22px; }
.promo.lg { min-height: 180px; padding: 24px; }
.promo h3 { font-size: 20px; }

/* ── Flash sale grid ── */
.flash-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.flash { padding: 20px 16px 20px; }
.flash-head { flex-direction: column; align-items: flex-start; gap: 12px; }
.flash-title h2 { font-size: 20px; }
.flash-title .bolt { width: 36px; height: 36px; }
.timer .seg { width: 36px; height: 36px; font-size: 15px; }

/* ── Products grid ── */
.products { grid-template-columns: 1fr; gap: 12px; }
.flash-grid { grid-template-columns: 1fr; }

/* ── Why grid ── */
.why-wrap { padding: 24px; }
.why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card { padding: 18px; }
.why-card .icon { width: 44px; height: 44px; margin-bottom: 12px; }
.why-card h4 { font-size: 14px; }
.why-card p { font-size: 12px; }

/* ── Brands ── */
.brands { grid-template-columns: repeat(4, 1fr); gap: 8px; }

/* ── Newsletter ── */
.newsletter {
  grid-template-columns: 1fr;
  padding: 28px 24px;
  gap: 20px;
}
.newsletter h2 { font-size: 22px; }
.newsletter form { flex-direction: column; border-radius: var(--r-lg); }
.newsletter input { padding: 14px 16px; }
.newsletter button { padding: 12px 18px; border-radius: var(--r-md); }

/* ── Footer ── */
footer .top {
  grid-template-columns: 1fr;
  padding: 36px 0 24px;
  gap: 28px;
}
footer .pay {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
footer .pay .methods { flex-wrap: wrap; gap: 6px; }

/* ── Section spacing ── */
section.block { padding: 36px 0 0; }
.section-head h2 { font-size: 22px; }

/* ── Container ── */
.container { padding: 0 16px; }

/* ================================================================
   576px — Small mobile landscape / large phones
   ================================================================ */
@media (min-width: 576px) {
  .util-hide-xs { display: inline-flex; }
  .container { padding: 0 20px; }
  .hero2 h1 { font-size: 36px; }
  .cats { grid-template-columns: repeat(4, 1fr); }
  .cat-tile .count { display: block; }
  .products { grid-template-columns: 1fr 1fr; }
  .flash-grid { grid-template-columns: 1fr 1fr; }
  .newsletter form { flex-direction: row; border-radius: var(--r-full); }
  .newsletter input { padding: 0 18px; }
  .newsletter button { padding: 12px 22px; border-radius: var(--r-full); }
  .container.header-row {
    padding: 5px;
}
}

/* ================================================================
   768px — Tablet
   ================================================================ */
@media (min-width: 768px) {
  .util-hide-sm { display: inline-flex; }
  .hide-tablet  { display: inline-flex !important; }
  .hide-mobile  { display: flex !important; }
  .hamburger    { display: none; }
  .nav          { display: block; }
  .mobile-nav, .mobile-nav-backdrop { display: none !important; }

  .container { padding: 0 24px; }

  /* Header — reset to desktop 3-column grid */
  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    height: 84px;
    gap: 28px;
    flex-wrap: unset;
    padding: 0;
    align-items: center;
  }
  .header-row .brand {
    position: static;
    transform: none;
    left: auto;
    order: unset;
  }
  .header-row .hamburger      { display: none; order: unset; margin: 0; }
  .header-row .header-actions { order: unset; gap: 8px; margin: 0; }
  .header-row .alq-search-bar {
    order: unset;
    flex-basis: auto;
    width: auto;
    margin-top: 0;
    border-radius: var(--r-full);
  }
  .header-row .alq-search-bar .cat    { display: flex; }
  .header-row .alq-search-bar input   { padding: 18px 18px; font-size: 15px; }

  /* Restore full icon-btn on desktop */
  .icon-btn { padding: 10px 14px; gap: 10px; }
  .icon-btn .label { display: flex; }
  .icon-btn .ic { width: 22px; height: 22px; }


  .hero { padding: 24px 0 0; }
  .hero-grid { grid-template-columns: 1fr 280px; gap: 16px; }
  .hero2-row {
    grid-template-columns: 1.05fr 1fr;
    padding: 40px 40px 32px;
    gap: 24px;
  }
  .hero2 h1 { font-size: 30px; }
  .hero2 .lead { font-size: 15px; }
  .hero2-product { min-height: 340px; }
  .hero2-chip { display: flex; }
  .hero-side2 { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .side2-card { min-height: 200px; }

  /* Trust */
  .trust { grid-template-columns: repeat(4, 1fr); }
  .trust .item { flex-direction: row; align-items: center; gap: 14px; }
  .trust .item + .item { border-right: 1px solid var(--line); padding-right: 24px; }

  /* Cats */
  .cats { grid-template-columns: repeat(5, 1fr); gap: 10px; }

  /* Promos */
  .promos { grid-template-columns: 2fr 1fr; gap: 14px; }

  /* Products */
  .products     { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .flash-grid   { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Brands */
  .brands { grid-template-columns: repeat(5, 1fr); }

  /* Newsletter */
  .newsletter { grid-template-columns: 1.2fr 1fr; gap: 24px; padding: 40px; }
  .newsletter h2 { font-size: 26px; }
  .newsletter form { flex-direction: row; border-radius: var(--r-full); }

  /* Footer */
  footer .top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 28px;
  }

  /* Section */
  section.block { padding: 56px 0 0; }
  .section-head h2 { font-size: 28px; }
}

/* ================================================================
   1024px — Small desktop
   ================================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 28px; }
  .header-row { height: 84px; gap: 28px; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr 320px; }
  .hero2-row { padding: 56px 56px 48px; }
  .hero2 h1  { font-size: 38px; }
  .hero2 .lead { font-size: 17px; }
  .hero2-product { min-height: 420px; }
  .hero-side2 { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }

  /* Cats */
  .cats { grid-template-columns: repeat(8, 1fr); gap: 12px; }
  .cat-tile { padding: 18px 12px 16px; }
  .cat-tile .cbg { width: 64px; height: 64px; }
  .cat-tile .label { font-size: 13px; }

  /* Promos */
  .promos { grid-template-columns: 2fr 1fr 1fr; }

  /* Products */
  .products     { grid-template-columns: repeat(4, 1fr); }
  .flash-grid   { grid-template-columns: repeat(5, 1fr); gap: 14px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .why-wrap { padding: 48px; }

  /* Brands */
  .brands { grid-template-columns: repeat(7, 1fr); }

  /* Footer */
  footer .top {
    grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
    gap: 36px;
  }
}

/* ================================================================
   1280px — Large desktop
   ================================================================ */

/* ================================================================
   GLOBAL PAGE LAYOUT — page.php and any non-WC internal page
   (.page-title and .breadcrumb are also defined in woocommerce.css
   for WC pages; these declarations make them available globally.)
   ================================================================ */

/* Page title bar — consistent with shop/search pages */
.page-title {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 20px;
}
.page-title h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: var(--navy-900);
}

/* Breadcrumb — shared across page, search, archive templates */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 6px;
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--blue-600); }

/* Static page content area */
.alq-page-content {
  padding: 36px 28px 72px;
  max-width: 860px;
  margin: 0 auto;
  min-height: 40vh;
  line-height: 1.8;
  font-size: 16px;
  color: var(--ink-700);
}
.alq-page-content h1,
.alq-page-content h2,
.alq-page-content h3,
.alq-page-content h4 {
  color: var(--navy-900);
  font-weight: 700;
  margin: 1.6em 0 0.6em;
  line-height: 1.3;
}
.alq-page-content h2 { font-size: 22px; }
.alq-page-content h3 { font-size: 18px; }
.alq-page-content p  { margin: 0 0 1.1em; }
.alq-page-content a  { color: var(--blue-600); text-decoration: underline; }
.alq-page-content ul,
.alq-page-content ol { padding-right: 1.4em; margin-bottom: 1em; }
.alq-page-content li { margin-bottom: 0.4em; }
.alq-page-content img {
  border-radius: var(--r-md);
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.alq-page-content .page-links {
  margin-top: 32px;
  display: flex;
  gap: 8px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .alq-page-content {
    padding: 24px 0 48px;
    font-size: 15px;
  }
}
.brand-mark img {
    width: 100%;
    height: auto;
    margin-right: 5px;
}