@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&display=swap");

:root {
  color-scheme: dark;
  --font-serif: "Fraunces", "Bodoni 72", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", Jost, "Segoe UI", Arial, sans-serif;
  --bg: #0c0a0b;
  --panel: rgba(23, 19, 22, 0.78);
  --panel-strong: rgba(28, 23, 27, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --text: #f1ece4;
  --muted: #b4aa9e;
  --line: rgba(214, 179, 106, 0.16);
  --hot: #c88a5a;
  --lava: #9e5568;
  --violet: #6f5a83;
  --cyan: #d6b36a;
  --lime: #d6b36a;
  --gold: #d6b36a;
  --gold-strong: #eccf8f;
  --accent-soft: rgba(214, 179, 106, 0.11);
  --accent-strong: #eccf8f;
  --ink: #17120f;
  --surface-light: rgba(255, 252, 244, 0.9);
  --shadow: 0 22px 68px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.26);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(214, 179, 106, 0.13), transparent 0 24%, transparent 46%),
    radial-gradient(circle at 84% 12%, rgba(158, 63, 85, 0.18), transparent 0 24%, transparent 48%),
    linear-gradient(150deg, #161113 0%, #080607 46%, #110b13 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(214, 179, 106, 0.12), transparent 44%);
  background-size: 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 74%, transparent);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(240, 215, 154, 0.82);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(145%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(14px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(20, 15, 18, 0.92), rgba(8, 6, 7, 0.74));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  width: max-content;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(214, 179, 106, 0.22);
}

.nav {
  justify-content: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.nav a:hover {
  background: rgba(214, 179, 106, 0.12);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(214, 179, 106, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.mobile-menu-toggle span + span {
  display: none;
}

.mobile-menu {
  grid-column: 1 / -1;
  gap: 8px;
  padding-top: 10px;
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button,
.cart-button,
.text-button,
.filter-chip,
.mini-button {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.icon-button:hover,
.cart-button:hover,
.text-button:hover,
.filter-chip:hover,
.mini-button:hover {
  border-color: rgba(214, 179, 106, 0.46);
  background: rgba(214, 179, 106, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.close-glyph {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.close-glyph::before,
.close-glyph::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 1px;
  width: 2px;
  height: 16px;
  border-radius: 4px;
  background: currentColor;
}

.close-glyph::before {
  transform: rotate(45deg);
}

.close-glyph::after {
  transform: rotate(-45deg);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  font-weight: 950;
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hot), var(--lava));
  color: #fff;
  font-size: 0.78rem;
}

.hero {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 56px) clamp(14px, 4vw, 56px) 38px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  min-height: 560px;
  padding: clamp(22px, 5vw, 58px);
  background:
    radial-gradient(circle at 15% 14%, rgba(214, 179, 106, 0.16), transparent 0 26%, transparent 58%),
    linear-gradient(135deg, rgba(158, 63, 85, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
    var(--panel);
  overflow: hidden;
  animation: panelIn 560ms var(--ease) both;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  font-weight: 500;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
}

p,
li,
input,
select,
textarea,
dd {
  font-family: var(--font-sans);
}

.hero-copy p:not(.eyebrow),
.showcase-copy p,
.story-section p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.hero-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 18px;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 16px rgba(214, 179, 106, 0.56);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(214, 179, 106, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-strong), #c69f57);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(198, 159, 87, 0.16);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
}

.product-stage {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 28%, rgba(214, 179, 106, 0.18), transparent 0 22%, transparent 54%),
    linear-gradient(135deg, rgba(111, 90, 131, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.neon-ring {
  display: none;
}

.pack {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  text-transform: uppercase;
  animation: floatItem 5s ease-in-out infinite;
}

.pack span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
}

.pack strong {
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  line-height: 0.95;
}

.pack em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.pack-main {
  z-index: 3;
  left: 18%;
  top: 14%;
  width: 54%;
  height: 68%;
  background:
    linear-gradient(160deg, rgba(214, 179, 106, 0.24), transparent 42%),
    linear-gradient(145deg, #2a2020, #100c0e 62%, #4a2733);
}

.pack-left {
  z-index: 2;
  left: 2%;
  bottom: 12%;
  width: 36%;
  transform: rotate(-8deg);
  animation-delay: 600ms;
}

.pack-right {
  z-index: 2;
  right: 4%;
  top: 10%;
  width: 34%;
  transform: rotate(8deg);
  animation-delay: 1200ms;
}

.floating-card {
  position: absolute;
  width: min(230px, 46vw);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 12, 20, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.card-one {
  left: 0;
  top: 44px;
}

.card-two {
  right: 0;
  bottom: 44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 114px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.stat-card span {
  color: var(--accent-strong);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  line-height: 1;
}

.section,
.showcase-section,
.story-section {
  margin: 0 clamp(14px, 4vw, 56px);
}

.section {
  padding: clamp(44px, 7vw, 96px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 24px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(190px, 260px);
  gap: 14px;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
}

.search-box,
.select-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 25%);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 179, 106, 0.58);
  box-shadow: 0 0 0 4px rgba(214, 179, 106, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip,
.text-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.filter-chip.active {
  border-color: rgba(214, 179, 106, 0.5);
  background: rgba(214, 179, 106, 0.12);
  color: var(--accent-strong);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
}

.catalog-meta p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
}

.product-card {
  position: relative;
  min-height: 520px;
  height: 100%;
  display: grid;
  grid-template-rows: 240px auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 106, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(21, 17, 20, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(130%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.product-card:focus-visible {
  outline: 2px solid rgba(240, 215, 154, 0.82);
  outline-offset: 3px;
}

.product-image {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 260px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.98), transparent 0 28%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 228, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
  transition: transform 180ms ease, filter 180ms ease;
}

.product-image:hover .product-photo {
  transform: scale(1.035);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
}

.image-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.42), transparent 0 30%, transparent 60%),
    linear-gradient(145deg, rgba(214, 179, 106, 0.2), rgba(158, 63, 85, 0.12)),
    rgba(255, 255, 255, 0.72);
  color: #24142d;
  text-align: center;
}

.image-empty span {
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.image-empty small {
  max-width: 14ch;
  color: rgba(36, 20, 45, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-card:hover {
  border-color: rgba(214, 179, 106, 0.32);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-category {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.variant-count {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.product-copy {
  display: grid;
  align-content: start;
  gap: 9px;
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-category-name {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
}

.catalog-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 4px;
}

.product-price {
  display: block;
  color: var(--gold-strong);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.catalog-mrp {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: line-through;
}

.catalog-discount {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-actions {
  display: block;
}

.product-actions .cart-add-button {
  width: 100%;
  min-height: 46px;
}

.mini-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: center;
}

.mini-button.accent {
  border-color: rgba(214, 179, 106, 0.34);
  background: linear-gradient(135deg, rgba(236, 207, 143, 0.16), rgba(214, 179, 106, 0.1));
  color: var(--accent-strong);
}

.card-qty {
  display: grid;
  grid-template-columns: 40px minmax(34px, 1fr) 40px;
  gap: 6px;
  align-items: center;
}

.card-qty .mini-button {
  min-width: 40px;
  padding: 0;
}

.card-qty span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 950;
}

.showcase-section,
.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
}

.showcase-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-lg);
}

.showcase-board article {
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel-soft);
  overflow: hidden;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.showcase-board article:hover {
  border-color: rgba(214, 179, 106, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.showcase-board img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.showcase-board span {
  display: block;
  padding: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-section {
  border-block: 1px solid var(--line);
}

.story-section > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.08);
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(440px, calc(100vw - 24px));
  height: calc(100vh - 24px);
  margin: 12px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 16px;
  padding: 18px;
  transform: translateX(24px);
  transition: transform 240ms ease;
}

.cart-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.drawer-header h2 {
  margin-bottom: 0;
  font-size: 2.1rem;
}

.cart-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quantity-controls {
  display: grid;
  grid-template-columns: 38px 30px 38px;
  align-items: center;
  gap: 6px;
}

.quantity-controls span {
  text-align: center;
  font-weight: 950;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--muted);
  font-weight: 900;
}

.cart-total strong {
  color: var(--lime);
  font-size: 1.35rem;
}

.product-modal {
  width: min(980px, calc(100vw - 26px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(16px, 2.4vw, 24px);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border-radius: var(--radius-lg);
  animation: modalPop 220ms var(--ease) both;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.modal-visual {
  position: relative;
  height: clamp(300px, 40vw, 440px);
  max-height: min(62vh, 440px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.9), transparent 0 26%, transparent 64%),
    var(--surface-light);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 950;
  color: var(--lime);
  overflow: hidden;
}

.modal-photo {
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  display: block;
  width: calc(100% - (clamp(18px, 3vw, 34px) * 2)) !important;
  height: calc(100% - (clamp(18px, 3vw, 34px) * 2)) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.16));
}

.modal-empty {
  width: 58%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.13), rgba(158, 63, 85, 0.12)),
    rgba(255, 255, 255, 0.12);
}

.product-page {
  padding: clamp(20px, 5vw, 56px) clamp(14px, 4vw, 56px) clamp(42px, 7vw, 90px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(340px, 0.82fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.product-gallery,
.product-info {
  padding: clamp(16px, 3vw, 28px);
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  height: clamp(360px, 48vw, 560px);
  max-height: 64vh;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 54px);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), transparent 0 26%, transparent 62%),
    var(--surface-light);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 22px 48px rgba(0, 0, 0, 0.2);
}

.gallery-zoom-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-zoom-trigger img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.18));
}

.gallery-zoom-trigger:focus-visible {
  outline: 2px solid rgba(214, 179, 106, 0.72);
  outline-offset: 4px;
}

.gallery-empty {
  width: min(320px, 68%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.14), rgba(158, 63, 85, 0.12)),
    rgba(255, 255, 255, 0.78);
}

.gallery-empty::before,
.modal-empty::before {
  content: "NOTTACIA";
  color: rgba(13, 10, 20, 0.58);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 950;
  letter-spacing: 0.12em;
}

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

.thumb-button {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.thumb-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.thumb-button.active {
  border-color: rgba(214, 179, 106, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.14);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 6px;
}

.thumb-empty {
  grid-column: 1 / -1;
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--muted);
}

.product-info {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 14px;
}

.product-info h1 {
  max-width: 18ch;
  margin-bottom: 0;
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.95rem, 3.7vw, 3.85rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: break-word;
}

.product-subtitle {
  max-width: 58ch;
  margin: 0;
  color: var(--lime);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 800;
  line-height: 1.45;
}

.product-info > p:not(.eyebrow):not(.product-subtitle) {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 8px 0 2px;
}

.detail-price {
  display: block;
  margin: 0;
  color: var(--lime);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 950;
}

.detail-mrp {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-color: rgba(214, 179, 106, 0.7);
  text-decoration-thickness: 2px;
}

.discount-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.inquiry-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 6px 0 2px;
}

.inquiry-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.inquiry-button:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.inquiry-whatsapp {
  background:
    linear-gradient(135deg, rgba(240, 215, 154, 0.18), rgba(200, 111, 74, 0.16)),
    rgba(255, 255, 255, 0.055);
}

.inquiry-call {
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.inquiry-email {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
}

.product-detail-page .inquiry-panel,
.home-body .modal-inquiry-actions {
  max-width: 640px;
}

.home-body .modal-inquiry-actions {
  margin-top: -2px;
}

.detail-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.quantity-picker {
  display: grid;
  grid-template-columns: 42px 44px 42px;
  align-items: center;
  gap: 8px;
}

.quantity-picker span {
  text-align: center;
  font-weight: 950;
}

.variant-panel {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}

.variant-panel[hidden] {
  display: none;
}

.variant-panel > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.variant-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 10px;
}

.variant-option {
  min-height: 62px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  text-align: left;
}

.variant-option span {
  font-size: 0.86rem;
  font-weight: 950;
}

.variant-option small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.variant-option.active {
  border-color: rgba(214, 179, 106, 0.72);
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.2), rgba(158, 63, 85, 0.16));
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.12);
}

.modal-copy {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 18px 8px;
}

.modal-copy h2 {
  max-width: 18ch;
  margin: 0;
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: break-word;
}

.modal-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-badges {
  margin: -2px 0 8px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.32fr) 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.055), rgba(255, 255, 255, 0.035));
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

.product-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.detail-block {
  padding: clamp(18px, 3vw, 28px);
}

.detail-block-wide {
  grid-column: 1 / -1;
}

.detail-block h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.detail-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-section {
  margin-top: clamp(18px, 3vw, 34px);
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.section-heading h2 {
  max-width: 16ch;
  margin: 0;
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.benefit-grid,
.use-card-grid,
.step-card-grid,
.option-card-grid,
.related-grid,
.faq-list,
.split-detail-section {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.use-card,
.step-card,
.option-card,
.related-card,
.faq-item {
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.08), transparent 42%),
    var(--panel);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.benefit-card:hover,
.use-card:hover,
.step-card:hover,
.option-card:hover,
.related-card:hover,
.faq-item:hover {
  border-color: rgba(214, 179, 106, 0.34);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.benefit-card > span,
.use-card > span,
.option-card > span {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.benefit-card h3,
.option-card h3,
.related-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.benefit-card p,
.use-card p,
.step-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.use-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-card {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.step-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: step-card;
}

.step-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-content: start;
}

.step-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 179, 106, 0.32);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--lime);
  font-weight: 950;
}

.split-detail-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ingredient-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-chip-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.spec-grid div,
.option-card dl div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.spec-grid dt,
.option-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.spec-grid dd,
.option-card dd {
  margin: 0;
  line-height: 1.45;
}

.option-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
  display: grid;
  gap: 14px;
}

.option-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 280px auto minmax(46px, auto) auto auto;
  gap: 12px;
}

.related-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-light);
  overflow: hidden;
}

.related-image img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px) !important;
  height: calc(100% - 36px) !important;
  max-width: calc(100% - 36px) !important;
  max-height: calc(100% - 36px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.related-image span {
  color: rgba(13, 10, 20, 0.58);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.related-card p {
  margin: 0;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--text);
}

.related-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.18), rgba(158, 63, 85, 0.12)),
    rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.related-button:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.48);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.28), rgba(158, 63, 85, 0.16)),
    rgba(255, 255, 255, 0.09);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border-radius: var(--radius-lg);
}

.faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
}

.faq-item p {
  margin-top: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(214, 179, 106, 0.26);
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.1);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
}

.clean-list,
.step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.clean-list li::marker,
.step-list li::marker {
  color: var(--hot);
  font-weight: 950;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: calc(100vw - 36px);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 6, 10, 0.9);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(5, 4, 8, 0.86);
  backdrop-filter: blur(18px) saturate(130%);
  cursor: zoom-out;
  overflow-x: hidden;
  overflow-y: auto;
}

.image-lightbox.open {
  display: block;
  animation: lightboxFade 160ms ease both;
}

.lightbox-frame {
  min-height: calc(100dvh - (clamp(18px, 4vw, 48px) * 2));
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: zoom-out;
  overflow: visible;
}

.lightbox-frame img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: none;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  padding: clamp(12px, 2.5vw, 28px);
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.92), transparent 0 24%, transparent 64%),
    rgba(255, 252, 244, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  cursor: zoom-out;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.2));
}

.lightbox-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  z-index: 81;
  background: rgba(18, 16, 24, 0.88);
}

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 560ms ease-out forwards;
}

.cart-button.pulse span {
  animation: pulsePop 460ms ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatItem {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes pulsePop {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.22);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lightboxFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid,
  .step-card-grid,
  .option-card-grid,
  .spec-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-panel,
  .stats-grid,
  .toolbar,
  .product-grid,
  .showcase-section,
  .story-section,
  .modal-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-art {
    min-height: 330px;
  }

  .product-stage {
    min-height: 330px;
  }

  .floating-card {
    display: none;
  }

  .pack-main {
    left: 24%;
    width: 58%;
  }

  .pack-left,
  .pack-right {
    width: 38%;
  }

  .modal-visual {
    height: min(320px, 72vw);
    max-height: none;
    min-height: 0;
  }

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

  .product-extra-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .use-card-grid,
  .step-card-grid,
  .option-card-grid,
  .related-grid,
  .faq-list,
  .split-detail-section {
    grid-template-columns: 1fr;
  }

  .product-info {
    position: static;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding: 16px 12px 28px;
  }

  .hero-panel {
    padding: 18px;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 6rem);
  }

  h2 {
    max-width: 12ch;
    font-size: 2.25rem;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-art {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .showcase-section,
  .story-section {
    margin-inline: 12px;
  }

  .section {
    padding-top: 34px;
  }

  .catalog-section {
    scroll-margin-top: 80px;
  }

  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card {
    min-height: 560px;
    grid-template-rows: 220px auto 1fr auto;
    padding: 16px;
  }

  .product-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    padding: 16px;
    border-radius: 18px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .product-page {
    padding-inline: 12px;
  }

  .gallery-main {
    height: min(330px, 86vw);
    max-height: none;
    min-height: 0;
    border-radius: 18px;
    padding: 18px;
  }

  .gallery-main img {
    max-width: 100%;
    max-height: 100%;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-info h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 3rem);
    line-height: 1.06;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .variant-options {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 9vw, 2.7rem);
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: 500px;
    grid-template-rows: 280px auto minmax(40px, auto) auto auto;
  }

  .product-modal {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .modal-card {
    max-height: calc(100dvh - 20px);
    padding: 14px;
  }

  .modal-copy {
    padding: 8px 2px 4px;
  }

  .image-lightbox {
    padding: 56px 12px 24px;
  }

  .lightbox-frame {
    min-height: calc(100dvh - 80px);
    width: 100%;
  }

  .lightbox-frame img {
    max-width: calc(100vw - 24px);
    padding: 12px;
    border-radius: 18px;
  }

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

  .quantity-picker {
    justify-content: start;
  }
}

/* UI refresh: premium food landing rhythm */
.hero {
  padding-top: clamp(18px, 4vw, 42px);
}

.hero-panel {
  position: relative;
  min-height: clamp(640px, 74vh, 820px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  border-color: rgba(214, 179, 106, 0.26);
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.98), rgba(15, 11, 13, 0.78) 46%, rgba(8, 6, 7, 0.38)),
    radial-gradient(circle at 78% 20%, rgba(214, 179, 106, 0.2), transparent 0 24%, transparent 56%),
    radial-gradient(circle at 86% 82%, rgba(158, 63, 85, 0.22), transparent 0 26%, transparent 58%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    var(--panel);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 82%);
  pointer-events: none;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 950;
}

.hero-copy p:not(.eyebrow) {
  max-width: 58ch;
}

.hero-product-stage {
  position: relative;
  min-height: clamp(420px, 52vw, 620px);
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 252, 244, 0.08), transparent 0 28%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 8, 10, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow);
  overflow: hidden;
}

.hero-product-stack {
  position: absolute;
  inset: clamp(14px, 3vw, 30px);
}

.hero-product-card {
  position: absolute;
  display: grid;
  gap: 10px;
  width: min(46%, 250px);
  min-height: 290px;
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(20, 15, 18, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(140%);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.hero-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 106, 0.46);
  box-shadow: 0 36px 90px rgba(214, 179, 106, 0.12), 0 30px 80px rgba(0, 0, 0, 0.42);
}

.hero-product-card-1 {
  left: 3%;
  top: 8%;
  z-index: 3;
}

.hero-product-card-2 {
  right: 5%;
  top: 20%;
  z-index: 2;
}

.hero-product-card-3 {
  left: 28%;
  bottom: 7%;
  z-index: 4;
}

.hero-product-photo {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-light);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

.hero-product-card span,
.hero-range-card span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-product-card strong,
.hero-range-card strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.22;
}

.hero-range-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(320px, calc(100% - 44px));
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 22px;
  background: rgba(8, 6, 7, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-color: rgba(214, 179, 106, 0.18);
  background:
    linear-gradient(150deg, rgba(214, 179, 106, 0.09), transparent 48%),
    var(--panel);
}

.highlight-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 999px;
  color: var(--accent-strong);
  font-weight: 950;
}

.highlight-card strong {
  font-size: 1rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-link {
  min-width: max-content;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.curated-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: 280px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.12), transparent 0 34%, transparent 64%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(18, 15, 18, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.curated-card:hover {
  border-color: rgba(214, 179, 106, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(214, 179, 106, 0.12), var(--shadow-soft);
}

.curated-image,
.list-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.92), transparent 0 28%, transparent 62%),
    var(--surface-light);
  overflow: hidden;
}

.curated-photo,
.list-product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

.curated-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.curated-copy > span,
.list-product-card span,
.range-panel span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.curated-copy h3,
.list-product-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.curated-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.curated-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.curated-meta small {
  color: var(--muted);
  font-weight: 850;
}

.curated-meta strong {
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  margin: clamp(28px, 5vw, 70px) clamp(14px, 4vw, 56px);
  padding: clamp(24px, 5vw, 58px);
  border-color: rgba(214, 179, 106, 0.26);
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.96), rgba(16, 12, 17, 0.82)),
    radial-gradient(circle at 80% 28%, rgba(214, 179, 106, 0.18), transparent 0 24%, transparent 58%),
    radial-gradient(circle at 18% 86%, rgba(158, 63, 85, 0.2), transparent 0 24%, transparent 58%),
    var(--panel);
  overflow: hidden;
}

.promo-copy h2 {
  max-width: 12ch;
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  font-weight: 950;
}

.promo-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.promo-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promo-product-card {
  min-height: 420px;
  grid-template-rows: 210px 1fr;
}

.popular-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 18px;
}

.range-panel {
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 179, 106, 0.18), transparent 0 28%, transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(18, 15, 18, 0.9);
  overflow: hidden;
}

.range-panel strong {
  max-width: 17ch;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.mini-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.list-product-card {
  min-height: 180px;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 179, 106, 0.15);
}

.list-product-image {
  width: 112px;
  height: 112px;
  padding: 10px;
  border-radius: 18px;
}

.list-product-card strong {
  color: var(--accent-strong);
}

.compact-curated-grid .curated-card {
  min-height: 510px;
  grid-template-rows: 250px 1fr;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.8fr);
  gap: 24px;
  margin: clamp(30px, 5vw, 78px) clamp(14px, 4vw, 56px) 0;
  padding: clamp(24px, 4vw, 42px);
  border-top: 1px solid rgba(214, 179, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(15, 12, 16, 0.9), rgba(8, 6, 7, 0.98)),
    radial-gradient(circle at 78% 0%, rgba(214, 179, 106, 0.11), transparent 0 28%, transparent 62%);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p,
.footer-note {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 6px;
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.footer-contact strong,
.footer-contact a {
  color: var(--accent-strong);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 999px;
  color: var(--text);
  font-weight: 850;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 179, 106, 0.16);
  font-size: 0.9rem;
}

.legal-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 8px;
}

.legal-hero {
  display: grid;
  gap: 16px;
  min-height: clamp(280px, 42vw, 460px);
  align-content: center;
  padding: clamp(24px, 5vw, 64px);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.legal-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px);
}

.legal-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--accent-strong);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(214, 179, 106, 0.13);
}

.legal-list div:last-child {
  border-bottom: 0;
}

.legal-list dt {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.legal-button {
  width: max-content;
  max-width: 100%;
}

@media (max-width: 1080px) {
  .highlight-strip,
  .curated-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-section,
  .popular-layout {
    grid-template-columns: 1fr;
  }

  .promo-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 5.2rem);
  }

  .hero-art {
    min-height: 520px;
  }

  .highlight-strip,
  .promo-visual,
  .mini-product-list,
  .legal-grid,
  .legal-grid-three,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    padding: 18px;
  }

  .hero-copy {
    width: 100%;
    max-width: 300px;
  }

  .hero-copy h1 {
    max-width: 280px;
    font-size: clamp(2.1rem, 9.2vw, 2.9rem);
    line-height: 0.98;
  }

  .hero-copy p:not(.eyebrow),
  .hero-list,
  .hero-actions {
    width: 100%;
    max-width: 300px;
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p,
  .hero-list li {
    overflow-wrap: break-word;
  }

  .hero-art {
    display: grid;
    min-height: 520px;
  }

  .hero-product-stage {
    min-height: 500px;
    border-radius: 22px;
  }

  .hero-product-card {
    width: 72%;
    min-height: 220px;
  }

  .hero-product-card-1 {
    left: 0;
    top: 4%;
  }

  .hero-product-card-2 {
    right: 0;
    top: 31%;
  }

  .hero-product-card-3 {
    left: 8%;
    bottom: 6%;
  }

  .hero-product-photo {
    height: 132px;
  }

  .hero-range-card {
    display: none;
  }

  .highlight-card {
    min-height: auto;
  }

  .curated-grid {
    grid-template-columns: 1fr;
  }

  .curated-card,
  .compact-curated-grid .curated-card {
    min-height: 510px;
    grid-template-rows: 240px 1fr;
  }

  .promo-section {
    margin-inline: 12px;
    padding: 18px;
  }

  .list-product-card {
    grid-template-columns: 92px 1fr;
  }

  .list-product-card .mini-button {
    grid-column: 1 / -1;
  }

  .list-product-image {
    width: 92px;
    height: 92px;
  }

  .site-footer {
    margin-inline: 12px;
    padding: 22px 12px;
  }

  .legal-main {
    width: calc(100% - 24px);
    padding-top: 22px;
  }

  .legal-hero,
  .legal-card {
    border-radius: 18px;
    padding: 20px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Product detail mockup refresh: Phase 1 catalog-only layout */
.product-detail-page {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding-top: clamp(16px, 2.6vw, 34px);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-breadcrumb a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  transition: color 160ms var(--ease);
}

.product-breadcrumb a:hover {
  color: var(--accent-strong);
}

.product-detail-page .product-detail {
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: clamp(18px, 3vw, 38px);
}

.product-detail-page .product-gallery,
.product-detail-page .product-info {
  border-radius: 20px;
  border-color: rgba(214, 179, 106, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 12% 0%, rgba(214, 179, 106, 0.11), transparent 0 28%, transparent 62%),
    rgba(10, 8, 12, 0.86);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.36);
}

.product-detail-page .product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  padding: clamp(14px, 2vw, 22px);
}

.product-detail-page .gallery-main {
  grid-column: 2;
  grid-row: 1;
  height: clamp(500px, 57vw, 690px);
  max-height: min(76vh, 720px);
  padding: clamp(22px, 3vw, 42px);
  border-radius: 18px;
  border-color: rgba(255, 252, 244, 0.2);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 252, 244, 0.95), transparent 0 31%, transparent 70%),
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(238, 231, 219, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -24px 44px rgba(20, 14, 18, 0.08),
    0 26px 56px rgba(0, 0, 0, 0.28);
}

.product-detail-page .gallery-zoom-trigger {
  border-radius: 14px;
}

.product-detail-page .gallery-zoom-trigger img {
  position: static;
  inset: auto;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.18));
}

.product-detail-page .gallery-thumbs {
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 1fr;
  grid-auto-rows: 86px;
  align-content: start;
  gap: 10px;
  max-height: clamp(500px, 57vw, 690px);
  overflow-y: auto;
  padding: 0 3px 0 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 179, 106, 0.48) rgba(255, 255, 255, 0.06);
}

.product-detail-page .thumb-button {
  width: 100%;
  min-height: 82px;
  border-radius: 14px;
  border-color: rgba(214, 179, 106, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(237, 230, 219, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-detail-page .thumb-button:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 179, 106, 0.5);
}

.product-detail-page .thumb-button.active {
  border-color: rgba(214, 179, 106, 0.95);
  box-shadow: 0 0 0 2px rgba(214, 179, 106, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-detail-page .thumb-button img {
  padding: 8px;
  object-fit: contain;
  object-position: center center;
}

.product-detail-page .product-info {
  top: 88px;
  gap: 15px;
  padding: clamp(20px, 3vw, 32px);
}

.product-detail-page .product-info .eyebrow {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.12);
  color: var(--accent-strong);
}

.product-detail-page .product-info h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.35vw, 4.15rem);
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
}

.product-detail-page .product-subtitle {
  max-width: 58ch;
  color: var(--accent-strong);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 850;
}

.product-detail-page .product-info > p:not(.eyebrow):not(.product-subtitle) {
  color: rgba(246, 240, 232, 0.68);
  line-height: 1.7;
}

