/* ============================================================
   AL BARAKAH NATURALS — styles
   Warm cream, deep green and gold. Photos sit on --photo so the
   product renders blend into their cards.
   ============================================================ */

:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --tint: #F4EFE6;
  --photo: #ECE8E0;
  --line: #E6DFD2;
  --ink: #1F1B16;
  --ink-2: #5C5448;
  --green: #1F3D2B;
  --green-2: #2B5239;
  --green-deep: #15291D;
  --green-50: #EEF3EF;
  --gold: #B8923A;
  --gold-2: #D9B870;
  --gold-soft: #F3E8CC;
  --gold-ink: #8A6420;
  --wa: #0E8A4B;
  --on-dark: #F7F1E3;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(31, 27, 22, .06), 0 2px 8px rgba(31, 27, 22, .04);
  --shadow: 0 12px 32px rgba(31, 27, 22, .10), 0 2px 6px rgba(31, 27, 22, .05);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar: "Amiri", "Geeza Pro", "Noto Naskh Arabic", serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }
[lang="ar"] { font-family: var(--font-ar); }
[hidden] { display: none !important; }

[data-icon] { display: inline-grid; place-items: center; flex: none; }
[data-icon] svg, [data-art] svg, .btn svg, .badge svg { display: block; width: 100%; height: auto; }

.wrap { width: min(1200px, 100% - 40px); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--green); color: var(--on-dark);
  padding: 8px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow [lang="ar"] { font-size: 1.15rem; letter-spacing: 0; text-transform: none; font-weight: 700; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn svg, .btn [data-icon] { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: var(--on-dark); }
.btn--primary:hover { background: var(--green-2); }
.btn--outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green-50); }
.btn--gold { background: var(--gold-2); color: var(--green-deep); }
.btn--gold:hover { background: #E4C788; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #0B7640; }
.btn--ghost-light { border-color: rgba(247, 241, 227, .5); color: var(--on-dark); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .08); }
.btn--block { width: 100%; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }
.btn--sm svg { width: 16px; height: 16px; }
.link-btn {
  border: 0; background: none; padding: 6px; cursor: pointer;
  color: var(--ink-2); font-size: .9rem; text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- top bar + header ---------- */

.topbar { background: var(--green-deep); color: var(--gold-soft); font-size: .82rem; }
.topbar__inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 16px; min-height: 38px; padding-block: 6px; }
.topbar a { text-decoration: none; }
.topbar a strong { color: #fff; font-weight: 600; }
.topbar__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 248, 244, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; min-width: 0; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.brand__en { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--green-deep); white-space: nowrap; }
.brand__ar { font-size: .92rem; color: var(--gold-ink); }

.nav { display: flex; gap: 2px; }
.nav a {
  padding: 8px 12px; border-radius: 999px;
  font-weight: 500; font-size: .92rem; color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--tint); color: var(--green); }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  font-weight: 600; font-size: .92rem; color: var(--green); text-decoration: none;
}
.header-phone [data-icon] { width: 18px; height: 18px; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 10px 18px; border-radius: 999px; border: 0;
  background: var(--green); color: var(--on-dark); cursor: pointer;
  font-weight: 600; font-size: .92rem;
}
.cart-btn:hover { background: var(--green-2); }
.cart-btn [data-icon] { width: 18px; height: 18px; }
.cart-count {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px; background: var(--gold-2); color: var(--green-deep);
  font-size: .78rem; font-weight: 700;
}
.bump { animation: bump .45s ease; }
@keyframes bump { 40% { transform: scale(1.08); } }

/* ---------- hero ---------- */

.hero { padding-block: clamp(28px, 5vw, 64px) clamp(28px, 4vw, 48px); }
.hero__inner { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hero h1 {
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.02; letter-spacing: -.01em;
  color: var(--green-deep);
}
.hero__lead { margin-top: 18px; max-width: 34em; font-size: 1.1rem; color: var(--ink-2); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 24px 0 0; padding: 0; list-style: none; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.hero__trust li { display: flex; align-items: center; gap: 6px; }
.hero__trust [data-icon] { width: 18px; height: 18px; color: var(--gold); }
.hero__media { margin: 0; border-radius: 24px; overflow: hidden; background: var(--photo); box-shadow: var(--shadow); }
.hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 44fr 56fr; }
}

/* ---------- categories ---------- */

.categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding-block: 8px 40px; }
.cat {
  display: flex; flex-direction: column; gap: 2px; text-decoration: none;
  font-weight: 600; color: var(--green-deep);
}
.cat img {
  width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 10px;
  border-radius: 16px; background: var(--photo);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat small { font-weight: 400; font-size: .85rem; color: var(--ink-2); }

/* ---------- promise strip ---------- */

.promise { border-block: 1px solid var(--line); background: var(--surface); }
.promise__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-block: 22px; }
.promise__item { display: flex; align-items: center; gap: 14px; }
.promise__item > [data-icon] {
  width: 46px; height: 46px; padding: 11px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-ink);
}
.promise__item strong { display: block; font-size: .95rem; color: var(--green-deep); }
.promise__item p { font-size: .86rem; color: var(--ink-2); }

