:root {
  --ink: #221b19;
  --muted: #6f625d;
  --cream: #f7f0e7;
  --paper: #fffaf4;
  --wine: #4b1727;
  --wine-dark: #32101c;
  --rose: #a95f66;
  --brass: #b58a4a;
  --line: rgba(52, 31, 25, .14);
  --shadow: 0 24px 70px rgba(48, 25, 21, .14);
  --radius: 28px;
  --font-arabic: "IBM Plex Sans Arabic", sans-serif;
  --font-display-arabic: "Noto Kufi Arabic", sans-serif;
  --font-english: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-arabic);
  line-height: 1.7;
}

html[lang="en"] body {
  font-family: var(--font-english);
  line-height: 1.55;
}

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

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 112px; }
.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 5px 20px;
  color: #f8e8df;
  background: var(--wine-dark);
  font-size: .76rem;
  letter-spacing: .02em;
}
.announcement p { margin: 0; }

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-block-end: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; width: max-content; align-items: baseline; gap: 10px; }
.brand strong {
  color: var(--wine);
  font-family: var(--font-display-arabic);
  font-size: 1.7rem;
  line-height: 1;
}
.brand span {
  color: var(--muted);
  font-family: var(--font-english);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.site-nav a {
  position: relative;
  font-size: .88rem;
  font-weight: 600;
}
.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -8px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
[dir="rtl"] .header-actions { justify-content: flex-start; }
.language-button, .cart-button, .menu-button, .icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.language-button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}
.language-current {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--wine);
  border-radius: 50%;
}
.cart-button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 700;
}
.bag-icon {
  position: relative;
  width: 17px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 2px 2px 5px 5px;
}
.bag-icon::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 6px;
  inset-inline-start: 50%;
  inset-block-start: -6px;
  border: 1.5px solid currentColor;
  border-block-end: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}
.cart-count {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--font-english);
  font-size: .66rem;
}
.menu-button { display: none; }

.hero {
  padding-block: 58px 74px;
  background:
    radial-gradient(circle at 20% 20%, rgba(181, 138, 74, .14), transparent 25%),
    linear-gradient(145deg, #fffaf4, #f4e9dd);
}
.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  grid-template-areas: "visual copy";
  gap: 66px;
  align-items: center;
}
[dir="ltr"] .hero-grid {
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
  grid-template-areas: "copy visual";
}
.hero-copy { grid-area: copy; position: relative; z-index: 1; }
.hero-visual { grid-area: visual; margin: 0; position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px 24px 32px -14px;
  border: 1px solid rgba(75, 23, 39, .22);
  border-radius: 52% 48% 45% 55% / 38% 52% 48% 62%;
}
[dir="rtl"] .hero-visual::before { inset: -14px -14px 32px 24px; }
.hero-visual img {
  position: relative;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 52% 48% 45% 55% / 38% 52% 48% 62%;
  box-shadow: var(--shadow);
}
.hero-visual figcaption {
  position: absolute;
  inset-inline-end: 22px;
  inset-block-end: -19px;
  padding: 9px 16px;
  color: var(--paper);
  background: var(--wine);
  border-radius: 999px;
  font-size: .72rem;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-family: var(--font-english);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
[lang="ar"] .eyebrow {
  font-family: var(--font-arabic);
  letter-spacing: .07em;
}
.hero h1 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display-arabic);
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.28;
}
[lang="en"] .hero h1 {
  font-family: var(--font-english);
  font-size: clamp(3.1rem, 5.6vw, 5.7rem);
  letter-spacing: -.065em;
  line-height: .98;
}
.hero-lead {
  max-width: 590px;
  margin: 25px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--wine); }
.button-primary:hover { background: var(--wine-dark); }
.button-secondary { color: var(--wine); border-color: var(--line); background: white; }
.button-light { color: var(--wine); background: var(--cream); }
.button-full { width: 100%; }
.text-link {
  padding: 9px 0;
  border: 0;
  border-block-end: 1px solid var(--wine);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}
.hero-notes {
  display: flex;
  gap: 32px;
  margin: 42px 0 0;
}
.hero-notes div { padding-inline-end: 30px; border-inline-end: 1px solid var(--line); }
.hero-notes div:last-child { padding-inline-end: 0; border: 0; }
.hero-notes dt { color: var(--wine); font-family: var(--font-display-arabic); font-size: 1.15rem; font-weight: 700; }
.hero-notes dd { margin: 1px 0 0; color: var(--muted); font-size: .72rem; }