.product-detail-page .price-stack {
  margin: 4px 0 0;
  padding: 16px 0;
  border-top: 1px solid rgba(214, 179, 106, 0.14);
  border-bottom: 1px solid rgba(214, 179, 106, 0.14);
}

.product-detail-page .detail-price {
  color: var(--accent-strong);
  font-size: clamp(1.8rem, 2.4vw, 2.75rem);
  line-height: 1;
}

.product-detail-page .detail-mrp {
  color: rgba(199, 189, 180, 0.82);
}

.product-detail-page .discount-badge {
  min-height: 31px;
  padding: 0 11px;
  border-color: rgba(200, 111, 74, 0.48);
  background: rgba(200, 111, 74, 0.16);
  color: #ffd4c3;
}

.product-detail-page .variant-panel {
  gap: 12px;
  margin: 0;
}

.product-detail-page .variant-panel > span {
  color: rgba(246, 240, 232, 0.68);
}

.product-detail-page .variant-options {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.product-detail-page .variant-option {
  min-height: 72px;
  border-radius: 12px;
  border-color: rgba(214, 179, 106, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.product-detail-page .variant-option.active {
  border-color: rgba(214, 179, 106, 0.88);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.22), rgba(200, 111, 74, 0.13)),
    rgba(255, 255, 255, 0.07);
}

.product-detail-page .detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.product-detail-page .detail-list div {
  grid-template-columns: 1fr;
  gap: 7px;
  min-height: 74px;
  padding: 13px 14px;
  border-radius: 12px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 179, 106, 0.08), transparent 0 44%, transparent 72%),
    rgba(255, 255, 255, 0.045);
}

.product-detail-page .detail-list dt,
.product-detail-page .spec-grid dt,
.product-detail-page .option-card dt {
  color: rgba(246, 240, 232, 0.62);
}

.product-detail-page .detail-list dd {
  color: var(--text);
  font-weight: 750;
}

.product-page-actions {
  grid-template-columns: minmax(180px, auto) 1fr;
  margin-top: 4px;
  padding-top: 4px;
}

.catalog-only-note {
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.detail-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(16px, 2.4vw, 24px);
}

.trust-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 10, 14, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.trust-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.1);
  color: var(--accent-strong);
  font-weight: 950;
  font-size: 0.82rem;
}

.trust-card strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.trust-card p {
  margin: 6px 0 0;
  color: rgba(246, 240, 232, 0.62);
  line-height: 1.5;
  font-size: 0.9rem;
}

.product-detail-page .detail-section {
  margin-top: clamp(22px, 3.6vw, 42px);
}

.product-detail-page .section-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.product-detail-page .section-heading h2 {
  max-width: none;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 1.02;
}

.product-detail-page .section-kicker {
  max-width: 680px;
  margin: 0;
  color: rgba(246, 240, 232, 0.64);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  line-height: 1.55;
}

.product-detail-page .benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-page .benefit-card,
.product-detail-page .step-card,
.product-detail-page .option-card,
.product-detail-page .detail-block,
.product-detail-page .faq-item {
  border-radius: 18px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.8);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25);
}

.product-detail-page .benefit-card {
  min-height: 170px;
}

.product-detail-page .benefit-card > span,
.product-detail-page .use-card > span,
.product-detail-page .option-card > span {
  color: var(--accent-strong);
}

.product-detail-page .benefit-card h3 {
  color: var(--text);
  font-size: 1.1rem;
}

.product-detail-page .use-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-page .use-card {
  width: auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border-color: rgba(214, 179, 106, 0.2);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(13, 10, 14, 0.72);
  box-shadow: none;
}

.product-detail-page .use-card > span {
  min-height: 24px;
  padding: 0 8px;
  font-size: 0.68rem;
}

.product-detail-page .use-card p {
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}

.product-detail-page .step-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-page .step-card {
  position: relative;
  min-height: 142px;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 22px;
}

.product-detail-page .step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -10px;
  width: 20px;
  border-top: 1px dashed rgba(214, 179, 106, 0.34);
}

.product-detail-page .step-card > span {
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.34), rgba(200, 111, 74, 0.18));
  color: var(--text);
}

.product-detail-page .split-detail-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-page .detail-block {
  min-height: 190px;
}

