/* ==========================================================================
   Akram Qaswal Perfumes — design tokens + base styles
   Visual language reference: Maison Crivelli (structure/mood/effects only,
   no copied assets — all copy, photography and products are Akram Qaswal's own)
   ========================================================================== */

:root {
  /* Colors */
  --accent: #C93825;
  --accent-dark: #A62D1D;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --ink: #1A1614;
  --ink-soft: #6B6560;
  --ink-invert: #FAFAFA;
  --border: #E8E4DE;
  --header-overlay: rgba(15, 12, 11, 0.35);

  /* Type */
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --container-w: 1320px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.eyebrow-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
}
.section-title em, .section-title .accent-word {
  font-style: italic;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--ink);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-outline-invert {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-invert:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Tag / badge ---------- */
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
}
.tag-soldout {
  color: var(--ink-soft);
  border-color: var(--border);
  background: #F1EDE7;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  position: relative;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 44px;
  text-transform: uppercase;
  font-weight: 600;
}
.announcement-close {
  position: absolute;
  inset-inline-end: var(--sp-5);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  opacity: 0.85;
}
.announcement-close:hover { opacity: 1; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 40;
}
.site-header.is-solid {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

/* Hero overlay mode: row 1 and row 2 are independent layers stacked on the hero via CSS Grid
   (all three share the same grid cell). Row 1 has a fixed height so row 2's sticky offset and
   flow position never depend on guessing font-rendered heights. Row 2 (position:sticky) stays
   pinned to the top of the viewport for the full height of the hero and releases naturally once
   the hero's bottom edge passes. A tiny IntersectionObserver (see partials/header.php) toggles
   .is-stuck on row 2 the moment it starts sticking, purely to trigger the compact/shrink style
   below -- the sticking itself is plain CSS. */
.hero-overlay {
  position: relative;
  display: grid;
  margin-top: -1px;
  --hero-row1-height: 52px;
}
.hero-overlay > * { grid-area: 1 / 1; }
.hero-top-row.is-transparent {
  align-self: start;
  height: var(--hero-row1-height);
  z-index: 6;
  background: transparent;
  color: #fff;
}
.hero-top-row.is-transparent .header-row--top { height: var(--hero-row1-height); padding-block: 0; }
.hero-nav-sentinel {
  align-self: start;
  margin-top: var(--hero-row1-height);
  height: 1px;
  pointer-events: none;
}
.hero-nav-row.is-transparent {
  align-self: start;
  margin-top: var(--hero-row1-height);
  position: sticky;
  top: 0;
  z-index: 5;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-nav-row.is-transparent.is-stuck {
  background: rgba(15,12,11,0.82);
  backdrop-filter: blur(6px);
}
.hero-nav-row.is-transparent .header-row--nav {
  padding-block: var(--sp-4);
  transition: padding 0.25s ease;
}
.hero-nav-row.is-transparent.is-stuck .header-row--nav {
  padding-block: var(--sp-2);
}
.hero-nav-row.is-transparent .header-nav a { transition: font-size 0.25s ease; }
.hero-nav-row.is-transparent.is-stuck .header-nav a { font-size: 11px; }

.header-row--top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 8px;
}
.header-row--nav {
  display: flex;
  justify-content: center;
  padding-bottom: var(--sp-4);
}
.header-wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: inherit;
  white-space: nowrap;
}
.header-icons { flex: 0 0 auto; }
.lang-toggle {
  align-items: center;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.desktop-lang-toggle { display: inline-flex; flex: 0 0 auto; }
.mobile-lang-toggle { display: none; }
.header-nav {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
}
.header-icons {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}
.header-icons svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 87vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--sp-8);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-cta { position: relative; z-index: 2; }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-inline-start: 1px solid var(--border);
}
.product-grid--cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.product-grid--cards .product-card { border: 1px solid var(--border); height: 100%; }
.product-grid--cards .product-card__name { font-size: 14px; }
@media (max-width: 900px) {
  .product-grid--cards { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23847E73' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center / 14px;
  padding: 11px 34px 11px 14px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  max-width: 220px;
  transition: border-color 0.15s ease;
}
.filter-select:hover, .filter-select:focus { border-color: var(--ink); outline: none; }
[dir="rtl"] .filter-select { background-position: left 12px center; padding: 11px 14px 11px 34px; }
.filter-clear {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
}
.pagination__num, .pagination__arrow {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.pagination__num.is-current { color: #fff; background: var(--accent); }
.pagination__num:hover:not(.is-current) { color: var(--ink); }
.pagination__dots { padding: 0 4px; color: var(--ink-soft); }

.product-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  border-inline-end: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-card__body {
  padding: var(--sp-4) var(--sp-4) 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.3em * 2);
}
.product-card__name .sub { display: block; font-style: italic; font-weight: 400; }
.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #F7F5F1;
  margin-bottom: var(--sp-4);
  padding: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: filter 0.2s ease; }
.product-card__image.has-tint { background: linear-gradient(155deg, var(--tint-a) 0%, var(--tint-b) 100%); }
.product-card.is-soldout .product-card__image img { filter: blur(2.5px); }
.product-card__soldout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255,255,255,0.88);
  padding: 6px 14px;
  border: 1px solid var(--accent);
}
.product-card__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 2px var(--sp-4);
  font-size: 12px;
  color: var(--ink-soft);
}
.product-card__prices b { color: var(--ink); font-weight: 700; margin-inline-start: 4px; }
.product-card__concentration {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: var(--sp-2);
}
.product-card__brand {
  font-size: 12px;
  color: var(--ink);
  margin-top: 2px;
  margin-bottom: var(--sp-4);
}
.product-card__cta-wrap { padding: 0 var(--sp-4) var(--sp-4); }
.product-card__cta { border-radius: 0; }

