:root {
  --ink: #17120f;
  --muted: #695d55;
  --paper: #faf7f4;
  --surface: #fffdf9;
  --surface-soft: #f6eee8;
  --line: #e7d9d1;
  --gold: var(--brand-accent, #c9934b);
  --rose: #9d174d;
  --plum: #261018;
  --deep: #0d0908;
  --shadow: 0 22px 64px rgba(36, 18, 22, 0.13);
  --shadow-soft: 0 12px 32px rgba(36, 18, 22, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --arabic: "Noto Sans Arabic", "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 44%, #f1e7e2 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a, input, textarea { transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease; }
button, a { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(201, 147, 75, 0.35);
  outline-offset: 3px;
}
::selection {
  background: rgba(201, 147, 75, 0.26);
  color: var(--ink);
}

html[dir="rtl"] body {
  font-family: var(--arabic);
  text-align: right;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .featured-band h2,
html[dir="rtl"] .category-tile span,
html[dir="rtl"] .mini-product span,
html[dir="rtl"] .product-info h3,
html[dir="rtl"] .detail-panel h1,
html[dir="rtl"] .cart-head h2 {
  font-family: var(--arabic);
  line-height: 1.15;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 8, 9, 0.92);
  backdrop-filter: blur(18px);
  color: #f7efe4;
  border-bottom: 1px solid rgba(201, 147, 75, 0.22);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: #d9cab4;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1500px;
  margin: 0 auto;
}

.announcement a { color: var(--gold); font-weight: 700; }

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.locale-switcher a {
  color: #d9cab4;
  font-size: 12px;
}
.locale-switcher a.active {
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  padding: 2px 8px;
}
.locale-switcher a:hover {
  color: #fff;
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 12px 34px;
  max-width: 1500px;
  margin: 0 auto;
}

.brand img {
  width: 124px;
  aspect-ratio: 54 / 33;
  object-fit: contain;
  object-position: left center;
}
html[dir="rtl"] .brand img { object-position: right center; }

.nav-shell nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-shell nav a:hover { color: var(--gold); }
.nav-shell nav a {
  position: relative;
  padding-bottom: 6px;
}
.nav-shell nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav-shell nav a:hover::after { transform: scaleX(1); }

.cart-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.cart-button:hover {
  border-color: rgba(201, 147, 75, 0.58);
  background: rgba(201, 147, 75, 0.14);
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 800;
}
html[dir="rtl"] .cart-button span {
  margin-left: 0;
  margin-right: 8px;
}

.hero {
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(10, 8, 7, 0.99), rgba(38, 16, 24, 0.9) 56%, rgba(86, 50, 28, 0.74)),
    var(--deep);
}

.hero-copy { padding: 64px 0 76px clamp(28px, 4vw, 64px); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.7vw, 100px);
  font-weight: 600;
  line-height: 0.94;
}
.hero p {
  max-width: 500px;
  margin: 24px 0 34px;
  color: #d4c7b6;
  font-size: 18px;
}

.hero-image {
  padding: 44px clamp(28px, 4vw, 58px) 44px 0;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: min(520px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}
html[dir="rtl"] .hero {
  background:
    linear-gradient(240deg, rgba(8, 8, 8, 0.98), rgba(42, 16, 27, 0.88) 56%, rgba(90, 36, 28, 0.72)),
    #111;
}
html[dir="rtl"] .hero-copy { padding: 64px clamp(28px, 4vw, 64px) 76px 0; }
html[dir="rtl"] .hero-image { padding: 44px 0 44px clamp(28px, 4vw, 58px); }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  padding: 0 24px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
}
.button.primary, .button.dark {
  background: linear-gradient(135deg, var(--ink), var(--plum));
  border-color: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.button.primary:hover, .button.dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.button:disabled,
.button.disabled,
.button[aria-disabled="true"] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button:disabled:hover,
.button.disabled:hover,
.button[aria-disabled="true"]:hover {
  background: linear-gradient(135deg, var(--ink), var(--plum));
  border-color: var(--ink);
  color: #fff;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
}
.service-row article {
  padding: 24px clamp(20px, 2.5vw, 34px);
  border-right: 1px solid var(--line);
}
.service-row article:last-child { border-right: 0; }
.service-row strong {
  display: block;
  color: var(--ink);
}
.service-row span { color: var(--muted); font-size: 13px; }
html[dir="rtl"] .service-row article {
  border-right: 0;
  border-left: 1px solid var(--line);
}
html[dir="rtl"] .service-row article:last-child { border-left: 0; }

.section-block {
  padding: clamp(48px, 6vw, 78px) clamp(22px, 4vw, 48px);
  max-width: 1500px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.section-head h2, .featured-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 600;
}
.section-head p, .featured-band p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}
.section-head a { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.category-tile {
  position: relative;
  isolation: isolate;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 22px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.78)),
    linear-gradient(135deg, #5a3823, #12100e);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.category-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  z-index: -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}
.category-tile:nth-child(2) { background: linear-gradient(135deg, #744d4d, #171110); }
.category-tile:nth-child(3) { background: linear-gradient(135deg, #a56d2e, #1b1009); }
.category-tile:nth-child(4) { background: linear-gradient(135deg, #9a843d, #1e2112); }
.category-tile:nth-child(5) { background: linear-gradient(135deg, #5f4c3e, #0d0b09); }
.category-tile span {
  font-family: var(--serif);
  font-size: 32px;
  text-transform: uppercase;
}
.category-tile small { color: #eadbc5; }
.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(42, 16, 27, 0.18);
}

.featured-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(157, 23, 77, 0.075), transparent 42%),
    #f0e5df;
  max-width: none;
}
.featured-band > * {
  max-width: 1500px;
}
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mini-product {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}
.mini-product:hover {
  border-color: rgba(201, 147, 75, 0.58);
  transform: translateY(-2px);
}
.mini-product img { aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.mini-product span { font-family: var(--serif); font-size: 22px; line-height: 1; }
.mini-product strong { color: var(--gold); }

.products-block {
  max-width: none;
  background: rgba(255, 253, 249, 0.96);
  border-block: 1px solid var(--line);
}
.products-block > .section-head,
.products-block > .product-grid {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.store-filters {
  display: flex;
  gap: 10px;
}
.store-filters input {
  width: min(280px, 52vw);
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  outline: none;
  color: var(--ink);
}
.store-filters button {
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  font-weight: 800;
}
.store-filters input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 147, 75, 0.14);
}
.store-filters button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.96);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 147, 75, 0.46);
}
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  background: #f0e7dc;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #111;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
}
html[dir="rtl"] .product-media span {
  left: auto;
  right: 12px;
}
.product-info { padding: 16px; }
.product-info p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-info h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}
.product-info h3 a:hover { color: var(--rose); }
.product-info span {
  display: -webkit-box;
  min-height: 42px;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0;
}
.price-line strong { font-size: 18px; }
.price-line del { color: var(--muted); }

.product-detail-page {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 0.9fr);
  gap: 42px;
  padding: clamp(42px, 6vw, 72px) clamp(22px, 4vw, 48px);
  background: #fffdf9;
}
.detail-media {
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.detail-media img { width: 100%; min-height: 520px; object-fit: cover; }
.detail-panel {
  align-self: center;
}
.detail-panel > p:first-of-type {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.detail-panel h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.9;
}
.price-line.large strong { font-size: 28px; }
.detail-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}
.detail-panel dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}
.detail-panel dt { color: var(--muted); font-size: 12px; }
.detail-panel dd { margin: 4px 0 0; font-weight: 800; }
.back-link { color: var(--gold); font-weight: 800; font-size: 13px; }

.store-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 48px 42px;
  background: #070707;
  color: #f5ecdd;
}
.store-footer img {
  width: 150px;
  aspect-ratio: 54 / 33;
  object-fit: contain;
  object-position: left center;
}
html[dir="rtl"] .store-footer img { object-position: right center; }
.store-footer p, .store-footer a {
  display: block;
  margin: 8px 0;
  color: #b8aa95;
}
.store-footer a:hover { color: var(--gold); }
.store-footer h2 {
  margin: 0 0 12px;
  font-size: 15px;
}
.store-footer .footer-scene {
  width: min(320px, 100%);
  margin-top: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  background: var(--surface);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 160ms ease;
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.22);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
html[dir="rtl"] .cart-panel {
  inset: 0 auto 0 0;
  transform: translateX(-100%);
}
html[dir="rtl"] .cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.cart-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}
.cart-head button {
  border: 0;
  background: none;
  font-weight: 800;
}
.cart-lines {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.cart-line img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface-soft);
}
.cart-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
}
.cart-line button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
}
.cart-line button:hover {
  border-color: var(--gold);
  color: var(--rose);
}
.cart-total {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
}
.cart-checkout {
  width: 100%;
  margin-top: 18px;
}