/* ---------- sections ---------- */

.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tint { background: var(--tint); }
.section--green { background: var(--green-deep); color: var(--on-dark); }
.section__head { max-width: 700px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.section__head h2 {
  margin-top: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem); color: var(--green-deep);
}
.section__head p:not(.eyebrow) { margin-top: 12px; color: var(--ink-2); font-size: 1.05rem; }
.section__head--light h2 { color: #fff; }
.section__head--light .eyebrow { color: var(--gold-2); }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); font-size: .86rem; font-weight: 500; color: var(--green-deep);
}
.chips li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }

/* ---------- product cards ---------- */

.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__media { position: relative; aspect-ratio: 1; background: var(--photo); display: grid; place-items: center; }
.card__media > img { width: 100%; height: 100%; object-fit: cover; }
.card__media > svg { width: 78%; height: auto; }
.card__media .jars { display: flex; align-items: flex-end; justify-content: center; gap: 8px; width: 80%; }
.card__media .jars svg { width: 50%; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--green); color: var(--on-dark);
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
}
.badge svg { width: 14px; height: 14px; }
.badge--light { background: rgba(255, 255, 255, .88); color: var(--green-deep); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1.1; color: var(--green-deep); }
.card__sub { display: block; margin-top: 4px; font-family: var(--font-body); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); }
.card__ar { margin-top: 2px; font-size: 1.2rem; color: var(--ink-2); text-align: left; }
.card__text { margin-top: 10px; font-size: .95rem; color: var(--ink-2); }
.card__meta { margin-top: 6px; font-size: .9rem; color: var(--ink-2); }
.card__buy { margin-top: auto; padding-top: 18px; }
.card__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--green-deep); font-variant-numeric: lining-nums; }
.price small { display: block; margin-top: 4px; font-family: var(--font-body); font-size: .78rem; font-weight: 500; color: var(--ink-2); }

.ticks { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.ticks li {
  position: relative; padding-left: 26px; font-size: .92rem;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6420' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4L18 8'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks--sm li { font-size: .9rem; }

.segs { display: flex; gap: 8px; margin-bottom: 14px; }
.seg {
  flex: 1; display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  padding: 10px 14px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--surface); cursor: pointer; font-size: .92rem; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.seg strong { font-weight: 700; color: var(--green-deep); }
.seg:hover { border-color: var(--gold-2); }
.seg.is-selected { border-color: var(--green); background: var(--green-50); box-shadow: inset 0 0 0 1px var(--green); }

.btn--add { padding: 12px 18px; }

.sample-tag {
  display: inline-block; margin-left: 4px; padding: 1px 8px; border-radius: 999px;
  border: 1px dashed var(--gold); color: var(--gold-ink);
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; vertical-align: middle;
}

/* ---------- verse ---------- */

.verse {
  margin: 0; padding-block: clamp(40px, 6vw, 64px); text-align: center;
  background-color: var(--tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23B8923A' stroke-opacity='.14'%3E%3Crect x='24' y='24' width='24' height='24'/%3E%3Crect x='24' y='24' width='24' height='24' transform='rotate(45 36 36)'/%3E%3Cpath d='M0 36h12M60 36h12M36 0v12M36 60v12'/%3E%3C/g%3E%3C/svg%3E");
}
.verse blockquote { margin: 0; }
.verse__ar { font-size: clamp(1.6rem, 3.6vw, 2.4rem); line-height: 1.9; color: var(--green-deep); }
.verse__en { margin-top: 8px; font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink-2); }
.verse figcaption { margin-top: 10px; font-size: .85rem; letter-spacing: .08em; color: var(--gold-ink); }

/* ---------- why choose us ---------- */

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why__item {
  padding: 26px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(217, 184, 112, .22);
}
.why__item > [data-icon] {
  width: 48px; height: 48px; padding: 12px; margin-bottom: 16px; border-radius: 50%;
  background: rgba(217, 184, 112, .16); color: var(--gold-2);
}
.why__item h3 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.why__item p { margin-top: 8px; color: rgba(247, 241, 227, .8); font-size: .95rem; }

/* ---------- about ---------- */

.about { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr 1fr; align-items: start; }
.about__story h2 { margin-top: 10px; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--green-deep); }
.about__story p:not(.eyebrow) { margin-top: 16px; font-size: 1.05rem; color: var(--ink-2); }
.about__values { display: grid; gap: 16px; }
.value { padding: 22px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.value h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--green-deep); }
.value p, .value .ticks { margin-top: 8px; color: var(--ink-2); font-size: .95rem; }

