:root {
  --ink: #1d211b;
  --muted: #65685f;
  --paper: #f2eee6;
  --surface: #fbfaf6;
  --line: #d8d2c7;
  --accent: #a54825;
  --accent-dark: #7e3319;
  --olive: #66705a;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(29, 33, 27, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.edge-scrollbar { width: 18px; height: 100vh; position: fixed; top: 0; right: 0; z-index: 190; opacity: 1; touch-action: none; }
.edge-scrollbar::before { content: ""; width: 8px; position: absolute; inset: 0 2px 0 auto; background: rgba(29, 33, 27, .06); opacity: 0; transition: opacity .2s ease; }
.edge-scrollbar-thumb { width: 6px; min-height: 46px; position: absolute; top: 0; right: 3px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 8px; background: rgba(29, 33, 27, .45); box-shadow: 0 2px 10px rgba(29, 33, 27, .16); opacity: 0; transition: opacity .2s ease, width .2s ease, background .2s ease; will-change: transform; }
.edge-scrollbar:hover::before, .edge-scrollbar:hover .edge-scrollbar-thumb, .edge-scrollbar.is-dragging .edge-scrollbar-thumb { opacity: 1; }
.edge-scrollbar:hover .edge-scrollbar-thumb, .edge-scrollbar.is-dragging .edge-scrollbar-thumb { width: 8px; background: rgba(29, 33, 27, .58); }
.edge-scrollbar.is-disabled { display: none; }
@media (hover: none) { .edge-scrollbar { display: none; } }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  opacity: 1;
  visibility: visible;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .42s;
}
.site-loader.is-finished { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { display: grid; justify-items: center; }
.loader-brand > span {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #8a9184;
  border-radius: 50%;
  font: italic 31px/1 var(--serif);
  animation: loader-mark .8s cubic-bezier(.22, 1, .36, 1) both;
}
.loader-brand strong { font-size: 17px; letter-spacing: .28em; }
.loader-brand small { margin-top: 7px; color: #aeb5a9; font-size: 8px; letter-spacing: .35em; }
.loader-track { width: 180px; height: 1px; margin-top: 30px; overflow: hidden; background: #42483f; }
.loader-track i { width: 100%; height: 100%; display: block; background: #e2a07f; transform-origin: left; animation: loader-progress .9s cubic-bezier(.65, 0, .35, 1) both; }
@keyframes loader-mark { from { opacity: 0; transform: scale(.82) rotate(-8deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes loader-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.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;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  padding: 8px 5vw;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
}
.announcement-detail { color: #b9bdaf; }

.site-header {
  height: 84px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 230, .96);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font: 600 17px/1 var(--sans);
  letter-spacing: .24em;
  width: fit-content;
}
.brand small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .33em;
  color: var(--muted);
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font: italic 20px/1 var(--serif);
  letter-spacing: 0;
}
.site-header nav { display: flex; gap: 32px; }
.site-header nav a,
.text-button {
  border: 0;
  background: none;
  text-decoration: none;
  font-size: 13px;
  color: #41453d;
}
.text-button, .admin-link { min-height: 44px; display: inline-flex; align-items: center; position: relative; cursor: pointer; transition: color .22s ease, transform .22s cubic-bezier(.22, 1, .36, 1); }
.text-button::after, .admin-link::after { content: ""; height: 1px; position: absolute; left: 50%; right: 50%; bottom: 5px; background: var(--accent); transition: left .22s ease, right .22s ease; }
.text-button:hover, .admin-link:hover { color: var(--accent); transform: translateY(-2px); }
.text-button:hover::after, .admin-link:hover::after { left: 0; right: 0; }
.site-header nav a { min-height: 44px; display: inline-flex; align-items: center; position: relative; }
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ink);
  transition: right .2s ease;
}
.site-header nav a:hover::after { right: 0; }
.store-operations-banner { min-height: 44px; padding: 11px 5vw; display: flex; align-items: center; justify-content: center; color: #fffaf2; background: #8a4a2e; text-align: center; font-size: 12px; font-weight: 700; line-height: 1.45; }
.store-operations-banner.is-maintenance { background: #3f493b; }
.store-restricted button:disabled { cursor: not-allowed; opacity: .5; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.cart-button {
  min-height: 44px;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: transparent;
  cursor: pointer;
  transition: color .22s ease, transform .22s cubic-bezier(.22, 1, .36, 1);
}
.cart-button:hover { color: var(--accent); transform: translateY(-1px); }
.cart-button span { color: var(--ink); font-size: 12px; font-weight: 700; }
.cart-button b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  transition: color .22s ease, background .22s ease, transform .22s cubic-bezier(.22, 1, .36, 1);
}
.cart-button:hover b { color: var(--white); background: var(--accent); transform: rotate(3deg); }

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  min-width: 0;
  padding: 8vh 6vw 5vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font: 400 clamp(54px, 6.4vw, 100px)/.9 var(--serif);
  letter-spacing: -.055em;
}
.hero-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.primary-button { color: var(--white); background: var(--ink); }
.primary-button:hover { background: var(--accent); border-color: var(--accent); box-shadow: 0 8px 20px rgba(126, 51, 25, .16); transform: translateY(-2px); }
.primary-button:active, .secondary-button:active { transform: translateY(0); }
.primary-button:disabled, .secondary-button:disabled { cursor: not-allowed; opacity: .45; box-shadow: none; transform: none; }
.secondary-button { background: transparent; }
.secondary-button:hover { color: var(--white); background: var(--ink); }
.secondary-link { min-height: 44px; display: inline-flex; align-items: center; text-underline-offset: 6px; font-size: 14px; }
.secondary-link:hover { color: var(--accent); }
.hero-actions .primary-button::after, .contact-actions .primary-button::after { content: "↗"; margin-left: 14px; font-size: 12px; }
.secondary-link span { margin-left: 7px; color: var(--accent); }
.full { width: 100%; }
.hero-facts {
  margin: auto 0 0;
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-facts div { padding-right: 18px; }
.hero-facts dt { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.hero-facts dd { margin: 9px 0 0; font: 400 15px/1.3 var(--serif); }
.hero-visual {
  min-height: 680px;
  margin: 24px 24px 24px 0;
  position: relative;
  background: url("assets/product-1.webp") center / cover no-repeat;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  pointer-events: none;
}
.hero-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  display: flex;
  gap: 18px;
  background: var(--surface);
  font-size: 12px;
  letter-spacing: .08em;
}
.hero-label span { color: var(--accent); }

.catalog-section { padding: 110px 5vw 120px; background: var(--surface); }
.section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 40px;
}
.section-heading h2,
.process-section h2,
.contact-section h2 {
  margin: 0;
  font: 400 clamp(42px, 5vw, 72px)/.98 var(--serif);
  letter-spacing: -.04em;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.buyer-mode-bar {
  min-height: 88px;
  margin-bottom: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  background: #f4f0e8;
}
.buyer-mode-bar p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.mode-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
.mode-switch button {
  min-width: 132px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}
.mode-switch button + button { border-left: 1px solid var(--ink); }
.mode-switch button.active { color: var(--white); background: var(--ink); }
.catalog-toolbar {
  padding: 18px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.category-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.filter-button {
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}
.filter-button.active { background: var(--ink); color: var(--white); }
.search-field {
  min-width: 280px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #9a978f;
}
.search-field input {
  width: 100%;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.search-field span { font-size: 22px; color: var(--muted); }
.catalog-refinements { margin: -13px 0 29px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.catalog-refinements > span { color: var(--muted); font-size: 11px; }
.catalog-refinements > div { display: flex; align-items: center; gap: 20px; }
.stock-filter { display: flex; align-items: center; gap: 8px; color: var(--muted); cursor: pointer; font-size: 11px; }
.stock-filter input { width: 15px; height: 15px; margin: 0; accent-color: var(--ink); }
.catalog-sort { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; }
.catalog-sort select { min-height: 38px; padding: 0 30px 0 10px; border: 1px solid var(--line); color: var(--ink); background: transparent; font-size: 11px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 18px;
}
.product-card { min-width: 0; animation: product-enter .46s cubic-bezier(.22, 1, .36, 1) both; animation-delay: calc(var(--card-index, 0) * 45ms); }
@keyframes product-enter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.product-image-button {
  width: 100%;
  aspect-ratio: 2 / 2.65;
  padding: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  background: #e8e2d9;
  cursor: pointer;
}
.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s cubic-bezier(.2,.65,.2,1);
}
.product-image-button:hover .product-image { transform: scale(1.025); }
.stock-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 9px;
  background: rgba(251, 250, 246, .92);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stock-badge.out-of-stock { color: var(--white); background: rgba(29, 33, 27, .88); }
.product-card-body { padding: 15px 2px 0; }
.product-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 11px; }
.product-card h3 { margin: 8px 0 5px; font: 400 22px/1.2 var(--serif); }
.product-price-row { display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.product-price { margin: 0; font-size: 14px; }
.product-price strong { font-size: 17px; }
.quick-add {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .55);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.quick-add:hover { color: var(--white); border-color: var(--ink); background: var(--ink); transform: translateY(-1px); }
.quick-add:active { transform: translateY(0); }
.empty-state { padding: 70px 0; text-align: center; color: var(--muted); }

.process-section {
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  border-top: 1px solid var(--line);
}
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-list li {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.process-list > li > span { padding-top: 4px; color: var(--accent); font-size: 11px; }
.process-list h3 { margin-bottom: 8px; font: 400 24px/1.2 var(--serif); }
.process-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.contact-section {
  margin: 0 5vw 5vw;
  padding: 72px;
  color: var(--white);
  background: var(--olive);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: end;
}
.contact-section .eyebrow { color: #d8bd9e; }
.contact-details { justify-self: end; }
.contact-details p { margin-bottom: 28px; color: #e1e4db; line-height: 1.6; }
.primary-button.light { color: var(--ink); background: var(--white); border-color: var(--white); }

footer {
  min-height: 140px;
  padding: 45px 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
footer p { margin: 0; }
footer p:last-child { justify-self: end; }
.footer-brand { color: var(--ink); }

.modal-backdrop,
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 22, 18, .72);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease-out, visibility 0s linear .26s;
}
.modal-backdrop.is-open, .drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.modal-backdrop[hidden], .drawer-backdrop[hidden] { display: none; }
.modal-backdrop { padding: 3vh 3vw; overflow-y: auto; }
.modal-backdrop > section { opacity: 0; transform: translateY(20px) scale(.985); transition: opacity .24s ease-out, transform .34s cubic-bezier(.22, 1, .36, 1); }
.modal-backdrop.is-open > section { opacity: 1; transform: translateY(0) scale(1); }
.order-modal > div:not([hidden]), .account-modal > div:not([hidden]), .appointment-modal > div:not([hidden]) { animation: panel-enter .3s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes panel-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.product-modal {
  width: min(1040px, 100%);
  min-height: min(720px, 94vh);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.close-modal, .icon-button.close-order, .icon-button.close-appointment { position: absolute; top: 15px; right: 15px; z-index: 3; }
.modal-product-image {
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-product-content { padding: 78px 7% 44px; }
.product-code { color: var(--muted); font-size: 11px; letter-spacing: .14em; }
.modal-product-content h2,
.order-modal h2,
.appointment-modal h2 { margin-bottom: 17px; font: 400 42px/1.02 var(--serif); letter-spacing: -.035em; }
.modal-description { color: var(--muted); line-height: 1.6; }
.modal-price { margin: 28px 0 34px; font-size: 19px; font-weight: 700; }
fieldset { margin: 0 0 27px; padding: 0; border: 0; }
legend, .quantity-field { margin-bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.swatch-options, .size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.option-label { position: relative; }
.option-label input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-option, .size-option {
  min-height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
}
.swatch-dot { width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14); }
.option-label input:checked + .swatch-option,
.option-label input:checked + .size-option { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.option-label input:disabled + .swatch-option,
.option-label input:disabled + .size-option { opacity: .34; cursor: not-allowed; text-decoration: line-through; }
.quantity-field { display: flex; align-items: center; justify-content: space-between; }
.quantity-control { display: grid; grid-template-columns: 44px 55px 44px; height: 44px; border: 1px solid var(--line); }
.quantity-control button, .quantity-control input { border: 0; background: transparent; text-align: center; }
.quantity-control button { cursor: pointer; font-size: 18px; }
.quantity-control input { width: 100%; appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }
.minimum-note { margin: 18px 0; color: var(--muted); font-size: 12px; }

.drawer-backdrop { z-index: 70; }
.cart-drawer {
  width: min(480px, 100%);
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  box-shadow: var(--shadow);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 0 0 23px; font: 400 36px/1 var(--serif); }
.drawer-header .eyebrow { margin-bottom: 8px; }
.cart-lines { padding: 10px 0; overflow-y: auto; }
.cart-line { padding: 17px 0; display: grid; grid-template-columns: 66px 1fr auto; gap: 13px; border-bottom: 1px solid var(--line); }
.cart-line-image { width: 66px; height: 82px; display: block; object-fit: cover; }
.cart-line h3 { margin: 2px 0 5px; font: 400 16px/1.2 var(--serif); }
.cart-line p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.cart-line-quantity { width: fit-content; margin-top: 9px; display: flex; align-items: center; border: 1px solid var(--line); }
.cart-line-quantity button { width: 36px; height: 36px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.cart-line-quantity span { min-width: 58px; padding: 0 5px; text-align: center; font-size: 10px; }
.remove-line { align-self: start; padding: 0; border: 0; border-bottom: 1px solid var(--muted); background: transparent; cursor: pointer; color: var(--muted); font-size: 11px; }
.cart-empty { margin: auto; text-align: center; color: var(--muted); }
.cart-empty span { font: 400 26px var(--serif); color: var(--ink); }
.cart-empty p { max-width: 260px; margin: 12px auto 0; line-height: 1.5; }
.drawer-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-summary { display: flex; justify-content: space-between; }
.cart-summary strong { font: 400 22px var(--serif); }
.drawer-footer > p { margin: 9px 0 18px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.order-modal,
.appointment-modal {
  width: min(680px, 100%);
  margin: 4vh auto;
  padding: 58px;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.order-modal > div > p:not(.eyebrow),
.appointment-modal > div > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.order-modal form,
.appointment-modal form { margin-top: 28px; }
.order-modal label:not(.consent),
.appointment-modal label:not(.consent) { display: grid; gap: 8px; margin-bottom: 16px; font-size: 12px; font-weight: 650; }
.order-modal input, .order-modal textarea,
.appointment-modal input, .appointment-modal textarea, .appointment-modal select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
}
.appointment-modal select { min-height: 46px; color: var(--ink); }
.order-modal input:focus, .order-modal textarea:focus,
.appointment-modal input:focus, .appointment-modal textarea:focus, .appointment-modal select:focus { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.delivery-choice { margin: 3px 0 18px; }
.delivery-choice legend { margin-bottom: 10px; font-size: 10px; letter-spacing: .1em; }
.delivery-choice > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.order-modal .delivery-choice label {
  min-height: 48px;
  margin: 0;
  padding: 0 13px;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  font-size: 11px;
}
.order-modal .delivery-choice input { width: auto; margin: 0; padding: 0; accent-color: var(--accent); }
.order-modal .delivery-choice label:has(input:checked) { border-color: var(--ink); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.consent { margin: 18px 0; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.consent input { width: auto; margin-top: 2px; }
.order-success, .appointment-success { padding: 40px 10px 10px; text-align: center; }
.success-mark { width: 58px; height: 58px; margin: 0 auto 25px; display: grid; place-items: center; border: 1px solid var(--olive); border-radius: 50%; color: var(--olive); font-size: 26px; }
.order-success .primary-button, .appointment-success .primary-button { margin-top: 30px; }
.order-success .secondary-button, .appointment-success .secondary-button { margin-top: 10px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translate(-50%, 130px);
  opacity: 0;
  transition: .25s ease;
  font-size: 13px;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.site-notice-stack {
  width: min(520px, calc(100vw - 32px));
  position: fixed;
  top: 88px;
  left: 50%;
  z-index: 500;
  display: grid;
  gap: 9px;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-notice {
  min-height: 68px;
  padding: 13px 13px 13px 15px;
  border: 1px solid rgba(50, 52, 46, .16);
  display: grid;
  grid-template-columns: 30px 1fr 28px;
  align-items: center;
  gap: 11px;
  color: #282b26;
  background: rgba(250, 249, 245, .98);
  box-shadow: 0 18px 55px rgba(30, 31, 27, .18);
  opacity: 0;
  transform: translateY(-18px) scale(.985);
  transition: opacity .24s ease, transform .34s cubic-bezier(.2, .8, .2, 1);
  pointer-events: auto;
}

.site-notice.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.site-notice.is-leaving { opacity: 0; transform: translateY(-12px) scale(.985); }
.site-notice.error { border-color: rgba(156, 62, 43, .34); box-shadow: inset 3px 0 #9c3e2b, 0 18px 55px rgba(30, 31, 27, .18); }
.site-notice.warning { border-color: rgba(160, 107, 41, .34); box-shadow: inset 3px 0 #a06b29, 0 18px 55px rgba(30, 31, 27, .18); }
.site-notice-mark { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #30342e; font: 700 12px var(--sans); }
.site-notice.error .site-notice-mark { background: #9c3e2b; }
.site-notice.warning .site-notice-mark { background: #a06b29; }
.site-notice strong { display: block; font-size: 10px; letter-spacing: .02em; }
.site-notice p { margin: 4px 0 0; color: #62655d; font-size: 9px; line-height: 1.5; }
.site-notice-close { width: 28px; height: 28px; border: 0; color: #6f726a; background: transparent; cursor: pointer; font-size: 18px; transition: color .18s ease, transform .18s ease; }
.site-notice-close:hover { color: #20231f; transform: rotate(4deg); }

@media (max-width: 760px) {
  .site-notice-stack { top: 72px; width: calc(100vw - 24px); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 80px 7vw 50px; }
  .hero-visual { min-height: 780px; margin: 0 4vw 4vw; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-section { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-details { justify-self: start; }
}

@media (max-width: 680px) {
  .announcement { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement-detail { display: none; }
  .site-header { height: 70px; padding: 0 18px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-actions { gap: 8px; }
  .text-button { display: none; }
  .cart-button { padding: 0 11px; font-size: 11px; }
  .hero-copy { min-height: 590px; padding: 65px 22px 40px; }
  h1 { font-size: clamp(50px, 15.5vw, 70px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-facts { gap: 12px; }
  .hero-facts dd { font-size: 13px; }
  .hero-visual { min-height: 530px; margin: 0; }
  .catalog-section { padding: 80px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .process-section h2, .contact-section h2 { font-size: 45px; }
  .buyer-mode-bar { align-items: stretch; flex-direction: column; gap: 14px; }
  .mode-switch { width: 100%; }
  .mode-switch button { min-width: 0; padding: 0 10px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .catalog-refinements { margin-top: -10px; align-items: flex-start; flex-direction: column; }
  .catalog-refinements > div { width: 100%; justify-content: space-between; }
  .category-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .filter-button { white-space: nowrap; }
  .filter-button, .quick-add { min-height: 44px; }
  .search-field { min-width: 0; width: 100%; }
  .product-grid { gap: 36px 8px; }
  .product-card h3 { font-size: 17px; }
  .product-meta { display: block; }
  .product-meta span:last-child { display: none; }
  .product-price-row { display: block; }
  .quick-add { margin-top: 10px; }
  .process-section { padding: 80px 22px; }
  .contact-section { margin: 0; padding: 65px 22px; }
  footer { padding: 38px 22px; grid-template-columns: 1fr; gap: 18px; }
  footer p:last-child { justify-self: start; }
  .product-modal { grid-template-columns: 1fr; }
  .modal-product-image { min-height: 520px; }
  .modal-product-content { padding: 45px 22px 32px; }
  .modal-backdrop { padding: 0; }
  .cart-drawer { padding: 22px 18px; }
  .order-modal, .appointment-modal { min-height: 100vh; margin: 0; padding: 70px 22px 35px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .delivery-choice > div { grid-template-columns: 1fr; }
}

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

/* Expanded storefront */
.demo-announcement strong { font-weight: 750; }
.site-header { grid-template-columns: auto 1fr auto; column-gap: 34px; }
.site-header nav { justify-self: center; gap: 22px; }
.header-actions { gap: 10px; }
.language-picker select {
  min-width: 54px;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.account-button { min-height: 44px; padding: 0 8px; display: inline-flex; align-items: center; cursor: pointer; }
.cart-button b { margin-left: 0; }

.category-section { padding: 105px 5vw 80px; background: var(--paper); }
.compact-heading { margin-bottom: 32px; }
.category-showcase { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.category-card {
  min-width: 0;
  padding: 0;
  border: 0;
  position: relative;
  aspect-ratio: .78;
  overflow: hidden;
  color: var(--white);
  background: #ded7cc;
  cursor: pointer;
}
.category-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(16,18,14,.78)); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.025); }
.category-card.active { box-shadow: inset 0 0 0 3px var(--accent); }
.category-card span { position: absolute; left: 17px; right: 17px; bottom: 16px; z-index: 2; display: grid; gap: 5px; text-align: left; }
.category-card small { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #d9d9d1; }
.category-card strong { font: 400 25px/1 var(--serif); }

.active-category { display: flex; align-items: center; gap: 14px; }
.active-category .mode-label { color: var(--muted); }
.active-category strong { font: 400 19px var(--serif); }
.active-category button { min-height: 40px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 11px; }
.sale-badge { position: absolute; right: 12px; top: 12px; padding: 7px 9px; color: var(--white); background: var(--accent); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.card-color-dots { min-height: 18px; margin: 7px 0 9px; display: flex; gap: 6px; }
.card-color-dots span { width: 13px; height: 13px; border: 1px solid rgba(0,0,0,.16); border-radius: 50%; }
.product-price del, .modal-price del { display: block; margin-bottom: 3px; color: #8b887f; font-size: 11px; font-weight: 400; }
.modal-price strong { margin-right: 4px; }

.about-section {
  padding: 50px 6vw;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 7vw;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}
.about-section .eyebrow { color: #d49a7d; }
.about-section h2, .faq-block h2, .contact-card h2 { margin: 0; font: 400 clamp(42px, 5vw, 72px)/.98 var(--serif); letter-spacing: -.04em; }
.about-section h2 { max-width: 620px; font-size: clamp(34px, 3.5vw, 50px); }
.about-copy { align-self: end; }
.about-copy > p { max-width: 650px; margin: 0; color: #c9cec5; font-size: 15px; line-height: 1.6; }

.support-section { padding: 0 5vw 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; background: var(--paper); }
.faq-block { padding: 80px 5vw 70px 0; }
.faq-list { margin-top: 45px; border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 64px; padding: 19px 38px 19px 0; position: relative; display: flex; align-items: center; cursor: pointer; font: 400 18px/1.3 var(--serif); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; font: 400 24px var(--serif); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 45px 24px 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.contact-card { padding: 65px; color: var(--white); background: var(--olive); }
.contact-card .eyebrow { color: #ddc4aa; }
.map-preview { min-height: 210px; margin: 38px 0 28px; position: relative; display: grid; place-items: center; overflow: hidden; background-color: #d9d4c8; background-image: linear-gradient(32deg, transparent 46%, rgba(102,112,90,.34) 47%, rgba(102,112,90,.34) 50%, transparent 51%), linear-gradient(118deg, transparent 46%, rgba(165,72,37,.25) 47%, rgba(165,72,37,.25) 50%, transparent 51%); background-size: 110px 90px, 160px 125px; }
.map-preview span { width: 25px; height: 25px; position: relative; border: 7px solid var(--accent); border-radius: 50% 50% 50% 0; background: var(--white); transform: rotate(-45deg); }
.map-preview small { position: absolute; bottom: 15px; padding: 7px 9px; color: var(--ink); background: rgba(255,253,248,.9); font-size: 9px; letter-spacing: .12em; }
.contact-list { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-list div { min-width: 0; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.24); }
.contact-list dt { margin-bottom: 7px; color: #cbd1c6; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-list dd { margin: 0; color: var(--white); font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }
.contact-list dd a { min-height: 44px; display: inline-flex; align-items: center; }
.contact-actions { margin-top: 35px; display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.light-link { color: var(--white); }

footer { min-height: 0; padding: 55px 5vw 22px; display: block; color: var(--muted); background: #e9e3d9; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-main > div:not(.brand) { display: grid; align-content: start; gap: 10px; }
.footer-main strong { margin-bottom: 5px; color: var(--ink); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a { width: fit-content; color: var(--muted); text-underline-offset: 4px; }
.footer-main span { line-height: 1.5; }
.footer-legal { margin-top: 50px; padding-top: 18px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid #d1c9bd; font-size: 9px; line-height: 1.5; }
.footer-legal small { max-width: 72%; text-align: right; }

.account-modal {
  width: min(540px, 100%);
  margin: 9vh auto;
  padding: 62px;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.account-modal.has-dashboard { width: min(780px, 100%); padding: 48px; }
.close-account { position: absolute; top: 15px; right: 15px; }
.account-modal h2 { margin-bottom: 16px; font: 400 46px/1 var(--serif); letter-spacing: -.035em; }
.account-modal > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.account-auth-tabs { margin: -18px 0 40px; padding: 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border: 1px solid var(--line); background: #ece7de; }
.account-auth-tabs button { min-height: 44px; padding: 0 12px; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 750; letter-spacing: .04em; transition: color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.account-auth-tabs button:hover { color: var(--ink); background: rgba(255, 255, 255, .48); }
.account-auth-tabs button.is-active { color: var(--white); background: var(--ink); box-shadow: 0 4px 12px rgba(29, 32, 26, .14); }
.account-modal form { margin-top: 30px; }
.account-modal label { margin-top: 14px; display: grid; gap: 8px; font-size: 12px; font-weight: 650; }
.account-modal input { width: 100%; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.form-warning { margin: 12px 0 20px; color: var(--accent-dark); font-size: 11px; line-height: 1.5; }
.form-warning.is-error { color: #9c3e2b; }
.account-auth-submit { width: 100%; min-height: 50px; }
.cart-label-mobile { display: none; }
.account-profile { padding-right: 48px; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.account-profile h2 { margin-bottom: 10px; }
.account-profile #account-email { margin: 0; color: var(--muted); font-size: 13px; }
.account-logout { min-height: 44px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; white-space: nowrap; font-size: 11px; }
.account-orders-heading { margin-top: 35px; padding: 18px 0 13px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.account-orders-heading h3 { margin: 0; font: 400 23px/1 var(--serif); }
.account-orders-heading span { color: var(--muted); font-size: 11px; }
.account-orders { max-height: min(480px, 55vh); overflow-y: auto; scrollbar-width: thin; }
.account-order { padding: 20px 0 22px; border-bottom: 1px solid var(--line); }
.account-order.is-cancelled { opacity: .62; }
.account-order-top, .account-order-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.account-order-top > div strong, .account-order-top > div small { display: block; }
.account-order-top > div strong { font-size: 12px; letter-spacing: .05em; }
.account-order-top > div small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.order-status { padding: 7px 9px; color: #52624c; background: #e8eee4; font-size: 9px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.order-status.status-payment { color: #7d492f; background: #f3e5dc; }
.order-status.status-complete { color: #42543b; background: #dfe9da; }
.order-status.status-cancelled { color: #6c625c; background: #e8e3df; }
.account-order-summary { margin: 17px 0 20px; justify-content: flex-start; }
.account-order-summary img { width: 54px; height: 68px; object-fit: cover; background: #e8e2d9; }
.account-order-summary > div { min-width: 0; flex: 1; }
.account-order-summary > div strong, .account-order-summary > div small { display: block; }
.account-order-summary > div strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 400 16px/1.2 var(--serif); }
.account-order-summary > div small { margin-top: 6px; color: var(--muted); font-size: 10px; }
.account-order-summary > b { font: 400 17px/1 var(--serif); white-space: nowrap; }
.order-progress { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; list-style: none; }
.order-progress li { min-width: 0; color: #8b8e86; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.order-progress i { height: 3px; margin-bottom: 7px; display: block; background: #dedbd3; }
.order-progress li.is-done { color: var(--ink); }
.order-progress li.is-done i { background: var(--olive); }
.order-progress li.is-current i { background: var(--accent); }
.account-orders-empty { padding: 58px 20px 20px; text-align: center; }
.account-orders-empty strong { font: 400 26px/1.1 var(--serif); }
.account-orders-empty p { max-width: 430px; margin: 13px auto 24px; color: var(--muted); line-height: 1.55; }
.account-empty-action { width: fit-content; margin: 0 auto; }

.reveal-section { opacity: 0; transform: translateY(24px); transition: opacity .7s ease-out, transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

.payment-warning { padding: 12px 0; color: var(--muted) !important; background: transparent; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 600; }
.payment-total { margin: 24px 0; padding: 17px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.payment-total strong { font: 400 25px var(--serif); }
.payment-tabs { margin-bottom: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.payment-tabs button { min-height: 48px; padding: 8px; border: 0; border-right: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 11px; }
.payment-tabs button:last-child { border-right: 0; }
.payment-tabs button.active { color: var(--white); background: var(--ink); }
.payment-panel h3 { margin: 0 0 8px; font: 400 25px var(--serif); }
.payment-panel > p { color: var(--muted); line-height: 1.55; }
.iban-box { margin: 20px 0; padding: 18px; display: grid; gap: 8px; border: 1px dashed var(--accent); background: #f5eee7; }
.iban-box span { font-size: 10px; letter-spacing: .1em; }
.iban-box strong { overflow-wrap: anywhere; font-size: 17px; }
.iban-box button { width: fit-content; min-height: 40px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; }
.demo-card { aspect-ratio: 1.75; max-width: 360px; margin: 22px auto; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; color: #f3efe7; background: #242821; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.demo-card span, .demo-card small { font-size: 9px; letter-spacing: .16em; }
.demo-card strong { font: 400 27px var(--serif); letter-spacing: .09em; }
#back-to-order { margin-top: 11px; }

[dir="rtl"] .category-card span { text-align: right; }
[dir="rtl"] .sale-badge { right: auto; left: 12px; }
[dir="rtl"] .stock-badge { left: auto; right: 12px; }
[dir="rtl"] .close-modal, [dir="rtl"] .icon-button.close-order, [dir="rtl"] .close-account, [dir="rtl"] .icon-button.close-appointment { right: auto; left: 15px; }
[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-105%); }
[dir="rtl"] .cart-drawer.open { transform: translateX(0); }
[dir="rtl"] .faq-list summary { padding-right: 0; padding-left: 38px; }
[dir="rtl"] .faq-list summary::after { right: auto; left: 5px; }
[dir="rtl"] .faq-list p { padding-right: 0; padding-left: 45px; }
[dir="rtl"] .footer-legal small { text-align: left; }

@media (max-width: 1120px) {
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 11px; }
  .admin-link { display: none; }
  .category-showcase { grid-template-columns: repeat(3, 1fr); }
  .category-card:nth-child(n+4) { aspect-ratio: 1.05; }
  .support-section { grid-template-columns: 1fr; }
  .faq-block { padding-right: 0; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: auto 1fr; gap: 10px; }
  .site-header nav { display: none; }
  .header-actions { justify-self: end; }
  .account-button { max-width: 64px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
  .language-picker select { min-width: 46px; padding: 0 4px; }
  .cart-button { max-width: 100px; }
  .cart-label-full { display: none; }
  .cart-label-mobile { display: inline; }
  .account-auth-tabs { margin-top: -35px; margin-bottom: 34px; }
  .category-section { padding: 75px 18px 55px; overflow: hidden; }
  .category-showcase { margin-right: -18px; padding-right: 18px; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 66vw; overflow-x: auto; scroll-snap-type: x mandatory; }
  .category-card, .category-card:nth-child(n+4) { aspect-ratio: .84; scroll-snap-align: start; }
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .active-category { justify-content: space-between; }
  .product-card h3 { min-height: 40px; }
  .product-price { min-height: 54px; }
  .about-section { padding: 48px 22px; grid-template-columns: 1fr; gap: 22px; }
  .about-section h2, .faq-block h2, .contact-card h2 { font-size: 42px; }
  .support-section { padding: 0; gap: 0; }
  .faq-block { padding: 75px 22px; }
  .contact-card { padding: 65px 22px; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  footer { padding: 45px 22px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; }
  .footer-legal small { max-width: none; text-align: left; }
  .account-modal, .account-modal.has-dashboard { min-height: 100vh; margin: 0; padding: 85px 22px 35px; }
  .account-profile { padding-right: 36px; }
  .account-profile h2 { font-size: 38px; }
  .account-orders { max-height: none; }
  .account-order-summary { gap: 11px; }
  .account-order-summary > b { font-size: 14px; }
  .order-progress span { font-size: 7px; }
  .payment-tabs { display: flex; overflow-x: auto; }
  .payment-tabs button { min-width: 125px; }
  [dir="rtl"] .footer-legal small { text-align: right; }
}