/* ---------- Collection tiles ---------- */
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: var(--sp-6);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}
.tile-content { position: relative; z-index: 1; }
.tile-content .section-title { color: #fff; font-size: 28px; margin-bottom: var(--sp-4); }

/* ---------- Slider (product & tile carousels) ---------- */
.slider { position: relative; }
.slider-track {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider-item { flex: 0 0 auto; scroll-snap-align: start; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}
.slider-arrow svg { width: 20px; height: 20px; stroke-width: 1.25; }
.slider-arrow--prev { inset-inline-start: -4px; }
.slider-arrow--next { inset-inline-end: -4px; }
.slider-arrow.is-hidden { display: none; }
.product-slider-item { width: 260px; }
.product-slider-item .product-card { height: 100%; border: 1px solid var(--border); }

.tile-slider-item { width: 78vw; max-width: 380px; }
.tile-slider-item .tile { width: 100%; }
@media (min-width: 720px) {
  .tile-slider-item { width: 31%; max-width: none; }
}

/* ---------- Statement band ---------- */
.statement-band {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
}
.statement-band .section-title { color: #fff; margin-bottom: var(--sp-6); }
.statement-band p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
}
.statement-band em { font-style: italic; }

/* ---------- Benefits row ---------- */
.benefits-row {
  text-align: center;
  padding: var(--sp-6) 0 var(--sp-8);
}
.benefits-row .slider-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-6);
  overflow: visible;
  cursor: auto;
}
.benefits-row__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.benefits-row h4 {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin: var(--sp-3) 0 var(--sp-2);
}
.benefits-row p { font-size: 12px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---------- Footer ---------- */
/* ---------- Footer policy accordion ---------- */
.footer-policies {
  padding-block: var(--sp-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-policies summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  list-style: none;
}
.footer-policies summary::-webkit-details-marker { display: none; }
.footer-policies__toggle { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.footer-policies__toggle::before, .footer-policies__toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.footer-policies__toggle::before { top: 50%; left: 0; width: 14px; height: 1px; transform: translateY(-50%); }
.footer-policies__toggle::after { top: 0; left: 50%; width: 1px; height: 14px; transform: translateX(-50%); }
.footer-policies details[open] .footer-policies__toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.footer-policies p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
  padding-bottom: var(--sp-4);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  color: var(--ink);
  padding-top: var(--sp-7);
}
.footer-brand {
  padding-bottom: var(--sp-6);
}
.footer-brand img {
  height: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-7);
  padding-bottom: var(--sp-6);
}
.footer-grid h5 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-3);
  color: var(--ink-soft);
}
.footer-grid p { font-size: 13px; line-height: 1.7; color: var(--ink-soft); max-width: 42ch; }
.footer-contact-btn { display: inline-block; margin-top: var(--sp-4); }
.footer-social { display: flex; gap: var(--sp-4); margin-top: var(--sp-4); }
.footer-social a { color: var(--ink); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  padding: var(--sp-5) 0;
  margin-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

/* ---------- Mobile nav / search / cart panels ---------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
.icon-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
body.mobile-nav-locked { overflow: hidden; }

.panel-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,12,11,0.5);
  z-index: 190;
}
.panel-backdrop.is-open { display: block; }

.mobile-nav-panel__header,
.search-panel__header,
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--sp-5);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-panel__wordmark {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.mobile-nav-panel__lang {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.mobile-nav-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--ink);
  transition: color 0.15s ease;
}
.mobile-nav-close:hover { color: var(--accent); }
.mobile-nav-close svg { width: 20px; height: 20px; display: block; }

.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  overflow-y: auto;
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.mobile-nav-panel a {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.mobile-nav-panel a:hover { color: var(--accent); }

.search-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  overflow-y: auto;
}
.search-panel.is-open { display: block; }
.search-panel__form { padding: var(--sp-5); border-bottom: 1px solid var(--border); }
.search-panel__form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 2px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
}
.search-panel__form input:focus { outline: none; border-color: var(--ink); }
.search-panel__body { padding: var(--sp-6) var(--sp-5); }
.search-panel__body h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; margin: 0 0 var(--sp-5); }
.search-panel__recs { display: flex; flex-direction: column; gap: var(--sp-6); }
.search-panel__rec { color: var(--ink); }
.search-panel__rec-name { display: block; font-family: var(--font-serif); font-size: 15px; margin-bottom: var(--sp-3); }
.search-panel__rec-name em { font-style: italic; }
.search-panel__rec-image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.search-panel__rec-image img { width: 70%; height: 70%; object-fit: contain; }

.cart-drawer {
  display: none;
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(400px, 88vw);
  background: #fff;
  z-index: 200;
  flex-direction: column;
}
.cart-drawer.is-open { display: flex; }
.cart-drawer__header h2 { font-family: var(--font-serif); font-size: 19px; font-weight: 400; margin: 0; }
.cart-drawer__shipping { padding: var(--sp-4) var(--sp-5) 0; }
.cart-drawer__shipping p { font-size: 12px; color: var(--ink-soft); margin: 0 0 8px; }
.cart-drawer__shipping-bar { height: 3px; background: var(--border); }
.cart-drawer__shipping-bar span { display: block; height: 100%; background: var(--accent); transition: width 0.3s ease; }
.cart-drawer__body { flex: 1; overflow-y: auto; background: #F7F5F1; padding: var(--sp-5); }
.cart-drawer__empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cart-drawer__empty em { font-style: italic; }
.cart-drawer__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: #fff;
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
  border: 1px solid var(--border);
}
.cart-drawer__item-image {
  width: 56px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-drawer__item-image img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-drawer__item-info { flex: 1; }
.cart-drawer__item-name { font-family: var(--font-serif); font-size: 14px; line-height: 1.4; color: var(--ink); }
.cart-drawer__item-name em { font-style: italic; }
.cart-drawer__item-size { font-size: 12px; color: var(--accent); margin-top: 4px; }
.cart-drawer__stepper {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  margin-top: var(--sp-3);
  font-size: 13px;
}
.cart-drawer__stepper a { color: var(--ink); font-weight: 700; line-height: 1; }
.cart-drawer__item-side { display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-5); }
.cart-drawer__item-remove { color: var(--ink-soft); }
.cart-drawer__item-remove svg { width: 16px; height: 16px; display: block; }
.cart-drawer__item-price { font-size: 13px; font-weight: 700; }
.cart-drawer__footer { padding: var(--sp-5); border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-drawer__delivery-note { font-size: 12px; color: var(--ink-soft); margin: 0 0 var(--sp-4); }
.cart-drawer__total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: var(--sp-4); }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-row .slider-track {
    display: flex;
    overflow-x: auto;
    cursor: grab;
    gap: var(--sp-4);
  }
  .benefits-row__item { flex: 0 0 46%; min-width: 0; text-align: center; }
  .benefits-row h4 { overflow-wrap: break-word; word-break: break-word; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-row--nav { display: none; }
  .hero-nav-row.is-transparent { display: none; }
  .hero-top-row.is-transparent { border-bottom: 1px solid rgba(255,255,255,0.28); }
  .mobile-menu-toggle { display: flex; align-items: center; }
  .mobile-menu-toggle svg { width: 22px; height: 22px; }
  .icon-btn { display: flex; align-items: center; }
  .desktop-lang-toggle { display: none; }
  .mobile-lang-toggle { display: inline-flex; }
  .hero { min-height: 88vh; }
  .header-wordmark { font-size: 19px; }
  .header-icons { gap: var(--sp-2); }
  .header-icons svg { width: 17px; height: 17px; }
  .container { padding-inline: var(--sp-4); }
  .announcement-close { inset-inline-end: var(--sp-2); }
}