/* ---------- bulk ---------- */

.bulk {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(28px, 4vw, 44px); border-radius: 24px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--on-dark); box-shadow: var(--shadow);
}
.bulk > div:first-child { max-width: 640px; }
.bulk .eyebrow { color: var(--gold-2); }
.bulk h2 { margin-top: 8px; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.4rem); color: #fff; }
.bulk p:not(.eyebrow) { margin-top: 8px; color: rgba(247, 241, 227, .85); }
.bulk__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- how to order ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.steps li { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.steps__num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 50%;
  background: var(--green); color: var(--gold-2); font-weight: 700; font-size: 1rem;
}
.steps h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--green-deep); }
.steps p { margin-top: 6px; color: var(--ink-2); font-size: .95rem; }

.pay-methods { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin-top: 28px; }
.pay-methods p { font-weight: 600; color: var(--green-deep); }
.pay-methods ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pay-methods li {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); font-size: .9rem; font-weight: 500;
}
.pay-methods li svg { width: 18px; height: 18px; color: var(--gold-ink); }

/* ---------- FAQ ---------- */

.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 18px 56px 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--green-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  border-radius: 50%; background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6420' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 7v10M7 12h10'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--ink-2); }

/* ---------- contact ---------- */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.contact h2 { margin-top: 10px; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--green-deep); }
.contact p:not(.eyebrow) { margin-top: 12px; color: var(--ink-2); font-size: 1.05rem; }
.contact__card { padding: clamp(24px, 4vw, 36px); border-radius: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact__label { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); }
.contact__phone { display: block; margin-top: 6px; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--green-deep); text-decoration: none; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ---------- footer ---------- */

.site-footer { background: var(--green-deep); color: rgba(247, 241, 227, .82); font-size: .92rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; padding-block: 48px 32px; }
.site-footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.site-footer__brand p + p { margin-top: 6px; }
.site-footer__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.site-footer__ar { color: var(--gold-2); text-align: left; }
.site-footer__links { display: grid; gap: 8px; align-content: start; }
.site-footer__links a { text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__contact a { display: inline-block; margin-top: 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #fff; text-decoration: none; }
.site-footer .blessing { margin-top: 14px; font-size: 1.3rem; color: var(--gold-2); }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 20px 28px; border-top: 1px solid rgba(217, 184, 112, .2); font-size: .8rem; color: rgba(247, 241, 227, .6); }
.site-footer__legal p:first-child { max-width: 760px; }

/* ---------- mobile action bar ---------- */

.mobile-bar { display: none; }

/* ---------- order drawer ---------- */

.backdrop {
  position: fixed; inset: 0; z-index: 60; background: rgba(21, 41, 29, .45);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; flex-direction: column; width: min(440px, 100%);
  background: var(--bg);
  transform: translateX(100%); transition: transform .3s ease, box-shadow .3s ease;
}
.cart-open { overflow: hidden; }
.cart-open .backdrop { opacity: 1; pointer-events: auto; }
.cart-open .drawer { transform: none; box-shadow: -12px 0 40px rgba(0, 0, 0, .18); }

.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--green-deep); }
.icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.icon-btn [data-icon] { width: 20px; height: 20px; }
.drawer__main { display: flex; flex-direction: column; flex: 1; min-height: 0; overflow-y: auto; }
.drawer__body { padding: 8px 22px; }
.cart-empty { padding: 24px 0; color: var(--ink-2); }
.lines { margin: 0; padding: 0; list-style: none; }
.line {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "info total" "qty total";
  gap: 8px 12px; padding: 16px 0; border-bottom: 1px solid var(--line);
}
.line__info { grid-area: info; display: flex; flex-direction: column; }
.line__en { font-weight: 600; color: var(--green-deep); }
.line__en em { font-style: normal; font-weight: 500; color: var(--ink-2); }
.line__ar { font-size: 1rem; color: var(--ink-2); text-align: left; }
.line__unit { font-size: .82rem; color: var(--ink-2); }
.line__total { grid-area: total; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-weight: 700; color: var(--green-deep); }
.line__remove { border: 0; background: none; padding: 0; font-size: .8rem; font-weight: 500; color: var(--ink-2); text-decoration: underline; cursor: pointer; }
.line__qty { grid-area: qty; display: inline-flex; align-items: center; gap: 4px; }
.line__qty output { min-width: 28px; text-align: center; font-weight: 600; }
.qty-btn { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.qty-btn svg { width: 16px; height: 16px; }

.drawer__foot { display: grid; gap: 12px; margin-top: auto; padding: 18px 22px 22px; border-top: 1px solid var(--line); background: var(--surface); }
.drawer__foot.is-empty { opacity: .55; }
.total { display: flex; align-items: baseline; justify-content: space-between; font-weight: 600; }
.total strong { font-family: var(--font-display); font-size: 2rem; color: var(--green-deep); }
.drawer__foot label, .choice legend { display: grid; gap: 4px; font-size: .88rem; font-weight: 600; color: var(--green-deep); }
.drawer__foot input:not([type="radio"]), .drawer__foot textarea {
  width: 100%; padding: 11px 13px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--bg); font: inherit; font-size: 1rem; font-weight: 400; color: var(--ink);
}
.drawer__foot input:focus, .drawer__foot textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-50); }
.optional { font-weight: 400; color: var(--ink-2); }
.choice { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; border: 0; }
.choice legend { margin-bottom: 6px; }
.choice label { display: block; }
.choice input { position: absolute; opacity: 0; }
.choice label > span {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--bg); font-weight: 500; color: var(--ink); cursor: pointer;
}
.choice label > span em { font-style: normal; color: var(--ink-2); font-size: .82rem; }
.choice label > span svg { width: 18px; height: 18px; color: var(--gold-ink); }
.choice input:checked + span { border-color: var(--green); background: var(--green-50); box-shadow: inset 0 0 0 1px var(--green); }
.choice input:focus-visible + span { outline: 2.5px solid var(--gold); outline-offset: 2px; }
.choice--pay > div { display: grid; gap: 8px; width: 100%; }
.choice--pay label > span { display: flex; border-radius: 12px; }
.form-msg { color: #A33A1E; font-size: .9rem; font-weight: 500; }
.form-msg:empty { display: none; }
.fine { font-size: .82rem; color: var(--ink-2); text-align: center; }
.fine a { color: var(--green); font-weight: 600; }

.drawer__done { padding: 28px 22px; }
.done { display: grid; gap: 14px; text-align: center; }
.done__icon { width: 56px; height: 56px; padding: 14px; margin-inline: auto; border-radius: 50%; background: var(--green); color: var(--gold-2); }
.done h3 { font-family: var(--font-display); font-size: 2rem; color: var(--green-deep); }
.done > p { color: var(--ink-2); }
.done__pay { display: grid; gap: 12px; padding: 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); text-align: left; }
.copyrow { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 14px; border-radius: 10px; background: var(--tint); }
.copyrow code { flex: 1; overflow-wrap: anywhere; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--green-deep); }