.checkout-page {
  padding: clamp(42px, 6vw, 70px) clamp(22px, 4vw, 48px);
  background: var(--paper);
}
.checkout-hero {
  max-width: 760px;
  margin-bottom: 28px;
}
.checkout-hero h1 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.92;
  font-weight: 600;
}
.checkout-hero p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 22px;
  align-items: start;
}
.checkout-form,
.checkout-summary,
.checkout-success,
.checkout-errors {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: var(--shadow-soft);
}
.checkout-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}
.checkout-form h2,
.checkout-summary h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(23, 18, 15, 0.02);
}
.checkout-form textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 147, 75, 0.14);
}
.checkout-summary {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 16px;
  padding: 22px;
}
.checkout-items {
  display: grid;
  gap: 12px;
}
.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.checkout-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0e7dc;
}
.checkout-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.checkout-item span,
.checkout-empty {
  color: var(--muted);
  font-size: 14px;
}
.checkout-item button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--rose);
  font-weight: 800;
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.checkout-success,
.checkout-errors {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 16px 18px;
}
.checkout-success {
  border-color: rgba(47, 111, 78, 0.28);
  color: #245a40;
}
.checkout-errors {
  border-color: rgba(180, 35, 24, 0.28);
  color: #9b1c14;
}
.checkout-errors ul {
  margin: 0;
  padding-left: 20px;
}
html[dir="rtl"] .checkout-errors ul {
  padding-left: 0;
  padding-right: 20px;
}
html[dir="rtl"] .checkout-hero h1,
html[dir="rtl"] .checkout-form h2,
html[dir="rtl"] .checkout-summary h2,
html[dir="rtl"] .checkout-item h3 {
  font-family: var(--arabic);
  line-height: 1.15;
}

