@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --paper: #fffdf9;
  --cream: #f6f0e8;
  --cream-deep: #ebe0d3;
  --ink: #171311;
  --ink-soft: #4c413c;
  --muted: #766962;
  --line: #e3d9ce;
  --terracotta: #9b4f32;
  --terracotta-dark: #71351f;
  --gold: #c79a56;
  --gold-pale: #ecd9b7;
  --green: #3f765c;
  --danger: #9f3f45;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-soft: 0 16px 50px rgba(34, 23, 17, 0.08);
  --shadow: 0 24px 80px rgba(27, 17, 13, 0.2);
  --font-arabic: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-brand: Georgia, "Times New Roman", serif;
  font-family: var(--font-arabic);
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.overlay-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 154, 86, 0.4);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  position: relative;
  z-index: 50;
  width: 100%;
  min-height: 34px;
  overflow: hidden;
  color: #fff;
  background: #0f0d0c;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
}

.announcement-track {
  min-width: max-content;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 6px 18px;
}

.announcement i { color: var(--gold); font-style: normal; font-size: 0.55rem; }

.site-header {
  direction: ltr;
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 7px clamp(20px, 4vw, 68px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% -100%, rgba(231, 193, 127, 0.16), transparent 38%),
    rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(211, 190, 164, 0.72);
  box-shadow: 0 8px 26px rgba(45, 30, 22, 0.07);
  backdrop-filter: blur(18px) saturate(110%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(230, 193, 129, 0.7), transparent);
}

.site-header > * { direction: rtl; grid-row: 1; }
.site-header .brand { grid-column: 3; justify-self: end; }
.site-header .main-nav { grid-column: 2; gap: 2px; padding: 3px; background: rgba(246, 240, 232, 0.82); border: 1px solid rgba(218, 202, 184, 0.72); border-radius: 999px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8); }
.site-header .cart-toggle, .site-header .header-spacer { grid-column: 1; justify-self: start; }
.site-header .brand small { color: var(--muted); }
.site-header .main-nav a { padding: 5px clamp(10px, 1.25vw, 17px); color: var(--ink-soft); border-radius: 999px; }
.site-header .main-nav a:hover, .site-header .main-nav a:focus-visible { color: var(--terracotta-dark); background: #fffdf9; box-shadow: 0 3px 12px rgba(74, 48, 34, 0.08); }
.site-header .main-nav a::after { display: none; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }

.brand {
  width: max-content;
  display: inline-grid;
  justify-items: center;
  line-height: 1;
}

.brand-word,
.brand-copy strong,
.brand > span:not(.brand-mark):not(.brand-copy) {
  font-family: var(--font-brand);
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand small,
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-mark { display: none; }
.brand-copy { display: grid; justify-items: center; line-height: 1; }

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.2vw, 34px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a { position: relative; padding: 9px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }

.cart-toggle,
.primary-link,
.secondary-link,
.filter-button,
.choose-button,
.icon-button,
.quantity-button,
.primary-button,
.checkout-submit,
.catalog-empty button {
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cart-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.site-header .cart-toggle { position: relative; width: 42px; height: 42px; min-height: 42px; justify-content: center; padding: 0; background: transparent; border-color: transparent; box-shadow: none; }
.site-header .cart-toggle:hover { color: var(--terracotta-dark); background: var(--cream); border-color: transparent; transform: translateY(-1px); }
.cart-toggle:hover { border-color: var(--ink); transform: translateY(-1px); }
.cart-toggle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.cart-label { display: none; }
.cart-count { position: absolute; top: 0; right: -1px; min-width: 18px; height: 18px; display: inline-grid; place-items: center; padding-inline: 4px; color: #fff; background: var(--ink); border: 2px solid var(--paper); border-radius: 999px; font-size: 0.56rem; line-height: 1; }
.cart-toggle.has-items .cart-count { background: var(--terracotta); }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 116px));
  overflow: hidden;
  isolation: isolate;
  background: #6f321f;
}

.hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(17, 11, 9, 0.05) 20%, rgba(20, 12, 9, 0.32) 53%, rgba(20, 12, 9, 0.83) 100%); }

.hero-content {
  width: min(1440px, 100%);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) clamp(24px, 8vw, 128px);
  color: #fff;
}

