/* Made by Evorxa.com AI Agent */
:root {
  --bg: 22 18% 5%;
  --bg-elev: 22 14% 8%;
  --bg-soft: 22 12% 11%;
  --fg: 38 32% 95%;
  --muted: 28 10% 62%;
  --primary: 28 68% 48%;
  --primary-fg: 22 18% 6%;
  --accent: 38 78% 62%;
  --line: 24 14% 18%;
  --ring: 28 68% 48%;
  --danger: 6 72% 54%;
  --ok: 152 42% 42%;
  --radius: 0.75rem;
  --shadow: 0 24px 60px -20px hsl(22 18% 2% / 0.7);
  --font-display: "El Messiri", "Times New Roman", serif;
  --font-body: "IBM Plex Sans Arabic", "Segoe UI", sans-serif;
  --font-latin: "Cormorant Garamond", Georgia, serif;
  --space: 1rem;
  --header-h: 4.5rem;
  --max: 76rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  direction: rtl;
  scroll-behavior: smooth;
  background: hsl(var(--bg));
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--fg));
  background:
    radial-gradient(1200px 600px at 80% -10%, hsl(28 50% 18% / 0.28), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, hsl(28 40% 12% / 0.35), transparent 55%),
    hsl(var(--bg));
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0.4rem;
}
.skip:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: hsl(var(--bg) / 0.55);
  border-bottom: 1px solid transparent;
  transition: background 220ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header.is-scrolled {
  background: hsl(var(--bg) / 0.92);
  border-bottom-color: hsl(var(--line));
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  min-height: 44px;
}
.brand-ar {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}
.brand-en {
  font-family: var(--font-latin);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: hsl(var(--muted));
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  font-size: 0.95rem;
  color: hsl(var(--muted));
  border-radius: 999px;
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), background 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: hsl(var(--fg));
  background: hsl(var(--bg-soft));
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--line));
  background: hsl(var(--bg-elev));
  color: hsl(var(--fg));
  border-radius: 999px;
  position: relative;
  transition: border-color 160ms cubic-bezier(0.4, 0, 0.2, 1), background 160ms cubic-bezier(0.4, 0, 0.2, 1);
}
.icon-btn:hover { border-color: hsl(var(--primary)); }
.icon-btn:active { transform: scale(0.96); }
.cart-count {
  position: absolute;
  top: -2px;
  inset-inline-end: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.is-on { display: inline-flex; }
.menu-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 160ms cubic-bezier(0.4, 0, 0.2, 1), color 160ms cubic-bezier(0.4, 0, 0.2, 1), border-color 160ms cubic-bezier(0.4, 0, 0.2, 1), transform 120ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:active { transform: translateY(1px); }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
}
.btn-primary:hover { background: hsl(28 68% 54%); }
.btn-ghost {
  background: transparent;
  border-color: hsl(var(--line));
  color: hsl(var(--fg));
}
.btn-ghost:hover { border-color: hsl(var(--fg) / 0.4); background: hsl(var(--bg-soft)); }
.btn-full { width: 100%; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem 0 4rem;
  min-height: calc(100svh - var(--header-h));
}
.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--accent));
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: hsl(var(--primary));
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1.1rem;
  max-width: 14ch;
}
.lede {
  color: hsl(var(--muted));
  font-size: 1.08rem;
  max-width: 38ch;
  margin: 0 0 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--line));
}
.hero-stats b {
  display: block;
  font-family: var(--font-latin);
  font-size: 1.6rem;
  font-weight: 600;
  color: hsl(var(--fg));
}
.hero-stats span { color: hsl(var(--muted)); font-size: 0.85rem; }
.hero-visual {
  position: relative;
  margin: 0;
}
.hero-visual img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 4rem 1.25rem;
  border: 1px solid hsl(var(--line));
}
.hero-badge {
  position: absolute;
  inset-inline-start: 1.25rem;
  bottom: 1.25rem;
  background: hsl(var(--bg) / 0.78);
  border: 1px solid hsl(var(--line));
  padding: 0.7rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}
.hero-badge strong { display: block; color: hsl(var(--accent)); font-weight: 600; }