.service-strip { border-block: 1px solid var(--line); background: #fffdf9; }
.service-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 25px;
}
.service-strip .shell > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-inline: 24px;
  border-inline-end: 1px solid var(--line);
}
.service-strip .shell > div:last-child { border: 0; }
.service-strip span { color: var(--brass); font-size: 1.1rem; }
.service-strip p { display: grid; margin: 0; }
.service-strip strong { font-size: .83rem; }
.service-strip small { color: var(--muted); font-size: .72rem; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
  margin-block-end: 36px;
}
.section-heading h2, .ritual h2, .about h2 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-display-arabic);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.35;
}
[lang="en"] .section-heading h2,
[lang="en"] .ritual h2,
[lang="en"] .about h2 {
  font-family: var(--font-english);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-block-end: 35px; }
.filters button {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}
.filters button.active { color: white; border-color: var(--wine); background: var(--wine); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}
.product-card { position: relative; min-width: 0; }
.product-shot {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background-image: url("images/products-grid.png");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  background-color: #eee3d5;
}
.shot-0 { background-position: 0 0; }
.shot-1 { background-position: 33.333% 0; }
.shot-2 { background-position: 66.666% 0; }
.shot-3 { background-position: 100% 0; }
.shot-4 { background-position: 0 100%; }
.shot-5 { background-position: 33.333% 100%; }
.shot-6 { background-position: 66.666% 100%; }
.shot-7 { background-position: 100% 100%; }
.quick-add {
  position: absolute;
  inset-inline: 13px;
  inset-block-end: 13px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(50, 16, 28, .92);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.product-card:hover .quick-add, .quick-add:focus-visible { opacity: 1; transform: none; }
.product-meta { padding: 15px 4px 0; }
.product-category { margin: 0 0 2px; color: var(--rose); font-size: .7rem; font-weight: 700; }
.product-row { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.product-row h3 { margin: 0; font-size: .98rem; }
.product-row span { flex: none; color: var(--muted); font-family: var(--font-english); font-size: .82rem; }
.product-notes { margin: 4px 0 0; color: var(--muted); font-size: .74rem; }

.ritual { background: var(--cream); }
.ritual-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 74px;
}
.ritual figure { margin: 0; }
.ritual figure img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ritual-copy > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--muted); }
.ritual ol { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.ritual li { display: flex; align-items: center; gap: 14px; }
.ritual li > span {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--wine);
  border: 1px solid rgba(75, 23, 39, .24);
  border-radius: 50%;
  font-weight: 700;
}
.ritual li div { display: grid; }
.ritual li small { color: var(--muted); }
.about { padding-block: 72px 112px; background: var(--cream); }
.about-card {
  padding: 72px min(9vw, 110px);
  color: #f8eee8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 138, 74, .26), transparent 24%),
    var(--wine);
  text-align: center;
}
.about-card .eyebrow { color: #dabd94; }
.about-card h2 { color: white; }
.about-card > p:not(.eyebrow) { max-width: 710px; margin: 23px auto 29px; color: rgba(255,255,255,.75); }

.site-footer { padding-block: 70px 25px; color: #eaded7; background: #21171a; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr 1.1fr;
  gap: 55px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand strong { font-family: var(--font-display-arabic); font-size: 2rem; }
.footer-brand > span { font-family: var(--font-english); font-size: .65rem; letter-spacing: .26em; }
.footer-brand p, .footer-note p { color: #aa9c98; font-size: .8rem; }
.footer-grid h3 { margin: 0 0 14px; color: white; font-size: .82rem; }
.footer-grid a, .footer-grid button {
  display: block;
  width: max-content;
  margin-block: 8px;
  padding: 0;
  border: 0;
  color: #aa9c98;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
}
.footer-grid a:hover, .footer-grid button:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: 48px;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(255,255,255,.1);
  color: #847673;
  font-size: .7rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 18, 18, .52);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: 220;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform .3s ease;
}
[dir="rtl"] .cart-drawer { transform: translateX(-105%); }
.cart-drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding-block-end: 20px; border-block-end: 1px solid var(--line); }
.drawer-head h2 { margin: 0; color: var(--wine); font-family: var(--font-display-arabic); font-size: 1.65rem; }
[lang="en"] .drawer-head h2 { font-family: var(--font-english); }
.icon-button { width: 40px; height: 40px; display: grid; place-items: center; font-size: 1.7rem; border-radius: 50%; }
.icon-button:hover { background: var(--cream); }
.cart-items { flex: 1; overflow: auto; padding-block: 10px; }
.cart-empty { padding-block: 80px; text-align: center; color: var(--muted); }
.cart-empty span { display: block; margin-block-end: 12px; color: var(--brass); font-size: 2rem; }
.cart-line { display: grid; grid-template-columns: 82px 1fr auto; gap: 13px; padding-block: 16px; border-block-end: 1px solid var(--line); }
.cart-thumb { width: 82px; height: 82px; border-radius: 12px; background-image: url("images/products-grid.png"); background-repeat: no-repeat; background-size: 400% 200%; }
.cart-line h3 { margin: 0; font-size: .84rem; }
.cart-line p { margin: 3px 0; color: var(--muted); font-size: .7rem; }
.cart-line > strong { font-family: var(--font-english); font-size: .75rem; }
.line-actions { display: flex; align-items: center; gap: 7px; margin-block-start: 8px; }
.line-actions button { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.line-actions .remove { width: auto; margin-inline-start: 5px; padding: 0; border: 0; border-radius: 0; color: var(--rose); background: transparent; font-size: .66rem; }
.drawer-foot { padding-block-start: 20px; border-block-start: 1px solid var(--line); }
.subtotal { display: flex; justify-content: space-between; gap: 20px; }
.drawer-foot > p { margin: 5px 0 15px; color: var(--muted); font-size: .72rem; }

.modal, .checkout-modal {
  position: fixed;
  left: 50%;
  z-index: 230;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -47%) scale(.98);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.modal.open, .checkout-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal {
  inset-block-start: 50%;
  width: min(920px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; inset-block-start: 15px; inset-inline-end: 15px; z-index: 2; background: rgba(255,255,255,.88); }
.quick-view { display: grid; grid-template-columns: 1fr 1fr; }
.quick-image { min-height: 590px; background-image: url("images/products-grid.png"); background-repeat: no-repeat; background-size: 400% 200%; background-color: #eee3d5; }
.quick-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.quick-copy h2 { margin: 0; color: var(--wine); font-family: var(--font-display-arabic); font-size: 2rem; line-height: 1.35; }
[lang="en"] .quick-copy h2 { font-family: var(--font-english); line-height: 1.1; }
.quick-description { color: var(--muted); }
.note-list { display: flex; flex-wrap: wrap; gap: 7px; margin-block: 12px 24px; }
.note-list span { padding: 6px 11px; color: var(--wine); background: var(--cream); border-radius: 999px; font-size: .7rem; }
.variant-field { margin: 0; padding: 0; border: 0; }
.variant-field legend { margin-block-end: 9px; font-size: .77rem; font-weight: 700; }
#variantOptions { display: flex; gap: 8px; flex-wrap: wrap; }
#variantOptions label { cursor: pointer; }
#variantOptions input { position: absolute; opacity: 0; pointer-events: none; }
#variantOptions span { display: block; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; }
#variantOptions input:checked + span { color: white; border-color: var(--wine); background: var(--wine); }
.quick-buy { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-block-start: 28px; }
.quantity { min-height: 52px; display: flex; align-items: center; gap: 7px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.quantity button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; }
.quantity span { min-width: 18px; text-align: center; font-family: var(--font-english); }
.scent-finder { width: min(640px, calc(100% - 34px)); padding: 58px; text-align: center; }
.scent-finder h2 { margin: 0; color: var(--wine); font-family: var(--font-display-arabic); font-size: 2rem; }
[lang="en"] .scent-finder h2 { font-family: var(--font-english); }
.scent-finder > p:not(.eyebrow) { color: var(--muted); }
.finder-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-block-start: 25px; }
.finder-choices button { min-height: 120px; display: grid; place-items: center; gap: 3px; border: 1px solid var(--line); border-radius: 16px; background: white; cursor: pointer; }
.finder-choices button:hover { border-color: var(--rose); background: var(--cream); }
.finder-choices span { font-size: 1.5rem; }

.checkout-modal {
  inset-block-start: 50%;
  width: min(820px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  overflow: auto;
}
.checkout-shell { position: relative; padding: 38px 46px 42px; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.checkout-close { position: absolute; inset-block-start: 16px; inset-inline-end: 16px; }
.checkout-shell > header { display: flex; align-items: center; gap: 28px; padding-inline-end: 45px; }
.brand.mini { flex-direction: column; align-items: flex-start; gap: 1px; padding-inline-end: 28px; border-inline-end: 1px solid var(--line); }
.checkout-shell header h2 { margin: 0; color: var(--wine); font-family: var(--font-display-arabic); font-size: 1.5rem; }
[lang="en"] .checkout-shell header h2 { font-family: var(--font-english); }
.checkout-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; margin-block: 32px; }
.checkout-progress > span { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.checkout-progress b { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--font-english); font-size: .68rem; }
.checkout-progress small { font-size: .68rem; }
.checkout-progress i { height: 1px; background: var(--line); }
.checkout-progress span.active { color: var(--wine); }
.checkout-progress span.active b { color: white; border-color: var(--wine); background: var(--wine); }
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h3 { margin: 0 0 20px; font-size: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 6px; color: var(--muted); font-size: .72rem; }
.form-grid label.wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: white;
}
.form-grid input:focus, .form-grid select:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(169,95,102,.12); }
.step-next { margin-block-start: 22px; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-block-start: 22px; }
.form-error { min-height: 20px; margin: 8px 0 0; color: #a63535; font-size: .72rem; }
.demo-warning { display: flex; gap: 9px; margin-block-end: 18px; padding: 12px 14px; color: #745519; border: 1px solid #e0c27c; border-radius: 10px; background: #fff7dc; font-size: .72rem; }
.review-items { border-block: 1px solid var(--line); }
.review-line { display: flex; justify-content: space-between; gap: 20px; padding-block: 12px; border-block-end: 1px solid var(--line); font-size: .78rem; }
.review-line:last-child { border: 0; }
.review-line span:last-child { flex: none; font-family: var(--font-english); }
.review-total { display: flex; justify-content: space-between; margin-block-start: 18px; color: var(--wine); }
.confirmation { display: none; padding-block: 28px 10px; text-align: center; }
.confirmation.open { display: block; }
.confirmation-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; color: white; background: var(--wine); border-radius: 50%; font-size: 1.6rem; }
.confirmation h3 { margin: 0; color: var(--wine); font-family: var(--font-display-arabic); font-size: 1.65rem; }
[lang="en"] .confirmation h3 { font-family: var(--font-english); }
.confirmation > p:not(.eyebrow) { color: var(--muted); }
.confirmation > strong { display: block; margin-block: 15px; color: var(--wine); font-family: var(--font-english); }
.confirmation .demo-warning { justify-content: center; margin: 20px auto; max-width: 580px; }
.toast {
  position: fixed;
  left: 50%;
  inset-block-end: 22px;
  z-index: 300;
  padding: 11px 20px;
  color: white;
  border-radius: 999px;
  background: var(--wine-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: .8rem;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
body.modal-open { overflow: hidden; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-button {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .menu-button span { width: 3px; height: 3px; border-radius: 50%; background: var(--wine); }
  .menu-button b { margin-inline-start: 4px; font-size: .7rem; }
  .site-nav {
    position: absolute;
    inset-inline: 20px;
    inset-block-start: calc(100% + 9px);
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 8px; }
  .language-button > span:last-child, .cart-button > span:nth-child(2) { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: clamp(2.7rem, 6.5vw, 4.8rem); }
  .hero-notes { gap: 16px; }
  .hero-notes div { padding-inline-end: 15px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .ritual-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding-block: 78px; }
  .announcement { font-size: .67rem; text-align: center; }
  .header-inner { min-height: 70px; gap: 9px; }
  .brand strong { font-size: 1.35rem; }
  .brand span { display: none; }
  .header-actions { gap: 0; }
  .language-button, .cart-button { padding-inline: 8px; }
  .hero { padding-block: 35px 55px; }
  .hero-grid, [dir="ltr"] .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "copy";
    gap: 50px;
  }
  .hero-visual { width: calc(100% - 12px); }
  .hero-copy { text-align: start; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  [lang="en"] .hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-lead { font-size: .96rem; }
  .hero-notes { justify-content: space-between; }
  .hero-notes div { flex: 1; }
  .hero-notes dd { font-size: .64rem; }
  .service-strip .shell { grid-template-columns: 1fr; padding-block: 8px; }
  .service-strip .shell > div { justify-content: flex-start; padding-block: 13px; border-inline-end: 0; border-block-end: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 25px 10px; }
  .quick-add { opacity: 1; transform: none; font-size: .7rem; }
  .product-row { display: grid; gap: 3px; }
  .product-notes { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual figure img { aspect-ratio: 1 / 1; }
  .about { padding-block-start: 20px; }
  .about-card { padding: 52px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .quick-view { grid-template-columns: 1fr; }
  .quick-image { min-height: auto; aspect-ratio: 1; }
  .quick-copy { padding: 35px 22px 28px; }
  .quick-buy { grid-template-columns: 1fr; }
  .quick-buy .quantity { width: max-content; }
  .scent-finder { padding: 48px 20px 25px; }
  .finder-choices { gap: 7px; }
  .finder-choices button { min-height: 100px; padding: 10px; }
  .checkout-shell { padding: 28px 18px; }
  .checkout-shell > header { gap: 16px; }
  .brand.mini { display: none; }
  .checkout-progress small { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  .step-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .step-actions .button { padding-inline: 12px; }
}

@media (max-width: 430px) {
  .menu-button b { display: none; }
  .hero-notes { gap: 7px; }
  .hero-notes div { padding-inline-end: 8px; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-shot { aspect-ratio: 1.05 / 1; }
  .product-row { display: flex; }
  .cart-drawer { padding: 22px 16px; }
}

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