@media (max-width: 980px) {
  .hero, .featured-band, .product-detail-page, .checkout-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 60px 28px 20px; }
  .hero-image { padding: 0 28px 48px; }
  html[dir="rtl"] .hero-copy { padding: 60px 28px 20px; }
  html[dir="rtl"] .hero-image { padding: 0 28px 48px; }
  .service-row, .category-grid, .product-grid, .featured-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checkout-summary { position: static; }
}

@media (max-width: 680px) {
  .announcement, .nav-shell, .section-block, .product-detail-page, .store-footer, .checkout-page { padding-left: 20px; padding-right: 20px; }
  .announcement { align-items: flex-start; flex-direction: column; gap: 8px; padding-top: 8px; padding-bottom: 8px; }
  .nav-shell { grid-template-columns: 1fr; justify-items: start; gap: 14px; }
  .nav-shell nav { flex-wrap: wrap; justify-content: start; gap: 14px; }
  .hero h1 { font-size: 52px; }
  .hero p, .checkout-hero p { font-size: 16px; }
  .service-row, .category-grid, .product-grid, .featured-strip, .store-footer { grid-template-columns: 1fr; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .section-head { display: grid; align-items: start; }
  .store-filters { width: 100%; }
  .store-filters input { flex: 1; width: auto; }
}

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

/* Concept fidelity pass */
body {
  background: #f5f3ef;
}

.store-header {
  background: #080808;
  border-bottom: 1px solid rgba(201, 147, 75, 0.16);
  box-shadow: none;
}

.announcement {
  max-width: none;
  min-height: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 30px;
  color: #d8c69d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement > span {
  justify-self: center;
  font-size: 11px;
}

.top-left,
.top-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.top-left a,
.top-links a {
  color: #d8c69d;
}

.top-left a.active {
  color: #fff;
}

.top-links {
  justify-self: end;
}

.nav-shell {
  min-height: 110px;
  max-width: none;
  grid-template-columns: 320px 1fr 320px;
  grid-template-areas:
    "left brand actions"
    "left brand nav";
  gap: 8px 26px;
  padding: 18px 30px 14px;
}

.nav-left {
  grid-area: left;
  display: grid;
  gap: 17px;
  align-self: center;
}

.social-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-row a {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #e6dcc9;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-row svg {
  width: 12px;
  height: 12px;
}

.social-row svg rect,
.social-row svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.social-row svg path {
  fill: currentColor;
}

.header-search {
  width: 260px;
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.02);
}

.header-search input {
  min-height: 0;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
}

.header-search input::placeholder {
  color: #b8b0a6;
}

.header-search button,
.newsletter-form button {
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
}

.header-search svg,
.nav-actions svg,
.service-row svg,
.newsletter-form svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand {
  grid-area: brand;
  align-self: center;
  justify-self: center;
}

.brand img {
  width: 150px;
  height: auto;
  object-position: center;
}

.main-nav {
  grid-area: nav;
  justify-self: end;
  display: flex;
  gap: 42px;
  align-self: end;
  padding-bottom: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  color: #fff;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a::after {
  display: none;
}

.nav-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #f4ead8;
}