/* Marquee */
.marquee {
  border-block: 1px solid hsl(var(--line));
  overflow: hidden;
  padding: 0.85rem 0;
  background: hsl(var(--bg-elev));
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  color: hsl(var(--muted));
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.marquee-track span::before {
  content: "✦";
  color: hsl(var(--primary));
  margin-inline-end: 2.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* Sections */
.section { padding: 5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0;
  line-height: 1.25;
}
.section-head p { margin: 0.35rem 0 0; color: hsl(var(--muted)); max-width: 42ch; }
.num {
  font-family: var(--font-latin);
  color: hsl(var(--primary));
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

/* Product mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.card {
  position: relative;
  background: hsl(var(--bg-elev));
  border: 1px solid hsl(var(--line));
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  border-color: hsl(28 40% 32%);
  transform: translateY(-4px);
}
.card.wide { grid-row: span 2; }
.card-media {
  position: relative;
  overflow: hidden;
  background: hsl(var(--bg-soft));
  aspect-ratio: 4 / 5;
}
.card.wide .card-media { aspect-ratio: 4 / 5; height: 100%; }
.card.wide .card-media img { height: 100%; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  background: hsl(var(--bg) / 0.82);
  color: hsl(var(--accent));
  border: 1px solid hsl(var(--line));
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.25rem;
}
.card-cat {
  color: hsl(var(--muted));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.35rem;
  font-weight: 600;
}
.price s {
  color: hsl(var(--muted));
  font-weight: 400;
  font-size: 0.88rem;
}
.quick-add {
  position: absolute;
  inset-inline-end: 0.85rem;
  bottom: 0.85rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-add:hover { transform: scale(1.06); }
.quick-add:active { transform: scale(0.95); }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.feature {
  padding: 1.5rem;
  border: 1px solid hsl(var(--line));
  border-radius: 1.1rem;
  background: linear-gradient(180deg, hsl(var(--bg-elev)), hsl(var(--bg)));
  min-height: 100%;
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  border: 1px solid hsl(var(--line));
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}
.feature h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.feature p { margin: 0; color: hsl(var(--muted)); }

/* Quote */
.quote-block {
  padding: 4.5rem 0;
  text-align: center;
}
.quote-block blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.45;
}
.quote-block cite {
  display: block;
  margin-top: 1.2rem;
  color: hsl(var(--muted));
  font-style: normal;
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid hsl(var(--line));
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, hsl(28 50% 16% / 0.4), transparent 50%),
    hsl(var(--bg-elev));
  overflow: hidden;
}
.cta-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 0.7rem;
}
.cta-band p { color: hsl(var(--muted)); margin: 0 0 1.3rem; }

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--line));
  padding: 3rem 0 1.4rem;
  margin-top: 2rem;
  background: hsl(var(--bg-elev));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.footer h3 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--muted));
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.footer a, .footer p { color: hsl(var(--muted)); }
.footer a:hover { color: hsl(var(--fg)); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-brand .brand-ar { font-size: 1.8rem; }
.footer-note {
  border-top: 1px solid hsl(var(--line));
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: hsl(var(--muted));
  font-size: 0.85rem;
}

/* Page hero */
.page-hero {
  padding: 3rem 0 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 0.3rem 0 0.6rem;
  line-height: 1.2;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.6rem;
}
.chip {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--line));
  background: transparent;
  color: hsl(var(--muted));
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.chip:hover { color: hsl(var(--fg)); }
.chip.is-active {
  background: hsl(var(--fg));
  color: hsl(var(--bg));
  border-color: hsl(var(--fg));
}
.search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 0.95rem;
  border: 1px solid hsl(var(--line));
  border-radius: 999px;
  background: hsl(var(--bg-elev));
  margin-bottom: 1.4rem;
  max-width: 28rem;
}
.search input {
  flex: 1;
  border: 0;
  background: transparent;
  min-height: 44px;
  outline: none;
}
.search svg { color: hsl(var(--muted)); flex-shrink: 0; }