/* ---------- toast ---------- */

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 80;
  display: flex; align-items: center; gap: 10px; max-width: calc(100% - 32px);
  padding: 10px 10px 10px 16px; border-radius: 999px;
  background: var(--green-deep); color: var(--on-dark); box-shadow: var(--shadow);
  font-size: .92rem; font-weight: 500;
  transform: translate(-50%, 140%); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.toast.is-on { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.toast svg { width: 18px; height: 18px; flex: none; color: var(--gold-2); }
.toast button { border: 0; border-radius: 999px; padding: 6px 12px; background: var(--gold-2); color: var(--green-deep); font-weight: 600; font-size: .85rem; cursor: pointer; }
.toast span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.noscript { padding: 16px; text-align: center; background: var(--gold-soft); }

/* ---------- responsive ---------- */

@media (max-width: 1120px) {
  .nav { display: none; }
}

@media (max-width: 960px) {
  .categories { grid-template-columns: repeat(3, 1fr); }
  .promise__inner { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .about, .contact { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .wrap { width: min(1200px, 100% - 32px); }
  .topbar__inner > span:nth-child(3), .topbar__inner > span:nth-child(4) { display: none; }
  .header-phone { display: none; }
  .brand__en { font-size: 1.25rem; }
  .brand__mark { width: 36px; height: 36px; }
  .cart-btn { padding: 9px 14px; }
  .cart-btn__label { display: none; }
  .hero__cta .btn { flex: 1 1 auto; }
  .categories { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; width: 100%; margin: 0; padding: 8px 16px 24px; scrollbar-width: none; }
  .categories::-webkit-scrollbar { display: none; }
  .cat { flex: 0 0 40%; scroll-snap-align: start; }
  .promise__inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .promise__item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .why, .steps { grid-template-columns: 1fr; }
  .bulk { border-radius: 20px; }
  .bulk__cta, .bulk__cta .btn { width: 100%; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .toast { bottom: 84px; }

  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: grid; grid-template-columns: 1fr 2fr; gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250, 248, 244, .96); border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  }
  .mobile-bar a, .mobile-bar button {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer;
  }
  .mobile-bar [data-icon] { width: 18px; height: 18px; }
  .mobile-bar__call { border: 1.5px solid var(--green); color: var(--green); }
  .mobile-bar__order { border: 0; background: var(--green); color: var(--on-dark); }
  body { padding-bottom: 72px; }
}

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