.nav-actions a,
.cart-button {
  width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.cart-button {
  position: relative;
}

.cart-button:hover {
  background: transparent;
  color: var(--gold);
}

.cart-button span {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 18px;
  height: 18px;
  margin: 0;
  background: var(--gold);
  color: #111;
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: 298px;
  display: block;
  background: #090909;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.86) 36%, rgba(5, 5, 5, 0.2) 67%, rgba(5, 5, 5, 0.08) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 660px);
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 52vw);
  padding: 54px 0 48px 44px;
}

.hero h1 {
  max-width: 450px;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 320px;
  margin: 17px 0 27px;
  color: #cfc5b8;
  font-size: 14px;
}

.button {
  min-height: 34px;
  border-radius: 0;
  padding: 0 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.button.primary,
.button.dark {
  background: #070707;
  border-color: rgba(201, 147, 75, 0.72);
  color: #f7e6c3;
  box-shadow: none;
}

.button.primary:hover,
.button.dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #070707;
  transform: none;
}

.service-row {
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf8;
  border-bottom: 1px solid #ddd7d1;
}

.service-row article {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 54px;
  border-color: #ddd7d1;
}

.service-row svg {
  width: 32px;
  height: 32px;
  color: #7b6240;
  flex: 0 0 auto;
}

.service-row article > span {
  display: grid;
  gap: 2px;
}

.service-row strong {
  color: #111;
  font-size: 13px;
}

.service-row small {
  color: #6c655d;
  font-size: 12px;
}

.concept-showcase,
.collection-section,
.products-block {
  padding: 24px 39px 31px;
  background: #f8f7f5;
  border-bottom: 1px solid #ded8d2;
}

.concept-showcase {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

.concept-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.concept-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.concept-heading a {
  color: #6c655d;
  font-size: 11px;
  font-style: italic;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-card {
  min-height: 230px;
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 24px 14px 16px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.55)),
    var(--offer-image) center / cover no-repeat,
    #111;
}

.offer-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card strong {
  max-width: 120px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

.offer-card em {
  max-width: 128px;
  color: #f1e4cf;
  font-size: 13px;
  font-style: normal;
}

.offer-card span {
  position: absolute;
  left: 14px;
  bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card > * {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.seller-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: start;
  background: #f2f0ed;
  color: #17120f;
}

.seller-card::after {
  content: "♡";
  position: absolute;
  top: 12px;
  right: 14px;
  color: #777;
  font-size: 20px;
  line-height: 1;
}

.seller-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #ede9e4;
}

.seller-card .rating {
  margin: 9px 10px 1px;
  color: #d49b3a;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.seller-card .rating small {
  color: #68615a;
}

.seller-card strong,
.seller-card > small,
.seller-card em {
  margin-inline: 10px;
}

.seller-card strong {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.seller-card > small {
  color: #68615a;
  font-size: 11px;
}

.seller-card em {
  margin-top: 9px;
  font-size: 13px;
  color: #17120f;
  font-style: normal;
}

.collection-section {
  max-width: none;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.category-grid .category-tile {
  min-height: 128px;
  padding: 0 16px 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68)),
    var(--collection-image) center / cover no-repeat,
    #111;
  box-shadow: none;
}

.category-tile span {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.category-tile small {
  color: #fff;
  font-size: 13px;
}

.category-tile span,
.category-tile small {
  opacity: 0;
}

.category-tile::after {
  display: none;
}

.products-block {
  max-width: none;
}

.products-block > .section-head,
.products-block > .product-grid {
  max-width: none;
}

.section-head h2,
.featured-band h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  box-shadow: none;
  background: #fbfaf8;
}

.product-card:hover,
.mini-product:hover,
.category-tile:hover {
  transform: none;
}

.product-media {
  aspect-ratio: 1.2;
}

.product-info p {
  color: #c28a35;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  gap: 42px;
  align-items: center;
  padding: 30px 40px;
  background: #f8f7f5;
  border-bottom: 16px solid #d8d5d1;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-panel p {
  max-width: 260px;
  color: #6b625b;
  font-size: 13px;
}

.contact-panel ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #2f2925;
  font-size: 13px;
}

.contact-panel img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.store-footer {
  grid-template-columns: 1.1fr 0.65fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 34px 42px 28px;
  background: #070707;
}

.store-footer img {
  width: 130px;
}

.footer-social {
  margin-top: 16px;
}

.store-footer h2 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-footer p,
.store-footer a {
  color: #b9ad9a;
  font-size: 12px;
}