/* Product detail */
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}
.product-gallery img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  border-radius: 1.3rem;
  border: 1px solid hsl(var(--line));
}
.product-buy { position: sticky; top: calc(var(--header-h) + 1.2rem); }
.product-buy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.3rem 0 0.8rem;
  line-height: 1.25;
}
.product-price {
  font-size: 1.45rem;
  font-weight: 600;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  margin-bottom: 1.2rem;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid hsl(var(--line));
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.qty button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: hsl(var(--fg));
}
.qty span {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
}
.specs {
  margin-top: 1.6rem;
  border-top: 1px solid hsl(var(--line));
  padding-top: 1rem;
  color: hsl(var(--muted));
}
.specs dt { color: hsl(var(--fg)); font-weight: 500; margin-top: 0.7rem; }
.specs dd { margin: 0.15rem 0 0; }

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 4rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--line));
  align-items: center;
}
.cart-item img {
  width: 96px;
  height: 112px;
  object-fit: cover;
  border-radius: 0.7rem;
}
.cart-item h3 { margin: 0 0 0.25rem; font-size: 1.05rem; font-family: var(--font-display); }
.cart-item p { margin: 0; color: hsl(var(--muted)); font-size: 0.9rem; }
.remove {
  border: 0;
  background: transparent;
  color: hsl(var(--muted));
  min-height: 44px;
  padding: 0 0.4rem;
}
.remove:hover { color: hsl(var(--danger)); }
.summary {
  border: 1px solid hsl(var(--line));
  border-radius: 1.15rem;
  padding: 1.3rem;
  background: hsl(var(--bg-elev));
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.summary h2 { margin: 0 0 1rem; font-family: var(--font-display); }
.row {
  display: flex;
  justify-content: space-between;
  margin: 0.45rem 0;
  color: hsl(var(--muted));
}
.row.total { color: hsl(var(--fg)); font-size: 1.15rem; font-weight: 600; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid hsl(var(--line)); }
.empty {
  text-align: center;
  padding: 4rem 1rem;
  border: 1px dashed hsl(var(--line));
  border-radius: 1.2rem;
}
.empty h2 { font-family: var(--font-display); margin-bottom: 0.5rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 1.3rem 4rem 1.3rem 1.3rem;
  border: 1px solid hsl(var(--line));
}
.about-copy p { color: hsl(var(--muted)); font-size: 1.05rem; }
.timeline { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.tl {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--line));
}
.tl b { color: hsl(var(--accent)); font-family: var(--font-latin); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding-bottom: 4rem;
}
.form {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid hsl(var(--line));
  border-radius: 1.2rem;
  background: hsl(var(--bg-elev));
}
label { font-size: 0.9rem; color: hsl(var(--muted)); }
input, textarea, select {
  width: 100%;
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--line));
  border-radius: 0.7rem;
  padding: 0.85rem 0.95rem;
  min-height: 48px;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
  border-color: transparent;
}
.form-success {
  display: none;
  padding: 1rem;
  border-radius: 0.8rem;
  background: hsl(152 40% 16%);
  color: hsl(152 50% 78%);
  border: 1px solid hsl(152 30% 28%);
}
.form-success.is-on { display: block; }
.info-card {
  padding: 1.4rem;
  border: 1px solid hsl(var(--line));
  border-radius: 1.2rem;
  margin-bottom: 1rem;
}
.info-card h3 { margin: 0 0 0.35rem; font-family: var(--font-display); }
.info-card p { margin: 0; color: hsl(var(--muted)); }

/* Toast */
.toast {
  position: fixed;
  inset-inline-start: 1rem;
  bottom: 1rem;
  background: hsl(var(--fg));
  color: hsl(var(--bg));
  padding: 0.85rem 1.1rem;
  border-radius: 0.8rem;
  z-index: 80;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  max-width: min(90vw, 22rem);
}
.toast.is-on { transform: none; opacity: 1; }

.checkout-done {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.checkout-done.is-on { display: block; }
.order-no {
  font-family: var(--font-latin);
  font-size: 1.6rem;
  color: hsl(var(--accent));
  letter-spacing: 0.12em;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: hsl(var(--bg) / 0.97);
  z-index: 40;
  padding: 1.2rem;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 0.7rem;
  font-size: 1.15rem;
}

@media (max-width: 1024px) {
  .hero, .mosaic, .grid-4, .features, .cta-band, .footer-grid,
  .product-layout, .cart-layout, .about-grid, .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic { grid-template-rows: none; }
  .card.wide { grid-row: auto; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero, .features, .cta-band, .footer-grid, .product-layout,
  .cart-layout, .about-grid, .contact-grid, .grid-3, .grid-4, .mosaic {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 1.5rem; min-height: auto; gap: 1.6rem; }
  .hero-visual img, .about-grid img, .product-gallery img { height: 52vh; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .section { padding: 3.2rem 0; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item .qty { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .card:hover .card-media img { transform: none; }
}