.eyebrow { margin: 0 0 13px; color: var(--terracotta); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.hero .eyebrow { color: #eac789; }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-arabic);
  font-size: clamp(3.25rem, 6.3vw, 6.8rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead { max-width: 600px; margin: 27px 0 0; color: rgba(255,255,255,0.88); font-size: clamp(1rem, 1.5vw, 1.17rem); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.primary-link, .secondary-link { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 999px; font-weight: 800; }
.primary-link { color: var(--ink); background: #e6c181; box-shadow: 0 14px 38px rgba(0,0,0,0.16); }
.primary-link:hover { background: #f0d49e; transform: translateY(-2px); }
.secondary-link { color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.5); }
.secondary-link:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,0.78); font-size: 0.82rem; }
.hero-points li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-left: 7px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; color: #e9c483; font-size: 0.68rem; }

.benefit-strip {
  max-width: 1380px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.benefit-strip article { min-width: 0; display: flex; align-items: center; gap: 14px; padding: 28px clamp(14px, 2.3vw, 34px); border-inline-start: 1px solid var(--line); }
.benefit-strip article:last-child { border-inline-start: 0; }
.benefit-icon { flex: 0 0 34px; height: 34px; display: inline-grid; place-items: center; color: var(--terracotta); background: var(--cream); border-radius: 50%; }
.benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-strip div { min-width: 0; display: grid; }
.benefit-strip strong { font-size: 0.88rem; }
.benefit-strip small { overflow: hidden; color: var(--muted); font-size: 0.72rem; white-space: nowrap; text-overflow: ellipsis; }

.collection-intro {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.38fr);
  gap: 0;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 4vw, 60px);
}
.collection-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 72px); background: var(--cream); }
.collection-copy h2, .section-heading h2, .process-heading h2, .promise-content h2, .faq-preview h2, .page-hero h1 {
  margin: 0;
  font-family: var(--font-arabic);
  font-size: clamp(2.45rem, 4.4vw, 5rem);
  line-height: 1.09;
  letter-spacing: -0.04em;
}
.collection-copy > p:not(.eyebrow) { max-width: 430px; margin: 23px 0; color: var(--muted); }
.collection-copy > a, .text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-weight: 800; }
.collection-feature { position: relative; min-height: 560px; overflow: hidden; background: #e7d7c4; }
.collection-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-feature:hover img { transform: scale(1.025); }
.collection-feature > span { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 19px; color: var(--ink); background: rgba(255, 253, 249, 0.92); backdrop-filter: blur(10px); }
.collection-feature strong { font-family: var(--font-arabic); font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.collection-feature small { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 800; }
.collection-feature i { font-style: normal; }

.section { padding: clamp(76px, 9vw, 130px) clamp(20px, 5vw, 76px); }
.catalog-section { background: var(--cream); }
.catalog-filter-bar { max-width: 1380px; display: flex; justify-content: center; margin: 0 auto 44px; }
.section-heading { max-width: 1380px; display: flex; align-items: end; justify-content: space-between; gap: 28px; margin: 0 auto 44px; }
.section-heading h2 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
.catalog-meta { min-height: 24px; margin: 10px 0 0; color: var(--muted); font-size: 0.82rem; }
.catalog-tools { min-width: min(100%, 470px); display: grid; justify-items: end; gap: 16px; }
.search-field { width: min(100%, 320px); min-height: 45px; display: flex; align-items: center; gap: 9px; padding: 0 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; }
.search-field svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: var(--muted); stroke-width: 1.6; }
.search-field input { width: 100%; min-width: 0; padding: 8px 0; background: transparent; border: 0; outline: 0; }
.filter-group { display: flex; justify-content: center; gap: 6px; padding: 6px; background: #e9ded1; border-radius: 999px; }
.filter-button { min-height: 46px; padding: 9px clamp(24px, 3vw, 42px); background: transparent; border-radius: 999px; color: var(--muted); font-size: 0.96rem; font-weight: 800; }
.filter-button.active { color: #fff; background: var(--ink); }

.product-grid { max-width: 1380px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); margin: 0 auto; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: var(--paper); border: 1px solid rgba(227,217,206,0.75); border-radius: 24px; box-shadow: 0 8px 28px rgba(34,23,17,.045); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(199,154,86,.45); box-shadow: var(--shadow-soft); }
.product-media { position: relative; width: 100%; aspect-ratio: 4 / 3; flex: 0 0 auto; display: block; overflow: hidden; padding: 0; background: #eee4d7; border: 0; cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity 0.16s ease, transform 0.55s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-media img.changing { opacity: 0.12; }
.card-gallery-dots { position: absolute; right: 50%; bottom: 15px; z-index: 2; display: flex; gap: 4px; padding: 5px 7px; background: rgba(23, 19, 17, 0.56); border-radius: 999px; transform: translateX(50%); backdrop-filter: blur(6px); }
.card-gallery-dots i { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; transition: width .2s ease, background .2s ease; }
.card-gallery-dots i.active { width: 13px; background: #fff; border-radius: 999px; }
.product-badge { position: absolute; top: 14px; right: 14px; padding: 6px 10px; color: var(--ink); background: rgba(255,253,249,0.92); border-radius: 999px; font-size: 0.65rem; font-weight: 800; backdrop-filter: blur(8px); }
.product-badge.offer { color: #fff; background: var(--terracotta); }
.media-action { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 10px 14px; color: #fff; background: rgba(23,19,17,0.86); transform: translateY(calc(100% + 16px)); transition: transform 0.25s ease; font-size: 0.78rem; font-weight: 750; }
.product-card:hover .media-action, .product-media:focus-visible .media-action { transform: translateY(0); }
.product-body { flex: 1; display: grid; grid-template-rows: 1fr auto auto; gap: 15px; padding: 18px; }
.product-copy-button { min-height: 0; }
.product-body h3 { margin: 0; font-family: var(--font-arabic); font-size: clamp(1.05rem, 1.3vw, 1.28rem); line-height: 1.35; }
.product-copy-button { width: 100%; min-width: 0; padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font-family: inherit; text-align: right; }.product-copy-button:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 5px; }.product-body p { display: block; min-height: 0; margin: 7px 0 0; overflow: visible; color: var(--muted); font-size: 0.77rem; line-height: 1.65; }
.price-row { min-height: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.price { color: var(--terracotta-dark); font-size: 1.03rem; font-weight: 850; }
.price.missing { color: var(--muted); font-size: 0.82rem; line-height: 1.45; white-space: nowrap; }
.old-price { color: #9b8e86; text-decoration: line-through; font-size: 0.78rem; }
.choose-button { width: 100%; min-height: 46px; display: flex; align-items: center; padding: 7px 10px; color: #fff; background: var(--ink); border-radius: 999px; font-size: 0.82rem; font-weight: 800; line-height: 1.2; }
.choose-button > span:first-child { flex: 1; padding-inline: 4px; text-align: center; white-space: nowrap; }
.choose-button > span:last-child { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; background: rgba(255,255,255,.12); border-radius: 50%; font-size: 1rem; line-height: 1; }
@media (hover: hover) and (pointer: fine) { .choose-button:hover { background: var(--terracotta-dark); } }
.product-skeleton { min-height: 440px; }
.skeleton-media { aspect-ratio: 1/1.12; background: linear-gradient(90deg, #e8ddd0, #f5eee5, #e8ddd0); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skeleton-body { display: grid; gap: 12px; padding: 20px; }
.skeleton-body span { height: 12px; background: #e8ddd0; border-radius: 999px; }
.skeleton-body span:nth-child(2) { width: 75%; }.skeleton-body span:nth-child(3) { width: 45%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.catalog-empty { grid-column: 1/-1; padding: 70px 24px; text-align: center; background: var(--paper); border: 1px dashed #cdbba8; }
.catalog-empty strong { font-family: var(--font-arabic); font-size: 1.5rem; }.catalog-empty p { color: var(--muted); }.catalog-empty button { padding: 10px 18px; color: #fff; background: var(--ink); border-radius: 999px; }

.process-section { padding: clamp(80px, 9vw, 136px) clamp(20px, 6vw, 90px); color: #fff; background: var(--ink); }
.process-heading { max-width: 1380px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; margin: 0 auto 58px; }
.process-heading .eyebrow { grid-column: 1/-1; color: #e4bd7a; margin-bottom: -8px; }
.process-heading h2 { font-size: clamp(2.7rem, 5vw, 5.6rem); }
.process-heading > p:not(.eyebrow) { max-width: 380px; margin: 0; color: #bfb5af; }
.process-grid { max-width: 1380px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.process-grid article { padding: 35px clamp(22px, 3vw, 46px); border-inline-start: 1px solid rgba(255,255,255,0.16); }
.process-grid article:last-child { border-inline-start: 0; }
.process-grid span { color: #d8ad68; font-family: var(--font-arabic); font-size: 0.85rem; }
.process-grid h3 { margin: 0 0 9px; font-family: var(--font-arabic); font-size: 1.5rem; }
.process-grid p { margin: 0; color: #bfb5af; font-size: 0.88rem; }

.promise-section { max-width: 1280px; display: block; margin: 0 auto; padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 60px); }
.promise-media { min-height: 640px; overflow: hidden; background: var(--cream); }
.promise-media img { width: 100%; height: 100%; object-fit: cover; }
.promise-content { min-height: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 72px); background: var(--cream); border-radius: 28px; }
.promise-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 37px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-list article { display: block; padding: 25px clamp(18px, 2.5vw, 34px); border-inline-start: 1px solid var(--line); }
.promise-list article:first-child { padding-right: 0; }
.promise-list article:last-child { padding-left: 0; border-inline-start: 0; }
.promise-list article > span { color: var(--terracotta); font-family: var(--font-arabic); font-size: 0.73rem; }
.promise-list h3 { margin: 0 0 7px; font-size: 1rem; }.promise-list p { margin: 0; color: var(--muted); font-size: 0.84rem; }
.promise-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }.promise-links a { padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 0.82rem; font-weight: 800; }

.faq-preview { max-width: 1180px; display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(35px, 8vw, 110px); margin: 0 auto; padding: 30px 24px clamp(90px, 10vw, 150px); }
.faq-preview h2 { font-size: clamp(2.6rem, 4vw, 4.7rem); }.faq-preview-list { border-top: 1px solid var(--line); }
.faq-preview details { border-bottom: 1px solid var(--line); }.faq-preview summary { position: relative; padding: 23px 38px 23px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq-preview summary::-webkit-details-marker { display: none; }.faq-preview summary::before { content: "+"; position: absolute; right: 0; font-size: 1.25rem; font-weight: 400; }.faq-preview details[open] summary::before { content: "−"; }
.faq-preview details p { margin: -8px 38px 23px 0; color: var(--muted); font-size: 0.88rem; }.faq-preview .text-link { grid-column: 2; justify-self: start; }

.site-footer { display: grid; grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.65fr)); gap: 45px; padding: 70px clamp(24px, 6vw, 90px) 26px; color: #f8f3ed; background: #100e0d; }
.site-footer .brand { justify-items: start; color: #fff; }.site-footer .brand small { color: #938984; }.footer-brand-block > p, .site-footer > div > p { margin: 18px 0 0; color: #a99f99; font-size: 0.85rem; }
.site-footer nav, .footer-payment { display: grid; align-content: start; gap: 10px; font-size: 0.82rem; }.site-footer nav strong, .footer-payment strong { margin-bottom: 7px; color: #fff; font-size: 0.86rem; }.site-footer nav a, .footer-payment span, .footer-payment small { color: #a99f99; }.site-footer nav a:hover { color: #fff; }.footer-payment small { font-size: 0.72rem; }
.copyright { grid-column: 1/-1; margin: 30px 0 0; padding-top: 20px; color: #756d68; border-top: 1px solid rgba(255,255,255,0.09); font-size: 0.72rem; text-align: center; }
.site-footer.compact-footer { grid-template-columns: minmax(220px, 1fr) auto; align-items: center; gap: 22px 48px; padding: 38px clamp(24px, 6vw, 90px) 18px; }
.compact-footer nav { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.compact-footer .copyright { margin-top: 6px; padding-top: 14px; }

.cart-drawer, .product-modal { position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none; }
.cart-drawer.open, .product-modal.open { visibility: visible; pointer-events: auto; }
.cart-backdrop, .modal-backdrop { position: absolute; inset: 0; background: rgba(12,9,8,0.62); opacity: 0; transition: opacity 0.25s ease; backdrop-filter: blur(3px); }
.cart-drawer.open .cart-backdrop, .product-modal.open .modal-backdrop { opacity: 1; }
.cart-panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(100%, 600px); overflow-y: auto; background: var(--paper); box-shadow: var(--shadow); transform: translateX(-100%); transition: transform 0.3s ease; overscroll-behavior: contain; }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.drawer-header { position: sticky; top: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding: 24px 26px 18px; background: rgba(255,253,249,0.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }.drawer-header h2 { margin: 0; font-family: var(--font-arabic); font-size: 2rem; }.drawer-header .eyebrow { margin-bottom: 2px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 1.6rem; line-height: 1; }.icon-button:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.cart-items { display: grid; gap: 14px; padding: 22px 26px; }
.empty-cart { display: grid; justify-items: center; padding: 50px 20px; text-align: center; }.empty-cart > span { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 12px; color: var(--gold); background: var(--cream); border-radius: 50%; }.empty-cart > span svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.empty-cart strong { font-family: var(--font-arabic); font-size: 1.35rem; }.empty-cart p { margin: 6px 0; color: var(--muted); font-size: 0.85rem; }
.cart-item { display: grid; grid-template-columns: 94px 1fr; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }.cart-item img { width: 94px; height: 110px; object-fit: cover; background: var(--cream); }.cart-item h3 { margin: 0; font-family: var(--font-arabic); font-size: 1rem; }.cart-item p { margin: 5px 0; color: var(--muted); font-size: 0.74rem; }.cart-item-price { color: var(--terracotta-dark); font-size: 0.82rem; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }.quantity-controls { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); }.quantity-button { width: 30px; height: 30px; background: transparent; }.remove-button { padding: 5px; color: var(--danger); background: transparent; border: 0; cursor: pointer; font-size: 0.73rem; }
.cart-summary { display: grid; gap: 9px; margin: 0 26px; padding: 20px; background: var(--cream); }.cart-summary > div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.82rem; }.grand-total-row { margin-top: 5px; padding-top: 13px; border-top: 1px solid #d8cab9; font-size: 0.95rem !important; }.muted-note { margin: 5px 0 0; color: var(--danger); font-size: 0.72rem; }
.discount-row { color: var(--green); }.discount-row[hidden] { display: none; }
.promo-box { display: grid; gap: 9px; margin: 14px 26px 0; padding: 16px; background: #fff; border: 1px dashed var(--gold); }.promo-box > label { color: var(--ink); font-size: .82rem; font-weight: 850; }.promo-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }.promo-controls input { width: 100%; min-width: 0; padding: 11px 13px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); outline: 0; direction: ltr; text-align: center; letter-spacing: .12em; }.promo-controls input:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(155,79,50,.09); }.promo-controls button { min-width: 92px; padding: 10px 15px; color: #fff; background: var(--terracotta-dark); font-weight: 850; }.promo-controls button:disabled, .promo-controls input:disabled { cursor: not-allowed; opacity: .55; }.promo-status { min-height: 1.2em; margin: 0; color: var(--muted); font-size: .72rem; font-weight: 750; }.promo-status.success { color: var(--green); }.promo-status.error { color: var(--danger); }

.checkout-form { display: grid; gap: 20px; padding: 30px 26px 45px; }
.checkout-heading { display: flex; gap: 13px; align-items: flex-start; }.checkout-heading > span { width: 29px; height: 29px; flex: 0 0 29px; display: inline-grid; place-items: center; color: #fff; background: var(--terracotta); border-radius: 50%; font-family: var(--font-arabic); font-size: 0.7rem; }.checkout-heading h3 { margin: 0; font-size: 1rem; }.checkout-heading p { margin: 2px 0 0; color: var(--muted); font-size: 0.74rem; }.payment-heading { margin-top: 9px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.form-grid label, .shipping-picker { min-width: 0; display: grid; align-content: start; gap: 7px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 700; }.form-grid label small { color: var(--muted); font-size: 0.68rem; font-weight: 400; }.wide-field { grid-column: 1/-1; }
.checkout-form input, .checkout-form textarea, .checkout-form select, .product-form input, .product-form select, .shipping-options input { width: 100%; min-width: 0; padding: 11px 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 0; outline: 0; }.checkout-form input:focus, .checkout-form textarea:focus, .product-form input:focus, .product-form select:focus, .shipping-options input:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(155,79,50,0.09); }.checkout-form textarea { resize: vertical; }
.color-picker { position: relative; min-width: 0; }
.color-select-button { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; font-family: var(--font-arabic); font-size: .88rem; font-weight: 500; text-align: right; touch-action: manipulation; }
.color-select-button:focus-visible, .color-picker.open .color-select-button { border-color: var(--terracotta); outline: 0; box-shadow: 0 0 0 3px rgba(155,79,50,0.09); }
.color-select-button svg { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: var(--terracotta-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.color-picker.open .color-select-button svg { transform: rotate(180deg); }
.color-options { position: absolute; top: calc(100% + 6px); right: 0; left: 0; z-index: 12; display: none; overflow: hidden; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 35px rgba(35,22,16,.16); }
.color-picker.open .color-options { display: grid; }
.color-options button { width: 100%; min-height: 43px; display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; color: var(--ink); background: transparent; border: 0; border-radius: 8px; cursor: pointer; font-family: var(--font-arabic); font-size: .86rem; font-weight: 500; line-height: 1.55; text-align: right; touch-action: manipulation; }
.color-options button:hover, .color-options button:focus-visible { background: var(--cream); outline: 0; }
.color-options button[aria-selected="true"] { color: var(--terracotta-dark); background: #f7eee8; }
.color-options button span { visibility: hidden; color: var(--terracotta); font-size: .8rem; }
.color-options button[aria-selected="true"] span { visibility: visible; }
.shipping-picker { position: relative; }.field-label { display: block; }.shipping-select-button { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 9px; padding: 9px 13px; background: #fff; border: 1px solid var(--line); cursor: pointer; text-align: right; }.shipping-options { position: absolute; top: calc(100% + 6px); right: 0; left: 0; z-index: 7; display: none; padding: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }.shipping-options.open { display: block; }.shipping-option-list { max-height: 260px; overflow-y: auto; }.shipping-option { width: 100%; display: grid; gap: 2px; padding: 10px; background: transparent; border: 0; border-bottom: 1px solid #eee6dd; cursor: pointer; text-align: right; }.shipping-option:hover { background: var(--cream); }.shipping-option span { font-size: 0.74rem; }.shipping-option strong { color: var(--terracotta-dark); font-size: 0.68rem; }.empty-options { padding: 15px; color: var(--muted); font-size: 0.75rem; }
.payment-option { position: relative; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 11px; padding: 15px; border: 1px solid var(--ink); cursor: pointer; }.payment-option input { position: absolute; opacity: 0; pointer-events: none; }.payment-radio { width: 19px; height: 19px; display: inline-grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }.payment-radio::after { content: ""; width: 9px; height: 9px; background: var(--terracotta); border-radius: 50%; }.payment-option > span:nth-of-type(2) { display: grid; }.payment-option strong { font-size: 0.82rem; }.payment-option small { color: var(--muted); font-size: 0.7rem; }.payment-option em { padding: 4px 8px; color: var(--green); background: #e6f1eb; border-radius: 999px; font-size: 0.65rem; font-style: normal; font-weight: 800; }
.checkout-consent { margin: -4px 0 0; color: var(--muted); font-size: 0.68rem; }.checkout-consent a { color: var(--ink); text-decoration: underline; }.order-status { min-height: 0; margin: 0; font-size: 0.77rem; font-weight: 700; }.order-status.success { color: var(--green); }.order-status.error, .order-status.warn { color: var(--danger); }
.checkout-action-hint { margin: 0; padding: 11px 13px; color: var(--muted); background: var(--cream); border-inline-start: 3px solid var(--gold); font-size: .73rem; line-height: 1.7; }.checkout-action-hint[hidden], .checkout-actions[hidden] { display: none; }.checkout-actions { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 10px; }.checkout-submit, .continue-shopping { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; font-weight: 850; }.checkout-submit { color: #fff; background: var(--terracotta-dark); }.checkout-submit:disabled { cursor: wait; opacity: 0.65; }.continue-shopping { color: var(--terracotta-dark); background: #fff; border: 1px solid var(--terracotta-dark); }.continue-shopping:hover, .continue-shopping:focus-visible { color: #fff; background: var(--ink); border-color: var(--ink); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.modal-card { position: absolute; inset: clamp(18px, 4vw, 54px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); opacity: 0; transform: translateY(18px) scale(0.99); transition: opacity 0.25s ease, transform 0.25s ease; }
.product-modal.open .modal-card { opacity: 1; transform: none; }.modal-close { position: absolute; top: 16px; left: 16px; z-index: 5; background: rgba(255,253,249,0.9); }
.modal-media { min-width: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; background: var(--cream); }.modal-media > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }.modal-thumbnails { display: flex; gap: 7px; overflow-x: auto; padding: 11px; background: #e9ded0; }.modal-thumbnails button { flex: 0 0 64px; height: 64px; padding: 0; overflow: hidden; background: #fff; border: 2px solid transparent; cursor: pointer; }.modal-thumbnails button.active { border-color: var(--terracotta); }.modal-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { min-width: 0; overflow-y: auto; padding: clamp(30px, 3.6vw, 58px); }.modal-body h2 { margin: 0; font-family: var(--font-arabic); font-size: clamp(2rem, 3.2vw, 3.7rem); line-height: 1.1; }.modal-price { margin: 14px 0; color: var(--terracotta-dark); font-size: 1.25rem; font-weight: 850; }.modal-price.missing { color: var(--muted); font-size: 0.88rem; }.product-assurances { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 25px; }.product-assurances span { padding: 5px 9px; background: var(--cream); border: 1px solid var(--line); font-size: 0.67rem; font-weight: 750; }
.rich-text { color: var(--ink-soft); font-size: 0.88rem; }.rich-text h3 { margin: 25px 0 9px; color: var(--ink); font-size: 0.98rem; }.rich-text p { margin: 0 0 12px; }.rich-text ul { display: grid; gap: 6px; margin: 0 0 18px; padding: 0 20px 0 0; }.modal-description { max-height: 240px; overflow-y: auto; padding-inline-end: 8px; }
.product-form { display: grid; grid-template-columns: minmax(0, 1fr) 120px; gap: 14px; margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }.product-form label, .product-form-field, .custom-fields { min-width: 0; display: grid; gap: 7px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 700; }.custom-fields { grid-column: 1/-1; grid-template-columns: repeat(2, minmax(0, 1fr)); }.custom-fields > :last-child:nth-child(odd) { grid-column: 1/-1; }.primary-button { grid-column: 1/-1; min-height: 51px; display: flex; align-items: center; justify-content: space-between; padding: 11px 17px; color: #fff; background: var(--terracotta-dark); font-weight: 850; }

@media (hover: hover) and (pointer: fine) {
  .checkout-submit:hover,
  .primary-button:hover { background: var(--ink); }
}
.toast { position: fixed; right: 50%; bottom: 24px; z-index: 120; max-width: min(90vw, 450px); padding: 11px 18px; color: #fff; background: var(--ink); border-radius: 999px; box-shadow: var(--shadow-soft); opacity: 0; transform: translate(50%, 20px); pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; font-size: 0.8rem; }.toast.show { opacity: 1; transform: translate(50%, 0); }.noscript { margin: 0; padding: 15px; color: #fff; background: var(--danger); text-align: center; }

.page-main { min-height: 70vh; }.page-hero { margin: 24px; padding: clamp(80px, 11vw, 160px) 24px; color: #fff; background: linear-gradient(120deg, #241812, #81452e); text-align: center; }.page-hero-inner { max-width: 760px; margin: 0 auto; }.page-hero .eyebrow { color: #e8c386; }.page-hero p:last-child { max-width: 620px; margin: 20px auto 0; color: rgba(255,255,255,0.76); }
.page-content { max-width: 960px; margin: 0 auto; padding: 70px 24px 110px; }.content-panel { padding: clamp(28px, 5vw, 65px); background: var(--cream); }.content-panel .rich-text { font-size: 1rem; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; padding: 24px 40px 24px 0; cursor: pointer; list-style: none; font-weight: 850; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::before { content: "+"; position: absolute; right: 0; font-size: 1.3rem; font-weight: 400; }.faq-list details[open] summary::before { content: "−"; }.faq-list .answer { padding: 0 40px 22px 0; color: var(--muted); }.faq-list .answer p { margin: 0; }
.policies-nav { position: sticky; top: 105px; z-index: 4; display: flex; justify-content: center; gap: 8px; overflow-x: auto; padding: 12px 20px; background: rgba(255,253,249,.95); border-bottom: 1px solid var(--line); white-space: nowrap; backdrop-filter: blur(12px); }.policies-nav a { padding: 7px 12px; background: var(--cream); border-radius: 999px; font-size: .75rem; font-weight: 750; }.policy-grid { max-width: 1050px; display: grid; gap: 24px; margin: 0 auto; padding: 70px 24px 120px; }.policy-card { scroll-margin-top: 170px; padding: clamp(28px, 5vw, 60px); background: var(--cream); }.policy-card h2 { margin: 0 0 17px; font-family: var(--font-arabic); font-size: clamp(1.8rem, 3vw, 3rem); }.policy-card h3 { margin: 24px 0 8px; font-size: 1rem; }.policy-card p, .policy-card li { color: var(--ink-soft); font-size: .9rem; }.policy-card ul { display: grid; gap: 8px; padding-right: 20px; }.shipping-table { width: 100%; margin-top: 25px; border-collapse: collapse; font-size: .78rem; }.shipping-table th, .shipping-table td { padding: 12px; border-bottom: 1px solid #d8ccbe; text-align: right; }.shipping-table th { background: #e9ded0; }

/* Alexandria looks best here with restrained weights rather than heavy synthetic bold. */
.hero h1,
.collection-copy h2,
.section-heading h2,
.process-heading h2,
.promise-content h2,
.faq-preview h2,
.page-hero h1,
.product-body h3,
.process-grid h3,
.drawer-header h2,
.empty-cart strong,
.cart-item h3,
.modal-body h2,
.policy-card h2 { font-weight: 600; }

.eyebrow,
.primary-link,
.secondary-link,
.filter-button,
.product-badge,
.choose-button,
.promise-links a,
.faq-preview summary,
.payment-option em,
.faq-list summary { font-weight: 700; }

.price,
.checkout-submit,
.primary-button { font-weight: 750; }

.form-grid label,
.shipping-picker,
.product-form label,
.product-form-field,
.custom-fields,
.policies-nav a { font-weight: 600; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 130px auto 130px; gap: 18px; padding-inline: 24px; }
  .main-nav { gap: 17px; font-size: 0.82rem; }
  .collection-intro { grid-template-columns: .85fr 1.15fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .promise-content { padding: 50px 42px; }
  .site-footer { grid-template-columns: 1fr repeat(2, minmax(140px,.65fr)); }.footer-payment { grid-column: 2; }
}

@media (max-width: 1024px) {
  .modal-card { inset: 12px; min-height: 0; height: calc(100vh - 24px); height: calc(100dvh - 24px); max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); grid-template-columns: 1fr; grid-template-rows: auto auto; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .modal-media { min-height: min(500px, 52svh); overflow: visible; }
  .modal-body { overflow: visible; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 104px; }
  .announcement-track { justify-content: flex-start; animation: marquee 18s linear infinite; }
  @keyframes marquee { to { transform: translateX(50%); } }
  .site-header { position: sticky; width: 100%; max-width: 100%; min-height: 62px; display: grid; grid-template-columns: 44px 44px minmax(0, 1fr); align-items: center; gap: 3px; padding: 7px 12px; }
  .site-header .brand { position: static; grid-column: 3; justify-self: end; width: auto; max-width: none; transform: none; }.site-header .brand-word, .brand-copy strong { font-size: 1.34rem; }.site-header .brand small { margin-top: 3px; font-size: .42rem; }.site-header .cart-toggle { position: relative; top: auto; left: auto; grid-column: 1; width: 44px; height: 44px; min-height: 44px; justify-self: start; padding: 0; }.cart-label { display: none; }.cart-count { position: absolute; top: 0; right: 0; min-width: 18px; height: 18px; font-size: .56rem; }.site-header .header-spacer { position: static; grid-column: 1; width: 44px; height: 44px; }
  .site-header .menu-toggle { grid-column: 2; display: inline-flex; width: 44px; height: 44px; }
  .site-header .menu-toggle:hover, .site-header .menu-toggle:focus-visible { color: var(--terracotta-dark); background: var(--cream); }
  .site-header .main-nav { position: absolute; top: calc(100% + 1px); right: 12px; left: 12px; grid-column: 1/-1; display: none; width: auto; max-width: none; overflow: visible; gap: 2px; padding: 8px; background: rgba(255,253,249,.98); border-radius: 16px; box-shadow: 0 18px 38px rgba(35,22,16,.16); }.site-header.menu-open .main-nav { display: grid; }.site-header .main-nav a { width: 100%; min-height: 44px; display: flex; align-items: center; padding: 9px 14px; font-size: .82rem; }
  .hero { min-height: 690px; width: 100%; max-width: 100%; }.hero-image { object-position: 34% center; }.hero-overlay { background: linear-gradient(0deg, rgba(16,10,8,.94) 0%, rgba(16,10,8,.65) 43%, rgba(16,10,8,.04) 78%); }.hero-content { width: 100%; max-width: 100%; align-items: stretch; justify-content: flex-end; padding: 70px 22px 48px; }.hero h1 { width: 100%; max-width: 100%; font-size: clamp(2.75rem, 11.5vw, 3.8rem); }.hero-lead { max-width: 580px; margin-top: 18px; font-size: .94rem; line-height: 1.75; }.hero-actions { width: 100%; margin-top: 24px; }.primary-link, .secondary-link { flex: 1 1 180px; min-height: 48px; padding-inline: 15px; font-size: .82rem; }.hero-points { gap: 11px; margin-top: 22px; font-size: .7rem; }
  .benefit-strip { grid-template-columns: 1fr 1fr; }.benefit-strip article { padding: 20px 14px; border-bottom: 1px solid var(--line); }.benefit-strip small { white-space: normal; }
  .collection-intro { grid-template-columns: 1fr; padding-block: 80px; }.collection-copy { padding: 42px 30px; }.collection-feature { min-height: 480px; }
  .section-heading { align-items: start; flex-direction: column; }.catalog-tools { width: 100%; justify-items: stretch; }.search-field { width: 100%; max-width: none; }.filter-group { align-self: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-heading { grid-template-columns: 1fr; }.process-heading .eyebrow { grid-column: 1; }.process-grid { grid-template-columns: 1fr; }.process-grid article { border-inline-start: 0; border-bottom: 1px solid rgba(255,255,255,.16); }.process-grid article:last-child { border-bottom: 0; }
  .promise-section { display: block; }.promise-content { min-height: 0; padding: 50px 30px; }.promise-list { grid-template-columns: 1fr; }.promise-list article, .promise-list article:first-child, .promise-list article:last-child { padding: 22px 0; border-inline-start: 0; border-bottom: 1px solid var(--line); }.promise-list article:last-child { border-bottom: 0; }
  .faq-preview { grid-template-columns: 1fr; }.faq-preview .text-link { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr 1fr; }.footer-brand-block { grid-column: 1/-1; }.footer-payment { grid-column: 1/-1; }.copyright { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .announcement { font-size: .66rem; }
  .hero { min-height: clamp(620px, calc(100svh - 96px), 720px); max-height: none; }.hero-image { object-position: 35% center; }.hero-content { direction: rtl; width: 100%; padding: 54px 20px 38px; text-align: right; }.hero h1 { width: 100%; max-width: calc(100vw - 40px); padding: 2px; font-size: clamp(2.05rem, 9.2vw, 2.65rem); line-height: 1.3; letter-spacing: 0; }.hero-actions { display: grid; grid-template-columns: 1fr; }.primary-link, .secondary-link { width: 100%; }.hero-points li::before { display: none; }
  .benefit-strip { grid-template-columns: 1fr; padding: 0 18px; }.benefit-strip article { border-inline-start: 0; }.benefit-strip article:last-child { border-bottom: 0; }
  .collection-intro { padding-inline: 14px; }.collection-copy { padding: 36px 24px; }.collection-feature { min-height: 390px; }.collection-feature > span { right: 12px; bottom: 12px; left: 12px; display: grid; padding: 14px; }.collection-copy h2, .section-heading h2, .process-heading h2, .promise-content h2, .faq-preview h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .section { padding-inline: 14px; }.section-heading { margin-inline: 6px; }.catalog-filter-bar { margin-bottom: 30px; }.filter-group { width: 100%; }.filter-button { flex: 1; min-height: 44px; padding-inline: 8px; font-size: .82rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }.product-card { border-radius: 17px; }.product-body { gap: 11px; padding: 12px; }.product-copy-button { min-height: 0; }.product-body h3 { font-size: .95rem; }.product-body p { font-size: .7rem; line-height: 1.6; }.product-media { aspect-ratio: 4/3; }.product-badge { top: 8px; right: 8px; padding: 4px 7px; font-size: .58rem; }.media-action { display: none; }.price { font-size: .88rem; }.price.missing { font-size: .7rem; }.choose-button { min-height: 44px; padding: 7px 8px; font-size: .76rem; }.choose-button > span:last-child { width: 26px; height: 26px; flex-basis: 26px; }.old-price { display: none; }
  .card-gallery-dots { bottom: 8px; }
  .process-section { padding-inline: 20px; }.process-grid h3 { margin-top: 0; }
  .promise-section { padding-inline: 0; }.promise-media { min-height: 390px; }.promise-content { min-height: 0; padding: 42px 22px; }
  .faq-preview { padding-inline: 18px; }.faq-preview details p { margin-right: 0; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 24px; }.site-footer.compact-footer { grid-template-columns: 1fr; gap: 18px; padding: 32px 24px 16px; }.compact-footer nav { gap: 10px 18px; }.compact-footer .copyright { margin-top: 2px; padding-top: 12px; }.footer-brand-block, .footer-payment, .copyright { grid-column: 1; }
  .cart-panel { width: 100%; }.drawer-header, .cart-items, .checkout-form { padding-inline: 18px; }.cart-summary { margin-inline: 18px; }.form-grid, .checkout-actions { grid-template-columns: 1fr; }.wide-field { grid-column: 1; }.payment-option { grid-template-columns: 22px 1fr; }.payment-option em { grid-column: 2; justify-self: start; }.cart-item { grid-template-columns: 78px 1fr; }.cart-item img { width: 78px; height: 94px; }
  .modal-card { inset: 0; width: 100%; height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh; }.modal-media { min-height: auto; grid-template-rows: minmax(340px, 52vh) auto; }.modal-body { padding: 33px 18px 45px; }.modal-body h2 { font-size: 2.2rem; }.product-form { grid-template-columns: 1fr; }.product-form > *, .custom-fields, .primary-button { grid-column: 1; }.custom-fields { grid-template-columns: 1fr; }.modal-close { top: 10px; left: 10px; }.modal-description { max-height: none; }
  .page-hero { margin: 10px; padding-block: 80px; }.policies-nav { top: 104px; justify-content: flex-start; }.shipping-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 16/10; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