.newsletter-form {
  height: 36px;
  display: grid;
  grid-template-columns: 1fr 38px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.newsletter-form input {
  min-height: 0;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
}

.newsletter-form input::placeholder {
  color: #8d8375;
}

.cart-panel {
  background: #fbfaf8;
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav"
      "left left";
  }

  .brand {
    justify-self: start;
  }

  .main-nav,
  .nav-actions {
    justify-self: end;
  }

  .nav-left {
    grid-template-columns: auto minmax(180px, 280px);
    align-items: center;
  }

  .concept-showcase {
    grid-template-columns: 1fr;
  }

  .service-row article {
    padding: 18px 26px;
  }
}

@media (max-width: 760px) {
  .announcement {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 6px;
    padding: 8px 16px;
  }

  .announcement > span,
  .top-links {
    justify-self: start;
  }

  .nav-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav"
      "left";
    padding: 18px 20px;
  }

  .brand,
  .nav-actions,
  .main-nav {
    justify-self: start;
  }

  .brand img {
    width: 120px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .nav-left {
    grid-template-columns: 1fr;
  }

  .header-search {
    width: 100%;
  }

  .hero {
    min-height: 410px;
  }

  .hero-bg {
    inset: auto 0 0;
    width: 100%;
    height: 54%;
    opacity: 0.78;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 52%, rgba(5, 5, 5, 0.38) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 36px 20px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-row,
  .offer-grid,
  .best-seller-grid,
  .category-grid,
  .product-grid,
  .contact-panel,
  .store-footer {
    grid-template-columns: 1fr;
  }

  .concept-showcase,
  .collection-section,
  .products-block,
  .contact-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-row article {
    min-height: 68px;
  }

  .seller-card {
    grid-template-columns: 92px 1fr;
    min-height: auto;
    padding: 10px;
  }

  .seller-card img {
    grid-row: span 5;
    aspect-ratio: 1;
  }

  .seller-card .rating,
  .seller-card strong,
  .seller-card > small,
  .seller-card em {
    margin-inline: 0;
  }
}

.concept-product-detail {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(380px, 0.75fr);
  gap: 34px;
  max-width: 940px;
  margin: 22px auto 0;
  padding: 22px 32px 26px;
  background: #f8f7f5;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
}

.thumb-rail {
  display: grid;
  align-content: start;
  gap: 12px;
}

.thumb-rail img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #ddd7d1;
  background: #fff;
}

.concept-product-detail .detail-media {
  min-height: 330px;
  aspect-ratio: 0.9;
  background: #ebe5dd;
  border-radius: 3px;
  overflow: hidden;
}

.concept-product-detail .detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-product-detail .detail-panel {
  align-self: start;
  padding-top: 12px;
}

.concept-product-detail .back-link {
  color: #7a736b;
  font-weight: 500;
}

.concept-product-detail .detail-panel > p:first-of-type {
  margin: 2px 0 6px;
  color: #6b625b;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.concept-product-detail .detail-panel h1 {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  font-weight: 500;
}

.rating-line {
  margin: 10px 0;
  color: #d49b3a;
  font-size: 13px;
}

.rating-line span {
  color: #6b625b;
  margin-inline-start: 6px;
}

.concept-product-detail .price-line {
  margin: 12px 0;
}

.concept-product-detail .price-line.large strong {
  font-size: 21px;
}

.concept-product-detail .detail-panel > p:not(:first-of-type) {
  max-width: 390px;
  color: #544b44;
  font-size: 13px;
}

.size-row {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  color: #544b44;
  font-size: 12px;
}

.size-row > div {
  display: flex;
  gap: 10px;
}

.size-row button,
.qty-stepper button {
  min-height: 32px;
  border: 1px solid #ddd7d1;
  background: #fff;
  color: #17120f;
  padding: 0 18px;
  font-size: 12px;
}

.size-row button.active {
  border-color: #17120f;
}

.purchase-row {
  display: grid;
  grid-template-columns: 104px minmax(180px, 1fr);
  gap: 14px;
  max-width: 390px;
  margin: 14px 0 18px;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  border: 1px solid #ddd7d1;
  background: #fff;
}

.qty-stepper button {
  border: 0;
  padding: 0;
}

.qty-stepper span {
  display: grid;
  place-items: center;
  font-size: 12px;
}

.purchase-row .button {
  width: 100%;
  min-height: 34px;
  background: #070707;
  color: #fff;
  border-color: #070707;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #6b625b;
  font-size: 12px;
}

.detail-benefits {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
  .concept-product-detail {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .thumb-rail {
    grid-template-columns: repeat(3, 52px);
  }

  .purchase-row,
  .detail-benefits {
    grid-template-columns: 1fr;
  }
}