.product-detail-page .ingredient-chip-list span {
  border-color: rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.product-detail-page .spec-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-detail-page .spec-grid div,
.product-detail-page .option-card dl div {
  border-color: rgba(214, 179, 106, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.product-detail-page .option-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-page .option-card {
  min-height: 190px;
}

.product-detail-page .related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-detail-page .related-card {
  min-height: 178px;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  grid-template-areas:
    "image tag"
    "image title"
    "image price"
    "button button";
  gap: 8px 14px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.8);
}

.product-detail-page .related-image {
  grid-area: image;
  width: 104px;
  height: 104px;
  padding: 10px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(237, 230, 219, 0.84));
}

.product-detail-page .related-image img {
  position: static;
  inset: auto;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.product-detail-page .related-card p {
  grid-area: tag;
  color: var(--accent-strong);
}

.product-detail-page .related-card h3 {
  grid-area: title;
  min-width: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.product-detail-page .related-card strong {
  grid-area: price;
  color: var(--text);
}

.product-detail-page .related-button {
  grid-area: button;
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  border-color: rgba(214, 179, 106, 0.24);
  background:
    linear-gradient(135deg, rgba(200, 111, 74, 0.34), rgba(158, 63, 85, 0.32)),
    rgba(255, 255, 255, 0.055);
}

.product-detail-page .similar-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.product-detail-page .similar-compare-card {
  display: grid;
  grid-template-rows: 168px auto auto 1fr;
  gap: 12px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    rgba(13, 10, 14, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.product-detail-page .similar-compare-card.current {
  border-color: rgba(240, 215, 154, 0.64);
  box-shadow: 0 0 0 2px rgba(214, 179, 106, 0.08), 0 18px 54px rgba(0, 0, 0, 0.3);
}

.product-detail-page .similar-compare-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 10px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(239, 232, 219, 0.86));
  overflow: hidden;
}

.product-detail-page .similar-compare-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-detail-page .similar-compare-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.product-detail-page .similar-compare-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.product-detail-page .similar-compare-category,
.product-detail-page .similar-compare-current {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-page .similar-compare-category {
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 240, 232, 0.72);
}

.product-detail-page .similar-compare-current {
  border: 1px solid rgba(240, 215, 154, 0.42);
  background: rgba(214, 179, 106, 0.16);
  color: var(--accent-strong);
}

.product-detail-page .similar-compare-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.1vw, 1.22rem);
  line-height: 1.24;
  text-wrap: balance;
}

.product-detail-page .similar-compare-copy p {
  margin: 0;
  color: rgba(246, 240, 232, 0.66);
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.product-detail-page .similar-compare-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.product-detail-page .similar-compare-facts div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(214, 179, 106, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.product-detail-page .similar-compare-facts .wide {
  grid-column: 1 / -1;
}

.product-detail-page .similar-compare-facts dt {
  color: rgba(240, 215, 154, 0.78);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-page .similar-compare-facts dd {
  margin: 0;
  color: rgba(246, 240, 232, 0.78);
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.product-detail-page .similar-compare-price dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
}

.product-detail-page .similar-compare-price .scp-amount {
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 950;
}

.product-detail-page .similar-compare-price .scp-mrp {
  color: rgba(246, 240, 232, 0.5);
  font-size: 0.8rem;
  text-decoration: line-through;
}

.product-detail-page .similar-compare-actions {
  align-self: end;
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.product-detail-page .similar-compare-actions .related-button,
.product-detail-page .similar-compare-viewing {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-detail-page .similar-compare-viewing {
  border: 1px solid rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 240, 232, 0.58);
}

.product-detail-page .disabled-link {
  pointer-events: none;
  opacity: 0.72;
}

.product-detail-page .faq-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-detail-page .faq-item {
  padding: 0;
  overflow: hidden;
}

.product-detail-page .faq-item summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  list-style: none;
}

.product-detail-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.product-detail-page .faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 1.15rem;
  line-height: 1;
}

.product-detail-page .faq-item[open] summary::after {
  content: "-";
}

.product-detail-page .faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

@media (max-width: 1180px) {
  .product-detail-page .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-info {
    position: static;
  }

  .detail-trust-strip,
  .product-detail-page .spec-grid,
  .product-detail-page .similar-compare-grid,
  .product-detail-page .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .product-detail-page .gallery-main {
    grid-column: 1;
    grid-row: 1;
    height: min(540px, 116vw);
    max-height: none;
  }

  .product-detail-page .gallery-thumbs {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: none;
    grid-auto-columns: minmax(76px, 88px);
    grid-auto-flow: column;
    grid-auto-rows: 1fr;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
  }

  .product-detail-page .thumb-button {
    min-height: 76px;
  }

  .detail-trust-strip,
  .product-detail-page .benefit-grid,
  .product-detail-page .step-card-grid,
  .product-detail-page .split-detail-section,
  .product-detail-page .option-card-grid,
  .product-detail-page .related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .similar-compare-grid {
    display: flex;
    gap: 12px;
    margin-inline: -4px;
    padding: 2px 4px 10px;
    overflow-x: auto;
    scroll-padding-inline: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-page .similar-compare-card {
    flex: 0 0 min(360px, 86vw);
    scroll-snap-align: start;
  }

  .product-detail-page .step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .product-detail-page {
    width: 100%;
    max-width: 100vw;
    padding-inline: 12px;
    overflow-x: hidden;
  }

  .product-breadcrumb {
    font-size: 0.78rem;
  }

  .product-detail-page .product-detail,
  .product-detail-page .product-gallery,
  .product-detail-page .product-info,
  .product-detail-page .detail-section,
  .detail-trust-strip {
    width: 100%;
    min-width: 0;
  }

  .product-detail-page .product-gallery,
  .product-detail-page .product-info,
  .product-detail-page .detail-section,
  .detail-trust-strip {
    max-width: 420px;
    margin-inline: auto;
  }

  .product-detail-page .product-gallery,
  .product-detail-page .product-info {
    padding: 12px;
    border-radius: 18px;
  }

  .product-detail-page .gallery-main {
    height: min(460px, 120vw);
    padding: 16px;
    border-radius: 16px;
  }

  .product-detail-page .similar-compare-card {
    flex-basis: min(340px, 88vw);
    grid-template-rows: 150px auto auto 1fr;
    padding: 14px;
  }

  .product-detail-page .similar-compare-facts {
    gap: 6px;
  }

  .product-detail-page .similar-compare-facts div {
    padding: 7px;
  }

  .product-detail-page .product-info h1 {
    max-width: 330px;
    font-size: clamp(1.7rem, 7.8vw, 2.08rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .product-detail-page .product-subtitle,
  .product-detail-page .product-info > p:not(.eyebrow):not(.product-subtitle) {
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .product-detail-page .price-stack,
  .product-detail-page .variant-panel,
  .product-detail-page .inquiry-panel,
  .product-detail-page .detail-list,
  .product-page-actions {
    max-width: 330px;
  }

  .product-detail-page .detail-list {
    grid-template-columns: 1fr;
  }

  .product-page-actions {
    grid-template-columns: 1fr;
  }

  .product-detail-page .inquiry-panel,
  .home-body .modal-inquiry-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-trust-strip {
    gap: 10px;
  }

  .trust-card {
    min-height: auto;
    padding: 15px;
  }

  .product-detail-page .use-card {
    width: 100%;
    align-items: flex-start;
    border-radius: 16px;
  }

  .product-detail-page .step-card {
    grid-template-columns: 1fr;
  }

  .product-detail-page .spec-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .related-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 164px;
  }

  .product-detail-page .related-image {
    width: 92px;
    height: 92px;
  }
}

/* Homepage/catalog refresh: matches the premium product detail system */
.home-body {
  background:
    radial-gradient(circle at 12% 4%, rgba(214, 179, 106, 0.14), transparent 0 22%, transparent 48%),
    radial-gradient(circle at 88% 8%, rgba(158, 63, 85, 0.16), transparent 0 24%, transparent 54%),
    linear-gradient(150deg, #130e10 0%, #080607 44%, #100b12 100%);
}

.home-body .site-header {
  border-bottom-color: rgba(214, 179, 106, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 13, 16, 0.94), rgba(8, 6, 7, 0.78));
}

.home-page {
  width: min(100%, 1560px);
  margin: 0 auto;
  overflow-x: hidden;
}

.home-page .hero {
  padding: clamp(18px, 4vw, 44px) clamp(14px, 4vw, 56px) clamp(36px, 5vw, 62px);
}

.home-page .hero-panel {
  min-height: clamp(560px, 70vh, 760px);
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  border-radius: 22px;
  border-color: rgba(214, 179, 106, 0.25);
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.98), rgba(17, 12, 15, 0.88) 48%, rgba(8, 6, 7, 0.54)),
    radial-gradient(circle at 76% 24%, rgba(214, 179, 106, 0.2), transparent 0 24%, transparent 58%),
    radial-gradient(circle at 88% 82%, rgba(200, 111, 74, 0.2), transparent 0 26%, transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.022)),
    rgba(13, 10, 14, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.home-page .hero-panel::before {
  opacity: 0.65;
  mask-image: linear-gradient(to right, black, transparent 86%);
}

.home-page .hero-copy h1 {
  max-width: 15ch;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.home-page .hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(246, 240, 232, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.home-page .hero-list {
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  color: rgba(246, 240, 232, 0.68);
}

.home-page .hero-list li::before {
  background: var(--accent-strong);
  box-shadow: 0 0 14px rgba(240, 215, 154, 0.45);
}

.home-page .hero-actions {
  margin-top: 28px;
}

.home-page .button-primary,
.home-body .product-modal .button-primary {
  border-color: rgba(214, 179, 106, 0.18);
  background:
    linear-gradient(135deg, #f5d992, #c58946 56%, #a84f57);
  color: #1b1012;
}

.home-page .button-secondary {
  border-color: rgba(214, 179, 106, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.home-page .hero-product-stage {
  min-height: clamp(420px, 46vw, 580px);
  border-radius: 26px;
  border-color: rgba(214, 179, 106, 0.18);
  background:
    radial-gradient(120% 100% at 82% 8%, rgba(214, 179, 106, 0.16), transparent 52%),
    radial-gradient(120% 100% at 6% 96%, rgba(158, 63, 85, 0.14), transparent 54%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(9, 7, 9, 0.76);
}

.home-page .hero-product-card {
  width: min(42%, 238px);
  min-height: 232px;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  border-color: rgba(214, 179, 106, 0.34);
  background: linear-gradient(160deg, #f4ecdd, #e5d8c2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.46);
  backdrop-filter: none;
}

.home-page .hero-product-card:hover,
.home-page .hero-product-card:focus-within {
  z-index: 30;
  transform: translateY(-5px);
  border-color: rgba(214, 179, 106, 0.6);
}

.home-page .hero-product-card-1 {
  left: 3%;
  top: 6%;
  z-index: 5;
}

.home-page .hero-product-card-2 {
  right: 4%;
  top: 15%;
  z-index: 4;
}

.home-page .hero-product-card-3 {
  left: 25%;
  bottom: 6%;
  z-index: 6;
}

.home-page .hero-product-photo {
  height: 148px;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  border-radius: 12px;
  background: transparent;
  mix-blend-mode: multiply;
  filter: none;
}

.home-page .hero-product-card span {
  position: relative;
  z-index: 1;
  color: #9c6a35;
}

.home-page .hero-product-card strong {
  position: relative;
  z-index: 1;
  color: #241811;
}

.home-page .hero-range-card {
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 3;
  width: min(286px, calc(100% - 32px));
  border-color: rgba(214, 179, 106, 0.3);
  background:
    radial-gradient(130% 130% at 16% 14%, rgba(214, 179, 106, 0.2), transparent 60%),
    rgba(8, 6, 7, 0.9);
}

.home-page .highlight-strip,
.home-page .stats-grid,
.home-page .section,
.home-page .showcase-section,
.home-page .story-section {
  width: min(calc(100% - clamp(28px, 8vw, 112px)), 1480px);
  margin-inline: auto;
}

.home-page .highlight-card,
.home-page .stat-card {
  border-radius: 16px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.home-page .highlight-card {
  min-height: 156px;
}

.home-page .stat-card {
  min-height: 104px;
}

.home-page .stat-card span {
  color: var(--accent-strong);
}

.home-page .section {
  padding-block: clamp(42px, 6vw, 82px);
}

.home-page .section-heading {
  max-width: 980px;
  margin-bottom: 22px;
}

.home-page .section-heading-row {
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
}

.home-page .section-heading h2 {
  max-width: 16ch;
  color: var(--text);
  font-family: Jost, Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  font-weight: 950;
  text-wrap: balance;
}

.home-page .section-intro {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(246, 240, 232, 0.66);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.home-page .use-case-section {
  padding-top: clamp(34px, 5vw, 74px);
}

.home-page .use-case-section .section-heading {
  max-width: 1120px;
}

.home-page .use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 18px);
}

.home-page .use-case-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 184px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 24px);
  border-color: rgba(214, 179, 106, 0.16);
  background:
    radial-gradient(circle at 92% 10%, rgba(214, 179, 106, 0.12), transparent 0 28%, transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.82);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.home-page .use-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 179, 106, 0.4);
  box-shadow: 0 22px 60px rgba(214, 179, 106, 0.09), 0 18px 54px rgba(0, 0, 0, 0.3);
}

.home-page .use-case-card.active {
  border-color: rgba(240, 215, 154, 0.76);
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 215, 154, 0.2), transparent 0 30%, transparent 62%),
    linear-gradient(135deg, rgba(214, 179, 106, 0.18), rgba(200, 111, 74, 0.1)),
    rgba(16, 11, 14, 0.92);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.11), 0 24px 70px rgba(0, 0, 0, 0.36);
}

.home-page .use-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-page .use-case-index,
.home-page .use-case-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(240, 215, 154, 0.9);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .use-case-index {
  width: 42px;
}

.home-page .use-case-count {
  padding: 0 10px;
  white-space: nowrap;
}

.home-page .use-case-card.active .use-case-count {
  border-color: rgba(240, 215, 154, 0.42);
  background: rgba(240, 215, 154, 0.18);
  color: var(--accent-strong);
}

.home-page .use-case-copy {
  display: grid;
  gap: 9px;
}

.home-page .use-case-copy strong {
  color: var(--text);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.14;
}

.home-page .use-case-copy span {
  color: rgba(246, 240, 232, 0.64);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-page .toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 260px);
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 18px;
  border-color: rgba(214, 179, 106, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.home-page .search-box,
.home-page .select-box {
  color: rgba(246, 240, 232, 0.68);
}

.home-page input,
.home-page select {
  min-height: 52px;
  border-color: rgba(214, 179, 106, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

@media (min-width: 721px) {
  .home-page .select-box select,
  .home-page .select-box select option {
    background-color: #171217;
    color: rgba(246, 240, 232, 0.94);
  }

  .home-page .select-box select option:checked,
  .home-page .select-box select option:hover {
    background-color: rgba(214, 179, 106, 0.24);
    color: #fff8ea;
  }
}

.home-page .filter-row {
  gap: 9px;
  margin-bottom: 16px;
}

.home-page .filter-chip,
.home-page .text-button {
  min-height: 42px;
  border-radius: 999px;
  border-color: rgba(214, 179, 106, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 240, 232, 0.76);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}

.home-page .section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-color: rgba(214, 179, 106, 0.34);
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(16, 12, 14, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 38px rgba(0, 0, 0, 0.2);
}

.home-page .filter-chip:hover,
.home-page .text-button:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.44);
  color: var(--text);
}

.home-page .filter-chip.active {
  border-color: rgba(214, 179, 106, 0.8);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.22), rgba(200, 111, 74, 0.12));
  color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.1);
}

.home-page .catalog-meta {
  margin-bottom: 18px;
  color: rgba(246, 240, 232, 0.64);
}

.home-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.home-page .product-card {
  min-height: 650px;
  display: grid;
  grid-template-rows: 276px auto minmax(226px, 1fr) auto;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(214, 179, 106, 0.12), transparent 0 28%, transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.home-page .product-card:hover {
  border-color: rgba(214, 179, 106, 0.36);
  box-shadow: 0 24px 68px rgba(214, 179, 106, 0.1), 0 22px 70px rgba(0, 0, 0, 0.34);
}

.home-page .product-image {
  width: 100%;
  max-width: none;
  height: 276px;
  padding: 16px;
  border-radius: 16px;
  border-color: rgba(255, 252, 244, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(239, 232, 219, 0.86));
}

.home-page .product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none !important;
}

.home-page .product-image:hover .product-photo {
  transform: none !important;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
}

.home-page .product-top {
  align-items: center;
}

.home-page .product-category,
.home-page .variant-count,
.home-page .catalog-discount {
  border-radius: 999px;
  border-color: rgba(214, 179, 106, 0.24);
  background: rgba(214, 179, 106, 0.1);
  color: var(--accent-strong);
}

.home-page .product-copy {
  min-width: 0;
  grid-template-rows: auto auto minmax(74px, auto) auto auto;
}

.home-page .product-card h3 {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.3;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-page .product-category-name {
  color: rgba(240, 215, 154, 0.82);
}

.home-page .product-card p {
  color: rgba(246, 240, 232, 0.64);
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-page .product-meta span {
  border-color: rgba(214, 179, 106, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.home-page .catalog-price-row {
  min-height: 34px;
  align-items: center;
  gap: 8px;
}

.home-page .product-price {
  color: var(--accent-strong);
  font-size: 1.2rem;
}

.home-page .catalog-mrp {
  color: rgba(199, 189, 180, 0.78);
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(214, 179, 106, 0.54);
}

.home-page .catalog-discount {
  border-color: rgba(200, 111, 74, 0.42);
  background: rgba(200, 111, 74, 0.14);
  color: #ffd4c3;
}

.home-page .product-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-page .mini-button,
.home-body .product-modal .mini-button {
  min-height: 44px;
  border-radius: 12px;
  border-color: rgba(214, 179, 106, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.home-page .mini-button.accent,
.home-page .related-button,
.home-body .product-modal .button-primary {
  border-radius: 12px;
}

.home-page .mini-button.accent,
.home-page .mini-button.compare-toggle.active,
.home-page .related-button {
  border-color: rgba(214, 179, 106, 0.32);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.2), rgba(200, 111, 74, 0.14)),
    rgba(255, 255, 255, 0.055);
  color: var(--accent-strong);
}

.home-page .mini-button.compare-toggle {
  overflow: hidden;
}

.home-page .mini-button.compare-toggle.active {
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.08);
}

.compare-modal-button {
  width: fit-content;
  min-width: 190px;
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.compare-modal-button.active {
  border-color: rgba(240, 215, 154, 0.66);
  color: var(--accent-strong);
}

.compare-tray {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(430px, calc(100vw - 28px));
  padding: 14px;
  border-radius: 18px;
  border-color: rgba(214, 179, 106, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(9, 7, 10, 0.92);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(20px) saturate(145%);
}

.compare-tray[hidden] {
  display: none;
}

.compare-tray > div:first-child {
  display: grid;
  gap: 2px;
}

.compare-tray span {
  color: rgba(240, 215, 154, 0.86);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-tray strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.1;
}

.compare-tray-actions {
  display: flex;
  gap: 8px;
}

.compare-dialog {
  width: min(1280px, calc(100vw - 28px));
  max-height: min(88vh, 960px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.compare-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.compare-panel {
  position: relative;
  display: grid;
  gap: 22px;
  max-height: min(88vh, 960px);
  overflow-y: auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  border-color: rgba(214, 179, 106, 0.22);
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 179, 106, 0.13), transparent 0 28%, transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 8, 11, 0.95);
}

.compare-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.compare-heading {
  max-width: 760px;
  padding-right: 54px;
}

.compare-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.compare-heading p:not(.eyebrow) {
  color: rgba(246, 240, 232, 0.66);
  line-height: 1.65;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.compare-card {
  display: grid;
  grid-template-rows: 220px auto 1fr auto;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.82);
}

.compare-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(239, 232, 219, 0.86));
  overflow: hidden;
}

.compare-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.compare-card-copy {
  display: grid;
  gap: 6px;
}

.compare-card-copy span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.25;
}

.compare-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.compare-spec-list div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(214, 179, 106, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.compare-spec-list dt {
  color: rgba(240, 215, 154, 0.78);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.compare-spec-list dd {
  margin: 0;
  color: rgba(246, 240, 232, 0.76);
  font-size: 0.88rem;
  line-height: 1.42;
}

.compare-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.compare-card-actions .remove-compare {
  grid-column: 1 / -1;
}

.compare-footer {
  display: flex;
  justify-content: flex-end;
}

.compare-empty {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 44px);
  border: 1px dashed rgba(214, 179, 106, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.compare-empty h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.compare-empty p {
  margin: 0;
  color: rgba(246, 240, 232, 0.64);
}

.home-page .curated-card,
.home-page .list-product-card,
.home-page .range-panel {
  border-radius: 18px;
  border-color: rgba(214, 179, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(13, 10, 14, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.home-page .curated-card {
  min-height: 520px;
  grid-template-rows: 260px 1fr;
}

.home-page .curated-image,
.home-page .list-product-image {
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(239, 232, 219, 0.86));
}

.home-page .curated-photo,
.home-page .list-product-photo {
  object-fit: contain;
  object-position: center center;
}

.home-page .promo-section {
  width: min(calc(100% - clamp(28px, 8vw, 112px)), 1480px);
  margin: clamp(22px, 4vw, 54px) auto;
  border-radius: 22px;
}

.home-body .product-modal {
  width: min(1120px, calc(100vw - 28px));
}

.home-body .product-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.home-body .modal-card {
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  border-radius: 22px;
  border-color: rgba(214, 179, 106, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(11, 8, 12, 0.94);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

.home-body .modal-visual {
  height: clamp(360px, 52vh, 560px);
  max-height: none;
  padding: clamp(20px, 3vw, 38px);
  border-radius: 18px;
  border-color: rgba(255, 252, 244, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), rgba(239, 232, 219, 0.88));
}

.home-body .modal-photo {
  position: static;
  inset: auto;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.home-body .modal-copy {
  align-content: center;
  gap: 14px;
}

.home-body .modal-copy h2 {
  max-width: 15ch;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 1;
  text-wrap: balance;
}

.home-body .modal-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-body .modal-detail-list div {
  grid-template-columns: 1fr;
  min-height: 72px;
}

.home-body .modal-badges span {
  border-color: rgba(214, 179, 106, 0.22);
  background: rgba(214, 179, 106, 0.1);
}

@media (max-width: 1280px) {
  .home-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-page .use-case-grid,
  .home-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-page .hero-panel,
  .home-body .modal-card {
    grid-template-columns: 1fr;
  }

  .home-page .hero-panel {
    min-height: auto;
  }

  .home-page .hero-list {
    grid-template-columns: 1fr;
  }

  .home-page .toolbar {
    grid-template-columns: 1fr;
  }

  .home-body .modal-copy {
    align-content: start;
  }

  .home-body .modal-detail-list {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .hero,
  .home-page .section,
  .home-page .showcase-section,
  .home-page .story-section {
    width: 100%;
  }

  .home-page .hero {
    padding: 14px 12px 30px;
  }

  .home-page .hero-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .home-page .hero-copy {
    max-width: 330px;
  }

  .home-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.6vw, 3rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .home-page .hero-copy p:not(.eyebrow),
  .home-page .hero-list,
  .home-page .hero-actions {
    max-width: 100%;
  }

  .home-page .hero-copy {
    max-width: 100%;
  }

  .home-page .hero-art {
    min-height: auto;
  }

  .home-page .hero-product-stage {
    min-height: auto;
    padding: 14px;
  }

  .home-page .hero-product-stack {
    position: static;
    display: grid;
    gap: 12px;
  }

  .home-page .hero-product-card {
    position: static;
    width: 100%;
    min-height: 132px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    padding: 12px;
  }

  .home-page .hero-product-photo {
    width: 112px;
    height: 112px;
    grid-row: 1 / span 2;
  }

  .home-page .hero-product-card span,
  .home-page .hero-product-card strong {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-page .hero-product-card strong {
    font-size: 0.92rem;
    line-height: 1.24;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .hero-range-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .home-page .highlight-strip,
  .home-page .stats-grid,
  .home-page .section,
  .home-page .showcase-section,
  .home-page .story-section,
  .home-page .promo-section {
    width: calc(100% - 24px);
  }

  .home-page .section {
    padding-block: 34px;
  }

  .home-page .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .home-page .section-intro {
    max-width: 330px;
  }

  .home-page .use-case-grid {
    grid-template-columns: 1fr;
  }

  .home-page .use-case-card {
    min-height: 158px;
    padding: 18px;
  }

  .home-page .product-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 590px;
    grid-template-rows: 236px auto minmax(198px, 1fr) auto;
    padding: 14px;
  }

  .home-page .product-image {
    height: 236px;
    padding: 14px;
  }

  .home-page .product-actions {
    grid-template-columns: 1fr;
  }

  .compare-tray {
    left: 12px;
    right: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .compare-tray-actions,
  .compare-footer {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .compare-dialog {
    width: calc(100vw - 20px);
    max-height: 92vh;
  }

  .compare-panel {
    max-height: 92vh;
    padding: 16px;
    border-radius: 18px;
  }

  .compare-heading {
    padding-right: 48px;
  }

  .compare-card {
    grid-template-rows: 190px auto 1fr auto;
  }

  .home-page .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .home-page .filter-chip {
    white-space: nowrap;
  }

  .home-page .curated-card,
  .home-page .compact-curated-grid .curated-card {
    min-height: 480px;
    grid-template-rows: 230px 1fr;
  }

  .home-body .product-modal {
    width: calc(100vw - 20px);
  }

  .home-body .modal-card {
    padding: 14px;
    border-radius: 18px;
  }

  .home-body .modal-visual {
    height: min(420px, 92vw);
    padding: 16px;
  }

  .home-body .modal-copy h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }
}

/* Mobile UX repair pass */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.load-more-button[hidden] {
  display: none;
}

.compare-mobile-hint {
  display: none;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

body.modal-open {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
  }

  .site-header .brand {
    min-width: 0;
    width: auto;
  }

  .site-header .brand span:last-child {
    display: inline;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .home-page .hero {
    padding-top: clamp(26px, 7vw, 46px);
  }

  .home-page .toolbar {
    gap: 14px;
  }

  .home-page .search-box input,
  .home-page .select-box select {
    min-height: 52px;
    font-size: 1rem;
  }

  .home-page .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    margin-inline: -12px;
    padding: 0 12px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .home-page .filter-chip {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    min-height: 48px;
    padding-inline: 18px;
    border-radius: 999px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .home-page .catalog-meta {
    align-items: flex-start;
    gap: 12px;
  }

  .home-page .catalog-meta .text-button {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .home-page .hero-panel {
    margin-top: 6px;
    padding: 22px 18px;
  }

  .home-page .hero-copy {
    max-width: none;
  }

  .home-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 3.1rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .home-page .hero-copy p:not(.eyebrow),
  .home-page .hero-list,
  .home-page .hero-actions {
    max-width: none;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .hero-actions .button {
    min-height: 58px;
    justify-content: center;
  }

  .home-page .hero-product-stage {
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .home-page .hero-product-stack {
    display: grid;
    gap: 12px;
  }

  .home-page .hero-product-card {
    min-height: 136px;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    overflow: visible;
  }

  .home-page .hero-product-card span,
  .home-page .hero-product-card strong,
  .home-page .hero-range-card span,
  .home-page .hero-range-card strong {
    position: relative;
    z-index: 2;
  }

  .home-page .hero-product-card strong {
    overflow: visible;
    display: block;
    -webkit-line-clamp: initial;
  }

  .home-page .hero-range-card {
    margin-top: 0;
  }

  .product-modal {
    width: calc(100vw - 14px);
    max-height: calc(100dvh - 18px);
  }

  .home-body .modal-card {
    max-height: calc(100dvh - 18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: 58px;
  }

  .home-body .product-modal .modal-close {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    z-index: 10;
    min-width: 52px;
    min-height: 52px;
    border-radius: 16px;
  }

  .compare-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 18px);
  }

  .compare-panel {
    max-height: calc(100dvh - 18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px 14px 16px;
  }

  .compare-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    z-index: 8;
    min-width: 52px;
    min-height: 52px;
  }

  .compare-heading {
    padding-right: 0;
  }

  .compare-mobile-hint {
    display: block;
  }

  .compare-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -8px;
    padding: 4px 8px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .compare-card {
    flex: 0 0 min(280px, 82vw);
    grid-template-rows: 210px auto auto auto;
    min-height: auto;
    scroll-snap-align: start;
  }

  .compare-image {
    min-height: 0;
    height: 210px;
  }

  .compare-spec-list {
    gap: 8px;
  }

  .compare-spec-list div {
    min-height: auto;
    padding: 10px;
  }
}

.cart-button.has-items {
  border-color: rgba(214, 179, 106, 0.5);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.16), rgba(200, 111, 74, 0.12)),
    rgba(255, 255, 255, 0.065);
}

.cart-button.pulse span,
.header-cart-link.pulse span {
  animation: pulsePop 460ms ease;
}

.mobile-menu [data-cart-count] {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hot), var(--lava));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.cart-field {
  display: grid;
  gap: 8px;
}

.cart-field span,
.modal-cart-panel span {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-field input,
.cart-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(13, 10, 16, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 850;
}

.cart-field select option {
  background: #171118;
  color: var(--text);
}

.modal-cart-panel {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(96px, 0.4fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.075), rgba(255, 255, 255, 0.03));
}

.modal-cart-panel .button {
  grid-column: 1 / -1;
}

.modal-cart-panel [hidden] {
  display: none;
}

.home-page .product-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .product-actions .cart-add-button {
  grid-column: 1 / -1;
}

.product-page-actions {
  grid-template-columns: minmax(120px, 0.58fr) repeat(3, minmax(130px, 1fr));
  align-items: end;
}

.product-page-actions .cart-field input {
  min-height: 48px;
}

.product-page-actions .button {
  width: 100%;
  min-height: 48px;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

@media (max-width: 760px) {
  .modal-cart-panel,
  .product-page-actions {
    grid-template-columns: 1fr;
  }

  .home-page .product-actions {
    grid-template-columns: 1fr;
  }

  .home-page .product-actions .cart-add-button {
    grid-column: auto;
  }
}

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

/* =========================================================
   2026 REFRESH LAYER — calm, editorial, soothing
   Appended last so it settles the site-wide look.
   ========================================================= */

/* ---- Header & navigation: quieter, more legible ---- */
.brand {
  font-weight: 600;
  letter-spacing: 0.14em;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cart-button {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cart-button span {
  background: linear-gradient(135deg, var(--gold-strong), #c69f57);
  color: var(--ink);
  font-weight: 600;
}

/* ---- Small labels & chips: drop the shout ---- */
.product-category,
.variant-count,
.product-category-name,
.curated-copy > span,
.curated-tag,
.list-product-card span,
.range-panel span,
.catalog-discount,
.card-discount-tag,
.mini-metrics span,
.floating-card span,
.hero-range-card span {
  font-weight: 600;
  letter-spacing: 0.14em;
}

.product-category {
  color: var(--muted);
  border-color: rgba(214, 179, 106, 0.22);
}

.product-meta span {
  font-weight: 500;
}

.catalog-mrp {
  font-weight: 500;
}

/* ---- Product image tile: remove the hard white ring ---- */
.product-image {
  max-width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.9), transparent 0 34%, transparent 66%),
    linear-gradient(150deg, rgba(255, 253, 247, 0.97), rgba(240, 233, 221, 0.9));
}

.card-discount-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), #c69f57);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.product-card h3 {
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.92rem;
}

/* ---- Curated / list image tiles: softer borders ---- */
.curated-image,
.list-product-image,
.home-page .curated-image,
.home-page .list-product-image {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.curated-copy h3,
.list-product-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
}

.list-product-card {
  grid-template-columns: 112px 1fr;
}

/* ---- Promo / range headings back to the calm serif ---- */
.promo-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
}

.range-panel strong {
  font-family: var(--font-serif);
  font-weight: 500;
}

/* ---- Section headings & intros: airy and readable ---- */
.section {
  padding-top: clamp(28px, 5vw, 64px);
}

.section-intro {
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Use-case cards: calmer copy ---- */
.use-case-count,
.use-case-index {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.use-case-copy strong {
  font-family: var(--font-sans);
  font-weight: 600;
}

/* ---- Toolbar labels ---- */
.search-box,
.select-box {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ---- Modal (the product view): one primary action, quiet rest ---- */
.home-body .modal-visual {
  border-color: rgba(255, 255, 255, 0.16);
}

.modal-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
}

.modal-cart-panel {
  margin-top: 6px;
}

/* Secondary modal actions become quiet, bordered links */
#modalDetailsLink.button,
#modalCompareButton.button {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
  font-weight: 500;
}

#modalDetailsLink.button:hover,
#modalCompareButton.button:hover {
  border-color: rgba(214, 179, 106, 0.42);
  background: rgba(214, 179, 106, 0.1);
}

.modal-inquiry-actions .inquiry-button {
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.modal-inquiry-actions .inquiry-button:hover {
  border-color: rgba(214, 179, 106, 0.42);
  background: rgba(214, 179, 106, 0.1);
}

/* ---- Footer: calm and legible ---- */
.footer-links a {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-footer {
  color: var(--muted);
}

/* ---- Hero list ticks a touch softer ---- */
.hero-list li::before {
  box-shadow: 0 0 10px rgba(214, 179, 106, 0.4);
}

/* ---- Gentle background: quieter grid ---- */
.ambient {
  opacity: 0.7;
}

/* ---- Hero art: replace the overlapping collage with a calm grid ---- */
.home-page .hero-art {
  position: relative;
  min-height: 0;
}

.home-page .hero-product-stage {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2vw, 24px);
  align-content: center;
  min-height: clamp(380px, 44vw, 540px);
  overflow: hidden;
}

.home-page .hero-product-stack {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-page .hero-product-card,
.home-page .hero-product-card-1,
.home-page .hero-product-card-2,
.home-page .hero-product-card-3 {
  position: static;
  inset: auto;
  width: auto;
  min-height: 0;
  margin: 0;
  transform: none;
  animation: none;
}

.home-page .hero-product-card-3 {
  grid-column: 1 / -1;
}

.home-page .hero-product-card-3 .hero-product-photo {
  height: 190px;
}

.home-page .hero-range-card {
  position: static;
  inset: auto;
  width: auto;
  display: grid;
  gap: 4px;
}

/* Remove the floating overlay labels that caused the clutter/cut-off text */
.home-page .floating-card {
  display: none;
}

/* ---- Modal action buttons: sentence case, calmer ---- */
.modal-inquiry-actions .inquiry-button,
.compare-modal-button,
#modalCompareButton {
  text-transform: none;
  letter-spacing: 0.01em;
}

/* ---- Hero art: single-column, horizontal cards on mobile ---- */
@media (max-width: 720px) {
  .home-page .hero-product-stack {
    grid-template-columns: 1fr;
  }
  .home-page .hero-product-card-3 {
    grid-column: auto;
  }
  .home-page .hero-product-card .hero-product-photo,
  .home-page .hero-product-card-3 .hero-product-photo {
    height: 116px;
  }
}

/* ---- Product-detail related cards: whole card is the link now ---- */
.related-card {
  grid-template-rows: 280px auto minmax(40px, auto) auto;
  cursor: pointer;
}

.related-card:hover {
  border-color: rgba(214, 179, 106, 0.32);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.related-card p {
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.related-image {
  border-color: rgba(255, 255, 255, 0.14);
}

/* Remaining related-button (in the compare section) reads calmly */
.related-button {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.related-button:hover {
  background: rgba(214, 179, 106, 0.1);
}

/* Related card no longer holds a button row — tighten its height */
.product-detail-page .related-card {
  min-height: auto;
  grid-template-areas:
    "image tag"
    "image title"
    "image price";
  align-items: center;
}

/* ---- Unify the primary CTA: calm warm gold (drop the magenta end) ---- */
.button-primary,
.home-page .button-primary,
.home-body .product-modal .button-primary,
.product-detail-page .button-primary {
  background: linear-gradient(135deg, #efd398, #cda45e);
  border-color: rgba(214, 179, 106, 0.3);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(198, 159, 87, 0.18);
}

.button-primary:hover,
.home-page .button-primary:hover,
.home-body .product-modal .button-primary:hover {
  filter: brightness(1.04);
  box-shadow: 0 16px 40px rgba(198, 159, 87, 0.24);
}

/* =========================================================
   SIMPLIFY PASS — plain meta text, consistent tags/spacing
   ========================================================= */

/* Net qty / pack now render as one quiet caption line, not buttons */
.product-meta {
  display: block;
  align-self: start;
  margin: 2px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Consistent small tags on cards (category + sizes) */
.product-category,
.variant-count {
  min-height: 26px;
  padding: 0 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.variant-count {
  color: var(--muted);
  border-color: rgba(214, 179, 106, 0.2);
}

/* Card: keep Add to Cart pinned to the bottom (aligned across the row),
   but use a flex column for copy so chips/text can't stretch vertically */
.product-card {
  min-height: 460px;
  grid-template-rows: 240px auto minmax(0, 1fr) auto;
  gap: 14px;
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.product-copy .catalog-price-row {
  margin-top: 4px;
}

/* Featured row flows straight into the shop grid with even rhythm */
.home-page .featured-section {
  padding-bottom: clamp(20px, 3vw, 36px);
}

/* =========================================================
   QUICK-VIEW MODAL — compact, CTA above the fold
   ========================================================= */
.home-body .modal-card {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  max-height: 92vh;
  min-height: 0;
  padding: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}

.home-body .modal-visual {
  height: auto;
  min-height: 0;
  max-height: 62vh;
  align-self: center;
  padding: clamp(14px, 2vw, 26px);
  border-color: rgba(255, 255, 255, 0.14);
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.modal-copy .eyebrow {
  margin: 0;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

/* Price front and centre, no boxes */
.modal-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 2px;
}

.modal-price strong {
  color: var(--gold-strong);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.modal-mrp {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.modal-off {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.14);
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.modal-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-specs {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
}

.modal-specs[hidden] {
  display: none;
}

/* Buy row: quantity + Add to Cart side by side, no surrounding box */
.modal-cart-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.modal-buy-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: end;
}

.modal-qty-field {
  display: grid;
  gap: 6px;
}

.modal-qty-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-buy-row .button-primary {
  width: 100%;
  min-height: 52px;
}

.modal-cart-panel .cart-field span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Single quiet secondary action */
.modal-details-link {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  align-self: flex-start;
  border-bottom: 1px solid rgba(214, 179, 106, 0.4);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.modal-details-link:hover {
  color: var(--gold-strong);
  border-color: var(--gold-strong);
}

@media (max-width: 720px) {
  .home-body .modal-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-height: 92vh;
    overflow: auto;
    gap: 14px;
    padding: 16px;
  }
  .home-body .modal-visual {
    max-height: 32vh;
    align-self: stretch;
  }
  .modal-copy {
    overflow: visible;
  }
  .modal-copy h2 {
    font-size: 1.5rem;
  }
  .modal-buy-row {
    grid-template-columns: 76px 1fr;
  }
}

/* =========================================================
   PRODUCT PAGE REDESIGN - flat, modern, icon-led (2026)
   ========================================================= */
.product-detail-page {
  --pdp-max: 1340px;
}

.pdp-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ---- Breadcrumb ---- */
.product-detail-page .product-breadcrumb {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 40px) 0;
}

/* ---- Hero ---- */
.pdp-hero {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: clamp(14px, 2.6vw, 30px) clamp(16px, 4vw, 40px) clamp(20px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 84px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
}

.pdp-gallery .gallery-main {
  height: clamp(400px, 44vw, 560px);
  max-height: 70vh;
}

.pdp-gallery .gallery-thumbs {
  max-height: clamp(400px, 44vw, 560px);
}

/* ---- Buy column (flat, no box) ---- */
.pdp-buy {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pdp-buy .eyebrow {
  margin: 0;
}

.pdp-buy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.pdp-buy .price-stack {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 2px 0;
}

.pdp-buy .detail-price {
  color: var(--gold-strong);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pdp-buy .detail-mrp {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: line-through;
}

.pdp-buy .discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.14);
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pdp-buy .product-subtitle {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1.02rem;
}

.pdp-buy .pdp-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Icon facts ---- */
.pdp-facts {
  list-style: none;
  margin: 4px 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pdp-facts li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pdp-facts .pdp-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.pdp-fact-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.pdp-fact-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-fact-value {
  color: var(--text);
  font-weight: 500;
}

/* ---- Variant selector ---- */
.product-detail-page .variant-panel {
  display: grid;
  gap: 8px;
  margin: 2px 0;
}

.product-detail-page .variant-panel > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Actions ---- */
.pdp-actions {
  display: grid;
  grid-template-columns: 88px 1fr 1fr;
  gap: 10px;
  align-items: end;
  margin-top: 6px;
}

.pdp-qty {
  display: grid;
  gap: 6px;
}

.pdp-qty span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-actions .button {
  min-height: 52px;
  width: 100%;
}

/* ---- Enquire links (quiet, icon) ---- */
.pdp-enquire {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 2px;
}

.pdp-enquire-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.pdp-enquire-link:hover {
  color: var(--gold-strong);
}

.pdp-enquire-link .pdp-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ---- Content body (readable column, flat sections) ---- */
.pdp-body {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.pdp-section {
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid var(--line);
}

.pdp-section > h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.pdp-section > h2 .pdp-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* Benefits */
.pdp-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.pdp-benefits li {
  display: flex;
  gap: 12px;
}

.pdp-benefits .pdp-icon {
  color: var(--gold);
  margin-top: 1px;
}

.pdp-benefits strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.pdp-benefits span {
  color: var(--muted);
  line-height: 1.6;
}

/* Uses */
.pdp-uses {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pdp-uses li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.pdp-uses .pdp-icon {
  color: var(--gold);
}

/* Steps */
.pdp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.pdp-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pdp-step-num {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--gold-strong);
  font-weight: 600;
  font-size: 0.9rem;
}

.pdp-steps p {
  margin: 0;
  padding-top: 3px;
  color: var(--muted);
  line-height: 1.6;
}

/* Ingredients + storage two-col */
.pdp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 44px);
}

.pdp-two-col .pdp-subsection h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.pdp-two-col .pdp-subsection h2 .pdp-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.product-detail-page .ingredient-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-page .ingredient-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
}

.product-detail-page #storageText {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Product details - clean spec rows, no boxes */
.pdp-specs {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 0;
  border-bottom: 1px solid var(--line);
}

.pdp-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.pdp-specs dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pdp-specs dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

/* FAQ - flat accordion */
.pdp-body .faq-list {
  display: grid;
  gap: 0;
}

.pdp-body .faq-item {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.pdp-body .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.pdp-body .faq-item summary::-webkit-details-marker {
  display: none;
}

.pdp-body .faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.pdp-body .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.pdp-body .faq-item p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

/* Compare / related sections - centered, consistent */
.product-detail-page .detail-section {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px) clamp(16px, 4vw, 40px);
}

.product-detail-page .detail-section .section-heading {
  margin-bottom: 20px;
}

.product-detail-page .detail-section .section-heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .pdp-hero {
    grid-template-columns: 1fr;
  }
  .pdp-gallery {
    position: static;
  }
  .pdp-uses,
  .pdp-two-col {
    grid-template-columns: 1fr;
  }
  .pdp-actions {
    grid-template-columns: 72px 1fr;
  }
  .pdp-actions .button-secondary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .pdp-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pdp-gallery {
    grid-template-columns: 72px minmax(0, 1fr);
  }
}

.product-detail-page .ingredient-chip-list.as-prose {
  display: block;
}
.product-detail-page .ingredient-chip-list.as-prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .pdp-gallery {
    grid-template-columns: 1fr;
  }
  .product-detail-page .pdp-gallery .gallery-main {
    grid-column: 1;
    grid-row: 1;
    height: clamp(300px, 78vw, 440px);
    max-height: none;
  }
  .product-detail-page .pdp-gallery .gallery-thumbs {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 62px;
    grid-auto-rows: 62px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0;
  }
}

/* =========================================================
   Shared nav states + mobile toggle animation
   ========================================================= */
.nav a.active {
  background: rgba(214, 179, 106, 0.16);
  color: var(--text);
}

.header-cart-link.active {
  border-color: rgba(214, 179, 106, 0.5);
}

/* =========================================================
   Cart page
   ========================================================= */
.cart-main {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px) clamp(16px, 4vw, 44px) clamp(56px, 8vw, 96px);
}

.cart-head {
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.cart-head h1 {
  margin: 6px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.02;
}

.cart-head .cart-sub {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}

.cart-layout[hidden],
.cart-summary[hidden],
.cart-empty[hidden] {
  display: none;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: clamp(88px, 12vw, 128px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(12px, 1.6vw, 18px);
  border-radius: var(--radius-md);
}

.cart-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 252, 244, 0.97), rgba(238, 231, 219, 0.85));
  overflow: hidden;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-media .image-empty {
  color: rgba(20, 14, 18, 0.5);
  font-weight: 950;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.cart-item-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
  min-width: 0;
}

.cart-item-info {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.cart-item-name {
  color: var(--text);
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.25;
  transition: color 160ms var(--ease);
}

.cart-item-name:hover {
  color: var(--accent-strong);
}

.cart-item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-item-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.cart-item-meta-list p {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-item-meta-list span {
  color: rgba(246, 240, 232, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cart-item-price strong {
  color: var(--accent-strong);
  font-size: 1.02rem;
  font-weight: 900;
}

.cart-item-mrp {
  color: rgba(246, 240, 232, 0.45);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.qty-btn:hover {
  background: rgba(214, 179, 106, 0.16);
  color: var(--accent-strong);
}

.qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cart-item-line {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.cart-line-total {
  font-weight: 900;
  font-size: 1.02rem;
}

.cart-remove {
  border: none;
  background: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms var(--ease);
}

.cart-remove:hover {
  color: var(--lava);
  text-decoration: underline;
}

.cart-summary {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 28px);
}

.cart-summary h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.cart-summary-rows {
  margin: 0;
  display: grid;
  gap: 0;
}

.cart-summary-rows > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary-rows dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-summary-rows dd {
  margin: 0;
  font-weight: 700;
}

.cart-summary-rows .cart-savings dd {
  color: #7bbf8f;
}

.cart-summary-rows .cart-total-row {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-summary-rows .cart-total-row dt {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.cart-summary-rows .cart-total-row dd {
  color: var(--accent-strong);
  font-size: 1.4rem;
  font-weight: 900;
}

.cart-summary-actions {
  display: grid;
  gap: 10px;
}

.cart-summary-actions .button {
  width: 100%;
  min-height: 48px;
}

.cart-summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cart-continue {
  justify-self: center;
  min-height: 40px;
  padding: 0 14px;
}

.cart-summary > .cart-continue {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(20, 17, 16, 0.76);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cart-summary > .cart-continue:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 179, 106, 0.58);
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(24, 20, 18, 0.86);
  color: var(--accent);
}

.cart-empty {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  max-width: 460px;
  margin: clamp(30px, 6vw, 70px) auto;
}

.cart-empty-glyph {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(214, 179, 106, 0.08);
  color: var(--accent-strong);
}

.cart-empty-glyph svg {
  width: 36px;
  height: 36px;
}

.cart-empty h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-empty .button {
  margin-top: 6px;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-item-body {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================
   Home hero flourishes (accent, trust row, marquee)
   ========================================================= */
.home-page .hero-copy h1 .hero-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #f7dc95, #e6a35a 46%, #b85a63);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.home-page .hero-copy h1 .hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247, 220, 149, 0.9), rgba(184, 90, 99, 0.6));
}

.home-page .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(18px, 3vw, 34px);
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: clamp(14px, 2vw, 18px) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.home-page .hero-trust li {
  display: grid;
  gap: 2px;
}

.home-page .hero-trust strong {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--accent-strong);
  line-height: 1;
}

.home-page .hero-trust span {
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-page .hero-marquee {
  margin-top: clamp(14px, 2vw, 22px);
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.home-page .hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  white-space: nowrap;
  animation: heroMarquee 34s linear infinite;
  will-change: transform;
}

.home-page .hero-marquee-track span {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: rgba(246, 240, 232, 0.42);
}

.home-page .hero-marquee-track i {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-style: normal;
}

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-marquee-track {
    animation: none;
  }
}

/* =========================================================
   About / Contact brand pages
   ========================================================= */
.brand-main {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 44px) clamp(56px, 8vw, 96px);
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 60px);
  background:
    radial-gradient(circle at 12% 14%, rgba(214, 179, 106, 0.16), transparent 0 26%, transparent 58%),
    linear-gradient(135deg, rgba(158, 63, 85, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.brand-hero-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  text-wrap: balance;
}

.brand-hero-copy h1 .hero-accent {
  background: linear-gradient(120deg, #f7dc95, #e6a35a 46%, #b85a63);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.brand-hero-copy p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.brand-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-stats li {
  display: grid;
  gap: 4px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.brand-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--accent-strong);
  line-height: 1;
}

.brand-stats span {
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.84rem;
  font-weight: 600;
}

.brand-section {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

.brand-section-head {
  max-width: 720px;
}

.brand-section-head .eyebrow {
  margin-bottom: 10px;
}

.brand-section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.brand-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.brand-value-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: var(--radius-md);
}

.brand-value-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.brand-value-icon svg {
  width: 24px;
  height: 24px;
}

.brand-value-card h3 {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.brand-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.brand-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 48px);
}

.brand-split-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(214, 179, 106, 0.2), transparent 0 30%, transparent 64%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.brand-split-media img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  border-radius: 20px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(214, 179, 106, 0.2);
}

.brand-split-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.brand-split-copy p {
  margin: 0 0 12px;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.brand-split-copy .button {
  margin-top: 8px;
}

.brand-details {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.brand-details-card {
  padding: clamp(20px, 2.6vw, 32px);
  border-radius: var(--radius-md);
}

.brand-details-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.brand-cta-card {
  display: grid;
  align-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 84% 12%, rgba(214, 179, 106, 0.18), transparent 0 34%, transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.brand-cta-card h2 {
  margin: 0;
}

.brand-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact page */
.contact-hero {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.contact-hero .brand-hero-copy {
  max-width: 720px;
}

.contact-hero p {
  margin-inline: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.contact-card {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: var(--radius-md);
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 179, 106, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-card strong {
  font-size: 1.05rem;
  color: var(--text);
  word-break: break-word;
}

.contact-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-address {
  margin: 0 0 18px;
  color: var(--text);
  font-style: normal;
  line-height: 1.7;
}

.contact-address strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-strong);
}

.contact-map {
  gap: 6px;
  color: var(--text);
  text-align: center;
}

.contact-map-pin {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.contact-map-pin svg {
  width: 30px;
  height: 30px;
}

.contact-map strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.contact-map span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .brand-hero,
  .brand-split {
    grid-template-columns: 1fr;
  }

  .brand-split-copy {
    order: 2;
  }
}

/* =========================================================
   Mobile overflow containment (hero + header)
   ========================================================= */
@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  .home-page,
  .home-page .hero,
  .home-page .hero-panel,
  .home-page .hero-copy,
  .home-page .hero-art,
  .home-page .hero-product-stage,
  .home-page .hero-product-stack,
  .home-page .hero-product-card,
  .home-page .hero-trust,
  .home-page .hero-marquee {
    min-width: 0;
    max-width: 100%;
  }

  .home-page .hero-product-card {
    overflow: hidden;
  }

  .home-page .hero-trust {
    flex-wrap: wrap;
  }

  .home-page .hero-marquee {
    overflow: hidden;
  }
}

/* =========================================================
   Missed polish pass: responsive specificity + touch targets
   ========================================================= */
.icon-button,
.cart-button,
.brand {
  min-width: 44px;
  min-height: 44px;
}

.home-page .filter-chip,
.home-page .text-button,
.modal-details-link,
.pdp-enquire-link {
  min-height: 44px;
}

.modal-details-link,
.pdp-enquire-link {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-toggle,
.mobile-menu-toggle:hover,
.mobile-menu-toggle:active,
.mobile-menu-toggle.is-open,
.mobile-menu-toggle[aria-expanded="true"] {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 999px;
  background: rgba(13, 10, 11, 0.78);
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  overflow: hidden;
  position: relative;
  transition:
    border-color 160ms var(--ease),
    background-color 160ms var(--ease),
    box-shadow 160ms var(--ease),
    transform 160ms var(--ease);
}

@media (min-width: 861px) {
  .mobile-menu-toggle,
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:active,
  .mobile-menu-toggle.is-open,
  .mobile-menu-toggle[aria-expanded="true"] {
    display: none;
  }
}

.mobile-menu-toggle *,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.is-open,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: rgba(214, 179, 106, 0.5);
  background: rgba(18, 14, 15, 0.9);
}

.mobile-menu-toggle:active {
  background: rgba(13, 10, 11, 0.88);
  border-color: rgba(214, 179, 106, 0.42);
  transform: none;
}

.mobile-menu-toggle:focus {
  outline: none;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid rgba(240, 215, 154, 0.82);
  outline-offset: 3px;
}

.mobile-menu-toggle span:first-child {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: none;
  transform: none;
  transition: background-color 160ms var(--ease);
}

.mobile-menu-toggle span:first-child::before,
.mobile-menu-toggle span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms var(--ease),
    top 180ms var(--ease),
    opacity 180ms var(--ease);
}

.mobile-menu-toggle span:first-child::before {
  top: -6px;
}

.mobile-menu-toggle span:first-child::after {
  top: 6px;
}

.mobile-menu-toggle span + span {
  display: none;
}

.mobile-menu-toggle.is-open span:first-child,
.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  background: transparent;
  transform: none;
}

.mobile-menu-toggle.is-open span + span,
.mobile-menu-toggle[aria-expanded="true"] span + span {
  display: none;
  transform: none;
}

.mobile-menu-toggle.is-open span:first-child::before,
.mobile-menu-toggle[aria-expanded="true"] span:first-child::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-open span:first-child::after,
.mobile-menu-toggle[aria-expanded="true"] span:first-child::after {
  top: 0;
  transform: rotate(-45deg);
}

.product-detail-page .pdp-actions {
  grid-template-columns: minmax(76px, 88px) minmax(0, 1fr) minmax(0, 1fr);
}

.product-detail-page .pdp-qty,
.product-detail-page .pdp-actions .button {
  min-width: 0;
}

.product-detail-page .pdp-enquire-link {
  padding: 0 2px;
}

@media (max-width: 1080px) {
  .home-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .toolbar {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 560px;
    grid-template-rows: 220px auto minmax(0, 1fr) auto;
  }

  .home-page .product-image {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header .brand span:last-child {
    max-width: min(46vw, 160px);
  }

  .home-page .product-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 0;
    grid-template-rows: minmax(210px, auto) auto auto;
  }

  .home-page .product-copy {
    min-height: 0;
  }

  .home-page .product-image {
    height: min(230px, 62vw);
  }

  .product-detail-page .pdp-actions {
    grid-template-columns: 1fr;
  }

  .product-detail-page .pdp-actions .button-secondary {
    grid-column: auto;
  }

  .product-detail-page .pdp-qty input {
    min-height: 52px;
  }

  .product-detail-page .pdp-enquire {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-detail-page .pdp-enquire-link {
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(214, 179, 106, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .product-detail-page .product-breadcrumb a,
  .site-footer .footer-links a,
  .site-footer .footer-contact a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* =========================================================
   Ecommerce flow polish: cart, checkout, tracking, pending
   ========================================================= */
.cart-summary-links,
.payment-pending-actions,
.track-detail-actions {
  display: grid;
  gap: 10px;
}

.cart-summary-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cart-summary-links .text-button,
.checkout-form-wrap .text-button,
.track-detail-actions .button,
.payment-pending-actions .button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-summary-links .text-button {
  padding: 0 14px;
  border-radius: 14px;
  border-color: rgba(214, 179, 106, 0.24);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
}

.cart-summary-links .text-button:hover {
  border-color: rgba(214, 179, 106, 0.5);
  background: rgba(214, 179, 106, 0.12);
}

.cart-item-price {
  flex-wrap: wrap;
}

.cart-item-price > span,
.cart-item-line > span:first-child,
.checkout-line-info small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-form-wrap,
.track-form-wrap,
.track-result,
.payment-pending-card {
  padding: clamp(20px, 2.8vw, 32px);
  border-radius: var(--radius-lg);
}

.track-placeholder {
  min-height: 96px;
  display: flex;
  align-items: center;
}

.track-placeholder p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.checkout-form-wrap h2,
.track-form-wrap h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

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

.field,
.checkout-form-wrap form,
.track-form-wrap form {
  display: grid;
  gap: 10px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field i {
  color: var(--accent-strong);
  font-style: normal;
}

.field small {
  color: color-mix(in srgb, var(--muted), transparent 24%);
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

.checkout-submit {
  width: 100%;
  margin-top: 16px;
}

.form-error {
  margin: 10px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 128, 128, 0.3);
  border-radius: 14px;
  background: rgba(150, 40, 40, 0.16);
  color: #ffd8d8;
  line-height: 1.45;
}

.checkout-legal {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-line-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 14px;
  background: var(--surface-light);
  overflow: hidden;
}

.checkout-line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-line-qty {
  position: absolute;
  right: 4px;
  bottom: 4px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), #c69f57);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.checkout-line-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.checkout-line-info strong {
  color: var(--text);
  line-height: 1.25;
}

.checkout-line-info span {
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-line-total {
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.track-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}

.track-detail {
  display: grid;
  gap: 20px;
}

.track-detail-head,
.track-status-pair {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.track-detail-head h3 {
  margin: 4px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.track-meta,
.track-muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.track-status-chip,
.track-status-pair div {
  border: 1px solid rgba(214, 179, 106, 0.22);
  background: rgba(214, 179, 106, 0.08);
}

.track-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.track-status-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.track-status-pair div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 16px;
}

.track-status-pair span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-status-pair strong {
  color: var(--text);
}

.track-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.track-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.track-step.done .track-dot {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.track-step.current {
  color: var(--text);
  font-weight: 800;
}

.track-section {
  display: grid;
  gap: 10px;
}

.track-section h4 {
  margin: 0;
  color: var(--text);
}

.track-lines {
  display: grid;
  gap: 8px;
}

.track-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.track-line strong {
  color: var(--text);
  text-align: right;
}

.track-line-total strong {
  color: var(--accent-strong);
}

.payment-pending-main {
  min-height: min(720px, calc(100dvh - 80px));
  display: grid;
  align-items: center;
}

.payment-pending-card {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 179, 106, 0.14), transparent 0 30%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.payment-pending-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.payment-pending-copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.payment-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.payment-status-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-status-grid dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-status-grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-header .header-actions {
    display: flex;
  }

  .site-header .cart-button {
    min-width: 52px;
    padding: 0 10px;
    border-radius: 999px;
  }

  .site-header .cart-button span {
    min-width: 26px;
    height: 26px;
  }

  .track-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .field-grid,
  .track-status-pair,
  .payment-status-grid {
    grid-template-columns: 1fr;
  }

  .checkout-line {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .checkout-line-total {
    grid-column: 2;
  }

  .track-detail-head {
    display: grid;
  }

  .cart-item-controls {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .cart-summary-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Customer sticky nav + premium cart motion
   ========================================================= */
html {
  scroll-padding-top: calc(var(--site-header-offset, 76px) + 18px);
}

body.has-customer-header {
  padding-top: var(--site-header-offset, 76px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(18, 13, 16, 0.9), rgba(8, 6, 7, 0.76));
  border-bottom: 1px solid rgba(214, 179, 106, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(18, 13, 16, 0.96), rgba(8, 6, 7, 0.88));
  border-bottom-color: rgba(214, 179, 106, 0.28);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.cart-flyout {
  position: fixed;
  left: var(--cart-start-x);
  top: var(--cart-start-y);
  z-index: 220;
  width: var(--cart-flyout-size, 58px);
  height: var(--cart-flyout-size, 58px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: cartFlyToHeader 780ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
}

.cart-flyout img,
.cart-flyout-mark {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 207, 143, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.84), transparent 0 28%, transparent 62%),
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(226, 199, 137, 0.88));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.cart-flyout img {
  object-fit: contain;
  padding: 6px;
}

.cart-flyout-mark {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
}

.cart-flyout::after {
  content: var(--cart-flyout-count, "1");
  position: absolute;
  right: -7px;
  bottom: -6px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border: 1px solid rgba(236, 207, 143, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d795, #cda45e);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
}

.header-cart-link.cart-receive,
.cart-button.cart-receive {
  animation: cartReceive 620ms var(--ease);
}

@keyframes cartFlyToHeader {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
  14% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  58% {
    opacity: 1;
    transform: translate(calc(-50% + var(--cart-mid-x)), calc(-50% + var(--cart-mid-y))) scale(0.88);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--cart-end-x)), calc(-50% + var(--cart-end-y))) scale(0.34);
  }
}

@keyframes cartReceive {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  42% {
    transform: translateY(-2px) scale(1.045);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
  }

  .site-header .header-actions {
    display: flex;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand span:last-child {
    display: inline;
    max-width: min(38vw, 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .cart-button {
    min-width: 52px;
  }
}

@media (max-width: 560px) {
  .site-header .brand span:last-child {
    max-width: min(34vw, 132px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-flyout {
    display: none;
  }

  .header-cart-link.cart-receive,
  .cart-button.cart-receive,
  .cart-button.pulse span,
  .header-cart-link.pulse span {
    animation: none !important;
  }
}

/* Delivery estimate panels */
.delivery-estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.delivery-estimator-field {
  display: grid;
  gap: 7px;
}

.delivery-estimator-field span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-estimator input {
  width: 100%;
  min-height: 44px;
  border-color: rgba(214, 179, 106, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.delivery-estimator .mini-button {
  min-height: 44px;
  padding-inline: 16px;
  white-space: nowrap;
}

.delivery-estimate-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.delivery-estimate-message[data-state="success"] {
  color: #86d59b;
}

.delivery-estimate-message[data-state="error"] {
  color: #f08b8b;
}

/* =========================================================
   Homepage premium pantry hero
   ========================================================= */
.home-page .hero {
  padding: clamp(22px, 4vw, 48px) clamp(14px, 4vw, 56px) clamp(30px, 5vw, 56px);
}

.home-page .hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: clamp(520px, 62vh, 660px);
  padding: clamp(28px, 4.6vw, 64px);
  overflow: hidden;
  border-radius: 24px;
  border-color: rgba(214, 179, 106, 0.26);
  background:
    radial-gradient(circle at 72% 18%, rgba(238, 188, 111, 0.16), transparent 0 28%, transparent 56%),
    radial-gradient(circle at 16% 94%, rgba(205, 112, 86, 0.12), transparent 0 30%, transparent 62%),
    linear-gradient(110deg, rgba(4, 5, 5, 0.98) 0%, rgba(14, 12, 12, 0.95) 46%, rgba(22, 17, 15, 0.88) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.home-page .hero-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
}

.home-page .hero-copy .eyebrow {
  color: #e2ad66;
  letter-spacing: 0;
}

.home-page .hero-copy h1 {
  max-width: 12ch;
  margin: 18px 0 24px;
  padding-bottom: 0.24em;
  overflow: visible;
  color: #fbf6ef;
  font-size: clamp(3rem, 4.8vw, 4.85rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.home-page .hero-copy h1 .hero-accent {
  display: inline-block;
  padding-bottom: 0.1em;
  line-height: 1.05;
  background: linear-gradient(120deg, #f4c185, #f0a276 58%, #d87769);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.home-page .hero-copy h1 .hero-accent::after {
  display: none;
}

.home-page .hero-copy p:not(.eyebrow) {
  max-width: 56ch;
  color: rgba(246, 240, 232, 0.76);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.72;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

.home-page .hero-actions .button {
  min-width: min(250px, 100%);
  min-height: 66px;
  justify-content: center;
  border-radius: 12px;
  letter-spacing: 0;
}

.home-page .hero-actions .button-primary {
  background: linear-gradient(135deg, #f4d99b, #d8aa5b);
  color: #120c08;
  box-shadow: 0 18px 44px rgba(216, 170, 91, 0.2);
}

.home-page .hero-actions .button-secondary {
  color: #ecd394;
  border-color: rgba(214, 179, 106, 0.3);
  background: rgba(255, 255, 255, 0.035);
}

.home-page .hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(214, 179, 106, 0.18);
}

.home-page .hero-trust li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
}

.home-page .hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8aa5b;
  box-shadow: 0 0 18px rgba(216, 170, 91, 0.5);
}

.home-page .hero-trust span {
  color: rgba(246, 240, 232, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.38;
}

.home-page .hero-art {
  display: grid;
  align-items: center;
  min-height: 0;
}

.home-page .hero-product-stage {
  height: clamp(460px, 43vw, 560px);
  min-height: auto;
  align-content: stretch;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 24px;
  border-color: rgba(214, 179, 106, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(12, 10, 10, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.35);
}

.home-page .hero-product-stack {
  display: grid;
  grid-template-columns: minmax(190px, 1.12fr) repeat(2, minmax(170px, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 14px;
  height: 100%;
  min-height: 0;
}

.home-page .hero-product-card,
.home-page .hero-product-card-1,
.home-page .hero-product-card-2,
.home-page .hero-product-card-3,
.home-page .hero-product-card-4 {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-rows: minmax(128px, 1fr) auto;
  align-content: stretch;
  min-height: 0;
  width: auto;
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(214, 179, 106, 0.26);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 0 32%, transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(16, 16, 15, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  transform: none;
  animation: none;
}

.home-page .hero-product-card:hover,
.home-page .hero-product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(224, 179, 102, 0.58);
}

.home-page .hero-product-card-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.home-page .hero-product-card-2 {
  grid-column: 2;
  grid-row: 1;
}

.home-page .hero-product-card-3 {
  grid-column: 3;
  grid-row: 1;
}

.home-page .hero-product-card-4 {
  grid-column: 2 / 4;
  grid-row: 2;
  grid-template-columns: minmax(170px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  column-gap: 22px;
}

.home-page .hero-card-image {
  display: grid;
  place-items: center;
  min-height: 132px;
  min-width: 0;
}

.home-page .hero-card-copy {
  display: grid;
  align-content: end;
  gap: 7px;
  min-width: 0;
  padding: 10px 44px 0 0;
}

.home-page .hero-product-card-2,
.home-page .hero-product-card-3 {
  grid-template-rows: minmax(104px, 0.56fr) minmax(124px, auto);
}

.home-page .hero-product-card-2 .hero-card-image,
.home-page .hero-product-card-3 .hero-card-image {
  min-height: 104px;
  padding-bottom: 22px;
}

.home-page .hero-product-card-2 .hero-card-copy,
.home-page .hero-product-card-3 .hero-card-copy {
  align-content: start;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 179, 106, 0.12);
}

.home-page .hero-product-card-4 .hero-card-image {
  grid-column: 1;
  min-height: 170px;
}

.home-page .hero-product-card-4 .hero-card-copy {
  grid-column: 2;
  align-content: center;
  padding-right: 58px;
}

.home-page .hero-product-photo {
  width: 100%;
  height: clamp(112px, 10vw, 145px);
  padding: 4px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
}

.home-page .hero-product-card-2 .hero-product-photo,
.home-page .hero-product-card-3 .hero-product-photo {
  height: clamp(84px, 7.2vw, 102px);
  max-width: 88%;
}

.home-page .hero-product-card-2 .hero-card-copy strong,
.home-page .hero-product-card-3 .hero-card-copy strong {
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.22;
}

.home-page .hero-product-card-1 .hero-product-photo {
  height: clamp(210px, 22vw, 285px);
}

.home-page .hero-product-card-4 .hero-product-photo {
  height: clamp(130px, 13vw, 168px);
}

.home-page .hero-card-copy > span {
  color: #d8aa5b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .hero-card-copy strong {
  max-width: 18ch;
  min-width: 0;
  color: #fff8ee;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.24vw, 1.24rem);
  font-weight: 650;
  line-height: 1.24;
}

.home-page .hero-product-card em {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: #efd089;
  font-size: 1.55rem;
  font-style: normal;
  line-height: 1;
}

.home-page .hero-trust-strip {
  display: block;
  margin-top: clamp(20px, 3vw, 34px);
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-color: rgba(214, 179, 106, 0.18);
  background: rgba(5, 5, 5, 0.72);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.home-page .hero-trust-strip .hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  min-width: max-content;
  white-space: nowrap;
  animation: heroMarquee 28s linear infinite;
  will-change: transform;
}

.home-page .hero-trust-strip span {
  color: rgba(246, 240, 232, 0.76);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .hero-trust-strip i {
  color: rgba(216, 170, 91, 0.54);
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-trust-strip .hero-marquee-track {
    animation: none;
  }
}

@media (max-width: 1060px) {
  .home-page .hero-panel {
    grid-template-columns: 1fr;
  }

  .home-page .hero-copy {
    max-width: 760px;
  }

  .home-page .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    padding-inline: 12px;
  }

  .home-page .hero-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .home-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1.12;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .home-page .hero-trust {
    grid-template-columns: 1fr;
  }

  .home-page .hero-product-stage {
    height: auto;
    min-height: auto;
    padding: 14px;
  }

  .home-page .hero-product-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-page .hero-product-card,
  .home-page .hero-product-card-1,
  .home-page .hero-product-card-2,
  .home-page .hero-product-card-3,
  .home-page .hero-product-card-4 {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: minmax(98px, 126px) minmax(0, 1fr) 28px;
    grid-template-rows: auto auto;
    min-height: 140px;
    align-items: center;
    gap: 8px 14px;
    padding: 14px 16px;
  }

  .home-page .hero-card-image,
  .home-page .hero-product-card-4 .hero-card-image {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 112px;
  }

  .home-page .hero-product-photo,
  .home-page .hero-product-card-1 .hero-product-photo,
  .home-page .hero-product-card-3 .hero-product-photo,
  .home-page .hero-product-card-4 .hero-product-photo {
    width: 100%;
    height: 116px;
    object-fit: contain;
  }

  .home-page .hero-card-copy,
  .home-page .hero-product-card-4 .hero-card-copy {
    grid-column: 2;
    grid-row: 1 / 3;
    align-content: center;
    min-width: 0;
    padding: 0;
  }

  .home-page .hero-card-copy strong {
    max-width: none;
  }

  .home-page .hero-product-card em {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .delivery-estimator {
    grid-template-columns: 1fr;
  }
}

/* ---- Shared premium footer ---- */
.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;
}

.site-footer {
  display: block;
  width: min(1600px, calc(100% - clamp(24px, 4vw, 68px)));
  margin: clamp(44px, 7vw, 92px) auto 0;
  padding: 0;
  color: var(--muted);
  border: 1px solid rgba(214, 179, 106, 0.13);
  border-top-color: rgba(234, 197, 120, 0.74);
  border-radius: clamp(24px, 2vw, 36px);
  background:
    linear-gradient(180deg, rgba(13, 14, 14, 0.96), rgba(7, 7, 8, 0.98)),
    radial-gradient(circle at 12% 18%, rgba(214, 179, 106, 0.12), transparent 0 28%, transparent 62%),
    radial-gradient(circle at 92% 30%, rgba(255, 244, 214, 0.07), transparent 0 24%, transparent 58%);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.footer-shell {
  padding: clamp(24px, 3.4vw, 46px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(270px, 1.3fr) minmax(160px, 0.8fr) minmax(210px, 0.95fr) minmax(300px, 1.35fr);
  gap: 0;
  min-width: 0;
}

.footer-brand-panel,
.footer-column,
.footer-contact-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 42px);
}

.footer-column,
.footer-contact-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-lockup {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto;
  color: var(--accent-strong);
  letter-spacing: 0.34em;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo-lockup img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(214, 179, 106, 0.16));
}

.footer-logo-lockup span {
  position: relative;
  display: block;
  padding-bottom: 18px;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
}

.footer-logo-lockup span::after,
.footer-column h2::after,
.footer-contact-panel h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 197, 120, 0), rgba(234, 197, 120, 0.96), rgba(234, 197, 120, 0));
}

.footer-brand-copy {
  max-width: 34ch;
  margin: 24px auto;
  color: rgba(246, 240, 226, 0.74);
  line-height: 1.75;
  text-align: center;
}

.footer-fssai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px;
  padding-top: 18px;
  width: min(100%, 360px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 240, 226, 0.74);
}

.footer-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--accent-strong);
}

.footer-newsletter-card {
  display: grid;
  gap: 18px;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.12), rgba(255, 255, 255, 0.025) 52%, rgba(0, 0, 0, 0.18)),
    rgba(22, 20, 20, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 42px rgba(0, 0, 0, 0.2);
}

.footer-newsletter-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}

.footer-newsletter-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(234, 197, 120, 0.48);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 179, 106, 0.18), rgba(214, 179, 106, 0.03) 62%);
  box-shadow: 0 0 28px rgba(214, 179, 106, 0.16);
}

.footer-newsletter-head h2,
.footer-column h2,
.footer-contact-panel h2 {
  margin: 0;
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.footer-newsletter-head p {
  margin: 8px 0 0;
  color: rgba(246, 240, 226, 0.68);
  line-height: 1.45;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 74px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
}

.footer-newsletter-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--text);
  background: transparent;
}

.footer-newsletter-form input::placeholder {
  color: rgba(246, 240, 226, 0.48);
}

.footer-newsletter-form button {
  display: grid;
  place-items: center;
  border: 0;
  color: rgba(9, 8, 7, 0.92);
  background: linear-gradient(135deg, #f3d996, #c99f48);
  font-size: 1.55rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-newsletter-form button:hover {
  filter: brightness(1.05);
}

.footer-newsletter-form button:active {
  transform: scale(0.96);
}

.footer-newsletter-form button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
}

.footer-newsletter-form:focus-within {
  border-color: rgba(234, 197, 120, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.12);
}

.footer-newsletter-message {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: rgba(246, 240, 226, 0.56);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-newsletter-message[data-state="success"] {
  color: #8fd9a6;
}

.footer-newsletter-message[data-state="error"] {
  color: #f0a0a0;
}

.footer-newsletter-message[data-state="pending"] {
  color: var(--accent-strong);
}

.footer-column,
.footer-contact-panel {
  display: grid;
  align-content: start;
  gap: 26px;
}

.footer-column h2,
.footer-contact-panel h2 {
  position: relative;
  width: fit-content;
  padding-bottom: 18px;
}

.footer-column h2::after,
.footer-contact-panel h2::after {
  left: 0;
  transform: none;
}

.footer-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  color: rgba(246, 240, 226, 0.78);
  font-weight: 500;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a span:last-child {
  color: var(--accent-strong);
}

.footer-column a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-contact-panel p {
  margin: 0;
  color: rgba(246, 240, 226, 0.74);
  line-height: 1.6;
}

.footer-contact-panel strong {
  color: var(--accent-strong);
}

.footer-contact-list {
  display: grid;
  margin: 0;
  font-style: normal;
}

.footer-contact-list a {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 240, 226, 0.76);
  line-height: 1.55;
}

.footer-contact-list a:first-child {
  border-top: 0;
}

.footer-contact-list .footer-icon {
  width: 54px;
  height: 54px;
  padding: 15px;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 25%, rgba(214, 179, 106, 0.18), rgba(255, 255, 255, 0.04) 62%, rgba(0, 0, 0, 0.16));
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1fr) minmax(300px, 1.15fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  margin-top: clamp(20px, 3vw, 38px);
  padding: clamp(20px, 2.5vw, 34px);
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.07), rgba(255, 255, 255, 0.015));
}

.footer-bottom p {
  margin: 0;
  color: rgba(246, 240, 226, 0.68);
  line-height: 1.55;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-bottom nav a {
  color: rgba(246, 240, 226, 0.84);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-bottom nav a:hover {
  color: var(--accent-strong);
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand-panel:nth-child(odd),
  .footer-column:nth-child(odd),
  .footer-contact-panel:nth-child(odd) {
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-footer {
    width: min(100% - 20px, 620px);
    border-radius: 22px;
  }

  .footer-shell {
    padding: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel,
  .footer-column,
  .footer-contact-panel {
    padding: 24px 18px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand-panel {
    border-top: 0;
  }

  .footer-logo-lockup {
    margin: 0;
    justify-items: start;
  }

  .footer-logo-lockup span::after {
    left: 0;
    transform: none;
  }

  .footer-brand-copy {
    margin-left: 0;
    text-align: left;
  }

  .footer-fssai {
    justify-content: flex-start;
    margin-left: 0;
  }

  .footer-newsletter-card {
    width: 100%;
  }

  .footer-newsletter-head {
    grid-template-columns: 58px 1fr;
  }

  .footer-newsletter-icon {
    width: 54px;
    height: 54px;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr 62px;
  }

  .footer-bottom {
    margin-top: 10px;
    padding: 22px 18px;
  }

  .footer-bottom nav {
    display: grid;
    gap: 10px;
  }
}

/* ---- Compact ecommerce footer sizing ---- */
.site-footer {
  width: min(1760px, calc(100% - clamp(16px, 2vw, 32px)));
  margin: clamp(32px, 5vw, 56px) auto 0;
  border-radius: 20px;
}

.footer-shell {
  padding: 36px 24px 18px;
}

.footer-main {
  grid-template-columns: minmax(280px, 1.25fr) minmax(150px, 0.8fr) minmax(200px, 0.95fr) minmax(300px, 1.45fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.footer-brand-panel,
.footer-column,
.footer-contact-panel {
  padding: 0;
  border-left: 0;
}

.footer-logo-lockup {
  display: inline-grid;
  justify-items: start;
  gap: 10px;
  margin: 0;
  letter-spacing: 0.26em;
}

.footer-logo-lockup img {
  width: 48px;
  height: 48px;
}

.footer-logo-lockup span {
  padding-bottom: 10px;
  font-size: clamp(1.18rem, 1.25vw, 1.45rem);
}

.footer-logo-lockup span::after {
  left: 0;
  width: 30px;
  transform: none;
}

.footer-brand-copy {
  max-width: 34ch;
  margin: 12px 0;
  text-align: left;
  line-height: 1.45;
}

.footer-fssai {
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0 0 16px;
  padding-top: 12px;
  font-size: 0.93rem;
}

.footer-fssai .footer-icon {
  width: 18px;
  height: 18px;
}

.footer-newsletter-card {
  width: min(100%, 320px);
  justify-self: start;
  margin: 0;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
}

.footer-newsletter-head {
  grid-template-columns: 38px 1fr;
  gap: 10px;
}

.footer-newsletter-icon {
  width: 36px;
  height: 36px;
}

.footer-newsletter-icon .footer-icon {
  width: 18px;
  height: 18px;
}

.footer-newsletter-head h2 {
  font-size: 1.18rem;
}

.footer-newsletter-head p {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-newsletter-form {
  grid-template-columns: 1fr 52px;
  min-height: 40px;
}

.footer-newsletter-form input {
  padding: 0 14px;
}

.footer-newsletter-message {
  margin: -2px 0 0;
  font-size: 0.8rem;
}

.footer-column,
.footer-contact-panel {
  gap: 10px;
}

.footer-column h2,
.footer-contact-panel h2 {
  padding-bottom: 12px;
  font-size: clamp(1.35rem, 1.55vw, 1.65rem);
}

.footer-column h2::after,
.footer-contact-panel h2::after {
  width: 28px;
}

.footer-column a {
  min-height: 28px;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-contact-panel p {
  line-height: 1.45;
}

.footer-contact-list a {
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 9px 0;
  line-height: 1.45;
}

.footer-contact-list .footer-icon {
  width: 34px;
  height: 34px;
  padding: 9px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 12px;
}

.footer-bottom p {
  max-width: 35ch;
  line-height: 1.45;
}

.footer-bottom nav {
  gap: 14px;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 1fr);
  }

  .footer-contact-panel {
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .site-footer {
    width: min(100% - 20px, 620px);
    margin-top: 36px;
    border-radius: 18px;
  }

  .footer-shell {
    padding: 28px 18px 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-panel,
  .footer-column,
  .footer-contact-panel {
    padding: 0;
    border-top: 0;
  }

  .footer-newsletter-card {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
  }

  .footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
