@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,
button,
input,
select,
textarea,
.glass-card {
  min-width: 0;
}

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);
}

@media (min-width: 721px) {
  select {
    color-scheme: light;
  }

  select option,
  select optgroup {
    background: #f7f0e8;
    color: #1d1614;
  }

  select option:checked,
  select option:hover {
    background: #d8b76f;
    color: #1d1614;
  }

  select option:disabled {
    color: #756b65;
  }
}

.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;
  white-space: normal;
}

.variant-option span,
.variant-option-name {
  display: block;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

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

.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: grid;
  gap: 8px;
}

.ingredient-chip-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.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 minmax(0, 1fr) auto;
  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-link {
  display: block;
  min-height: 0;
}

.curated-image-link .curated-image {
  height: 100%;
}

.curated-card-actions {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.curated-card-actions .cart-add-button {
  width: 100%;
}

.curated-card > a.curated-copy {
  color: inherit;
  text-decoration: none;
}

.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: 500px;
  grid-template-rows: 210px minmax(0, 1fr) auto;
}

.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: 590px;
  grid-template-rows: 250px minmax(0, 1fr) auto;
}

.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);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.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;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.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 minmax(0, 1fr) auto;
  }

  .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-selected {
  margin: -4px 0 2px;
  color: var(--gold-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.product-detail-page .variant-option {
  min-height: 72px;
  gap: 5px;
  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 .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: 224px 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: 224px;
  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 minmax(0, 1fr) auto;
}

.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 minmax(0, 1fr) auto;
  }

  .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-detail-page #productCategory {
  text-transform: uppercase;
}

.diet-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.diet-badge-veg {
  color: #8fdaa3;
  border-color: rgba(143, 218, 163, 0.34);
  background: rgba(143, 218, 163, 0.08);
}

.diet-badge-non-veg {
  color: #f0a2a2;
  border-color: rgba(240, 162, 162, 0.36);
  background: rgba(240, 162, 162, 0.08);
}

.diet-badge-unknown {
  color: var(--gold-strong);
  border-color: rgba(214, 179, 106, 0.34);
  background: rgba(214, 179, 106, 0.08);
}

.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: 78px 16px 16px;
  }
  .home-body .product-modal .modal-close {
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border-color: rgba(238, 204, 129, 0.55);
    background:
      linear-gradient(145deg, rgba(28, 25, 25, 0.96), rgba(14, 12, 12, 0.9));
    color: var(--gold-strong);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .home-body .product-modal .modal-close:hover,
  .home-body .product-modal .modal-close:active {
    transform: none;
    background:
      linear-gradient(145deg, rgba(42, 34, 28, 0.98), rgba(18, 15, 14, 0.94));
    border-color: rgba(238, 204, 129, 0.72);
  }
  .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: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  margin-top: 6px;
}

.pdp-add-controls {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.pdp-action-loading {
  grid-column: 1 / -1;
  min-height: 52px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pdp-action-loading[hidden] {
  display: none;
}

.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%;
}

.product-detail-page .pdp-actions .product-cart-stepper {
  width: 100%;
  min-width: 0;
  min-height: 52px;
}

/* ---- 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: grid;
  gap: 8px;
}

.product-detail-page .ingredient-chip-list p {
  margin: 0;
  max-width: 82ch;
  color: var(--muted);
  line-height: 1.65;
}

.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);
  }
}

@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);
}

.catalog-qty-stepper {
  display: grid;
  grid-template-columns: 38px minmax(34px, 1fr) 38px;
  align-items: center;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(214, 179, 106, 0.42);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(214, 179, 106, 0.08);
}

.catalog-qty-stepper button {
  align-self: stretch;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-qty-stepper button:hover,
.catalog-qty-stepper button:focus-visible {
  background: rgba(214, 179, 106, 0.16);
}

.catalog-qty-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.catalog-qty-stepper span {
  text-align: center;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.product-cart-stepper {
  min-width: min(100%, 168px);
}

.product-actions {
  display: grid;
  gap: 8px;
}

.card-variant-field {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-account-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-account-link:hover,
.header-account-link:focus-visible,
.mobile-account-link:hover,
.mobile-account-link:focus-visible {
  color: var(--text);
  border-color: rgba(214, 179, 106, 0.62);
  background: rgba(214, 179, 106, 0.1);
}

.card-variant-field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(214, 179, 106, 0.4);
  border-radius: 10px;
  appearance: auto;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.card-variant-field select:hover,
.card-variant-field select:focus-visible {
  border-color: rgba(240, 215, 154, 0.9);
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.14);
}

.card-stock-state {
  min-height: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-actions .card-stock-state + .cart-add-button,
.product-actions .card-stock-state + .catalog-qty-stepper {
  margin-top: 0;
}

@media (max-width: 560px) {
  .card-variant-field select {
    min-height: 46px;
    font-size: 0.9rem;
  }
}

.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-btn:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  background: transparent;
  color: var(--muted);
}

.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 {
  min-height: 32px;
  border: 1px solid rgba(255, 128, 136, 0.28);
  border-radius: 8px;
  background: rgba(255, 104, 116, 0.06);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.cart-remove:hover,
.cart-remove:focus-visible {
  color: var(--lava);
  border-color: rgba(255, 128, 136, 0.66);
  background: rgba(255, 104, 116, 0.12);
}

.cart-remove:focus-visible {
  outline: 3px solid rgba(255, 128, 136, 0.2);
  outline-offset: 2px;
}

.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;
}

/* Shared Cart + Checkout order summary */
.cart-summary-rows {
  gap: 14px;
}

.summary-item-count {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.summary-group {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-row strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.summary-savings strong {
  color: #7bbf8f;
}

.summary-delivery-group[data-delivery-state="checking"] strong {
  color: var(--accent-strong);
}

.summary-delivery-group[data-delivery-state="unavailable"] strong {
  color: #f08b8b;
}

.summary-delivery-group[data-delivery-state="not-checked"] strong {
  color: var(--muted);
  font-weight: 600;
}

.summary-payable {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 16px 0 2px;
  border-top: 2px solid rgba(214, 179, 106, 0.48);
  color: var(--text);
  font-weight: 800;
}

.summary-payable strong {
  color: var(--accent-strong);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .cart-summary {
    padding: 18px;
  }

  .summary-row,
  .summary-payable {
    gap: 12px;
  }

  .summary-row {
    font-size: 0.88rem;
  }
}

.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-limit-notice {
  position: fixed;
  inset: auto;
  right: 20px;
  bottom: max(16px, calc(12px + env(safe-area-inset-bottom)));
  z-index: 200;
  display: none;
  height: auto;
  min-height: 0;
  max-height: min(220px, calc(100dvh - 32px));
  align-content: start;
  grid-auto-rows: min-content;
  gap: 9px;
  width: min(360px, calc(100% - 32px));
  margin: 0;
  padding: 14px 48px 14px 14px;
  border: 1px solid rgba(214, 179, 106, 0.42);
  border-radius: 12px;
  background: rgba(22, 18, 18, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.cart-limit-notice.is-visible {
  display: grid;
}

/* Quick View is a native dialog. Its alert must be a direct, touchable child
   of that dialog rather than a body-level Popover behind the top layer. */
.product-modal > .cart-limit-notice.cart-limit-notice--dialog.is-visible {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: auto;
  left: 16px;
  width: auto;
  max-height: min(180px, calc(100dvh - 52px));
  z-index: 20;
  pointer-events: auto;
  touch-action: manipulation;
  isolation: isolate;
}

.product-modal > .cart-limit-notice.cart-limit-notice--dialog.is-visible,
.product-modal > .cart-limit-notice.cart-limit-notice--dialog.is-visible * {
  pointer-events: auto;
}

.product-modal > .cart-limit-notice.cart-limit-notice--dialog::before,
.product-modal > .cart-limit-notice.cart-limit-notice--dialog::after {
  pointer-events: none;
}

.cart-limit-notice-message {
  margin: 0;
}

.cart-limit-whatsapp {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  touch-action: manipulation;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-limit-close {
  position: absolute;
  top: 9px;
  right: 9px;
  min-width: 32px;
  min-height: 32px;
  padding: 0 7px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  border-radius: 7px;
  appearance: none;
  background: transparent;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.cart-limit-close:hover,
.cart-limit-close:focus-visible,
.cart-limit-close:active {
  border-color: var(--accent-strong);
  background: rgba(214, 179, 106, 0.16);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .cart-limit-notice {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: max(14px, calc(10px + env(safe-area-inset-bottom)));
  }

  .product-modal > .cart-limit-notice.cart-limit-notice--dialog.is-visible {
    top: 12px;
    right: 12px;
    left: 12px;
    max-height: min(170px, calc(100dvh - 40px));
  }
}

.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;
  }

  .cart-remove {
    min-height: 44px;
    padding-inline: 14px;
  }
}

/* =========================================================
   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(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-add-controls {
    grid-template-columns: minmax(72px, 88px) minmax(0, 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;
}

.checkout-pincode-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(214, 179, 106, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(12, 10, 13, 0.72);
}

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

.checkout-pincode-panel span {
  color: var(--muted);
  font-weight: 700;
}

.checkout-pincode-panel strong {
  color: var(--accent-strong);
  letter-spacing: 0.05em;
}

.checkout-pincode-panel small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.checkout-form-wrap input[readonly] {
  background: rgba(218, 179, 97, 0.08);
  color: var(--ink);
  cursor: default;
}

.checkout-destination-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.checkout-destination-hint.is-error {
  color: #ffb7bc;
  font-weight: 700;
}

.checkout-pincode-panel .text-button {
  width: auto;
  min-height: 38px;
  padding-inline: 14px;
  color: var(--accent-strong);
}

.field,
.checkout-form-wrap form,
.track-form-wrap form {
  display: grid;
  gap: 10px;
}

.field-wide {
  grid-column: 1 / -1;
}

.checkout-delivery-action {
  align-content: end;
}

.checkout-delivery-action .button {
  width: 100%;
  min-height: 44px;
}

.checkout-delivery-methods {
  min-width: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.checkout-delivery-methods legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* The card has an explicit grid display, so keep the native hidden state authoritative. */
.checkout-delivery-method[hidden] {
  display: none !important;
}

.checkout-delivery-method.is-selected {
  border-color: rgba(238, 199, 117, 0.7);
  background: rgba(238, 199, 117, 0.08);
}

.checkout-delivery-method.is-unavailable {
  opacity: 0.72;
  cursor: not-allowed;
}

.checkout-delivery-method small,
.checkout-delivery-method-status,
.summary-delivery-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-delivery-method-status {
  grid-column: 1 / -1;
  min-height: 1.2em;
  margin: 0;
}

.checkout-delivery-method-status[data-state="warning"] {
  color: var(--accent-strong);
}

[hidden] {
  display: none !important;
}

.checkout-fulfilment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-inline-size: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.checkout-fulfilment-methods legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-fulfilment-methods .checkout-delivery-method {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.checkout-option-badge {
  margin-left: auto;
  color: var(--accent-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.checkout-option-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.checkout-option-label svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
}

.checkout-fulfilment-methods input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-fulfilment-methods .checkout-delivery-method input {
  width: 1px;
  height: 1px;
  margin: 0;
}

.checkout-fulfilment-methods .checkout-delivery-method:focus-within {
  outline: 3px solid rgba(238, 199, 117, 0.35);
  outline-offset: 2px;
}

.checkout-pickup-card {
  display: grid;
  gap: 8px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid rgba(238, 199, 117, 0.28);
  border-radius: 14px;
  background: rgba(238, 199, 117, 0.06);
}

.checkout-pickup-card > strong {
  font-size: 1.05rem;
}

.checkout-pickup-card .pickup-address,
.checkout-pickup-card .pickup-date,
.checkout-pickup-card .pickup-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.checkout-pickup-card .pickup-date strong {
  color: var(--accent-strong);
}

.checkout-pickup-card .pickup-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(238, 199, 117, 0.35);
  border-radius: 999px;
  color: var(--accent-strong);
  font-weight: 800;
}

.summary-delivery-note {
  margin: 8px 0 0;
}

.summary-pickup-location {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.summary-pickup-location .summary-pickup__name {
  font-size: 0.98rem;
}

.summary-pickup__address {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.summary-pickup__date {
  display: grid;
  gap: 2px;
  margin-top: 4px;
  color: var(--muted);
}

.summary-pickup__date strong {
  color: var(--accent-strong);
}

.summary-pickup-discount-group .summary-row strong {
  color: #86d59b;
}

.checkout-location-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  min-width: 0;
}

.checkout-location-button {
  min-height: 48px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 18px;
  cursor: pointer;
}

.checkout-location-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.checkout-location-button:focus-visible {
  outline: 3px solid rgba(238, 199, 117, 0.48);
  outline-offset: 3px;
}

.checkout-location-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.checkout-location-status[data-state="success"] {
  color: #99e5ad;
}

.checkout-location-status[data-state="warning"] {
  color: var(--accent-strong);
}

.checkout-location-status[data-state="error"] {
  color: #ffb7bc;
}

.checkout-location-attribution {
  grid-row: 1;
  grid-column: 2;
  color: var(--muted);
  font-size: 0.75rem;
  text-underline-offset: 3px;
}

.checkout-location-attribution[hidden] {
  display: none;
}

.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;
}

.field select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 999px;
  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: 750;
}

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

/* Windows native option popups can ignore dark option backgrounds. Keep desktop
   option text dark against the OS-controlled light popup while preserving the
   dark closed controls and the established mobile treatment. */
@media (min-width: 721px) {
  .home-page .select-box select,
  .cart-field select,
  .field select {
    color-scheme: light;
  }

  .home-page .select-box select option,
  .home-page .select-box select optgroup,
  .cart-field select option,
  .cart-field select optgroup,
  .field select option,
  .field select optgroup {
    background: #f7f0e8;
    color: #1d1614;
  }

  .home-page .select-box select option:checked,
  .home-page .select-box select option:hover,
  .cart-field select option:checked,
  .cart-field select option:hover,
  .field select option:checked,
  .field select option:hover {
    background: #d8b76f;
    color: #1d1614;
  }
}

.cart-summary-actions .button[aria-disabled="true"],
.cart-summary-actions .disabled-link {
  opacity: 0.58;
  filter: saturate(0.72);
}

.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;
}

.payment-status-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(214, 179, 106, 0.58);
  border-radius: 50%;
  background: rgba(214, 179, 106, 0.12);
  color: var(--accent-strong);
  font-size: 1.55rem;
  font-weight: 800;
}

.payment-pending-actions {
  width: min(100%, 380px);
}

.payment-pending-actions[hidden] {
  display: none;
}

.payment-action-support,
.payment-action-error {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.payment-action-error {
  min-height: 1.35em;
  color: #f0a0a0;
}

.payment-tracking {
  width: min(100%, 380px);
}

.payment-tracking .button {
  width: 100%;
}

@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-pincode-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-pending-main {
    min-height: auto;
    padding-block: 28px 44px;
  }

  .payment-pending-card {
    width: min(100% - 28px, 560px);
    padding: 22px 18px;
    gap: 16px;
  }

  .payment-pending-card h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .payment-status-grid div {
    padding: 14px;
  }

  .checkout-pincode-panel .text-button {
    width: 100%;
  }

  .checkout-location-tools {
    grid-template-columns: 1fr;
  }

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

  .checkout-fulfilment-methods .checkout-delivery-method {
    min-width: 0;
    padding: 12px 10px;
  }

  .checkout-fulfilment-methods .checkout-option-label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    gap: 6px;
    white-space: normal;
  }

  .checkout-fulfilment-methods .checkout-option-label strong {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
    line-height: 1.2;
  }

  .checkout-fulfilment-methods .checkout-option-badge {
    grid-column: 2;
    margin-left: 0;
    white-space: normal;
    line-height: 1.2;
  }

  .checkout-option-label {
    justify-content: center;
  }

  .checkout-pickup-card {
    padding: 14px;
  }

  .checkout-pickup-card .pickup-map-link {
    width: 100%;
  }

  .checkout-location-button,
  .checkout-location-attribution {
    width: 100%;
    grid-column: 1;
    justify-self: stretch;
  }

  .checkout-location-attribution {
    grid-row: auto;
  }

  .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;
  }
}

/* Checkout field validation, grouped catalog filters, and header search */
.checkout-form-wrap .field input[aria-invalid="true"],
.checkout-form-wrap .field select[aria-invalid="true"] {
  border-color: rgba(255, 128, 136, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 104, 116, 0.12);
}

.checkout-form-wrap .field .field-error {
  display: block;
  color: #ffb7bc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.checkout-form-wrap .field .field-error[hidden] {
  display: none;
}

.home-page .filter-row.catalog-filter-groups {
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
  margin-inline: 0;
  padding: 0;
}

.home-page .filter-toggle {
  min-height: 42px;
  padding: 0 15px;
  border: 1px dashed rgba(214, 179, 106, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.home-page .filter-toggle:hover {
  border-color: rgba(214, 179, 106, 0.78);
  background: rgba(214, 179, 106, 0.1);
}

.header-search-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border: 1px solid rgba(214, 179, 106, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent-strong);
  cursor: pointer;
  overflow: hidden;
  transform: none !important;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}

.header-search-toggle span {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  flex: 0 0 20px;
  margin: 0;
  border: 0;
  border-radius: 0;
  transform: none !important;
}

.header-search-toggle span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.header-search-toggle span::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.header-search-toggle:hover,
.header-search-toggle[aria-expanded="true"] {
  border-color: rgba(214, 179, 106, 0.7);
  background: rgba(214, 179, 106, 0.12);
  transform: none !important;
  box-shadow: none;
}

.header-search-toggle:active,
.header-search-toggle:focus-visible {
  transform: none !important;
}

.header-search-toggle:focus-visible {
  outline: 2px solid rgba(240, 213, 143, 0.9);
  outline-offset: 3px;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(12px, 3vw, 48px);
  z-index: 2;
  width: min(480px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 16px;
  background: rgba(14, 10, 14, 0.98);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

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

.header-search-panel label {
  min-width: 0;
}

.header-search-panel input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(214, 179, 106, 0.23);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
}

.header-search-clear,
.header-search-submit,
.mobile-nav-search {
  min-height: 44px;
  border: 1px solid rgba(214, 179, 106, 0.24);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.header-search-clear,
.header-search-submit {
  padding: 0 12px;
}

.header-search-submit {
  border-color: rgba(214, 179, 106, 0.56);
  background: rgba(214, 179, 106, 0.15);
  color: var(--accent-strong);
}

.mobile-nav-search {
  width: 100%;
  padding: 0 14px;
  text-align: left;
}

@media (max-width: 860px) {
  .site-header .header-actions {
    gap: 8px;
  }

  .header-search-toggle-desktop {
    display: none;
  }

  .header-search-toggle-mobile {
    display: inline-flex;
  }

  .header-search-panel {
    right: 12px;
    left: 12px;
    width: auto;
  }
}

@media (min-width: 861px) {
  .header-search-toggle-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-page .filter-row.catalog-filter-groups {
    gap: 8px;
  }

  .home-page .filter-row.catalog-filter-groups .filter-chip,
  .home-page .filter-toggle {
    min-height: 44px;
    padding-inline: 14px;
  }

  .header-search-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-search-panel label {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   Customer sticky nav + premium cart motion
   ========================================================= */
html {
  --site-header-offset: 76px;
  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: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.delivery-estimator[aria-busy="true"] {
  opacity: 0.82;
}

.delivery-estimator .delivery-estimate-message {
  min-height: 1.4em;
}

.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;
}

@media (max-width: 340px) {
  .checkout-fulfilment-methods .checkout-delivery-method {
    padding-inline: 8px;
  }

  .checkout-option-label {
    font-size: 0.82rem;
  }
}

/* Coupon controls share the cart/checkout summary rhythm without trusting client totals. */
.coupon-section {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.coupon-heading-row,
.coupon-applied-top,
.coupon-applied-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coupon-heading-row h3 {
  margin: 0;
  font-size: 0.9rem;
}

.coupon-helper,
.coupon-message {
  color: var(--muted);
  font-size: 0.8rem;
}

.coupon-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: end;
}

.coupon-field {
  min-width: 0;
}

.coupon-field input,
.coupon-input-row .mini-button {
  min-height: 44px;
}

.coupon-field input {
  width: 100%;
  border-color: rgba(214, 179, 106, 0.24);
  background: rgba(255, 255, 255, 0.07);
  text-transform: uppercase;
}

.coupon-input-row .mini-button {
  min-width: 76px;
  padding-inline: 14px;
  white-space: nowrap;
}

.coupon-message {
  min-height: 1.3em;
  margin: 0;
}

.coupon-message[data-state="success"] {
  color: #86d59b;
}

.coupon-message[data-state="error"] {
  color: #ff9aa2;
}

.coupon-offers-trigger {
  justify-self: start;
  min-height: 40px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(214, 179, 106, 0.56);
  background: transparent;
  color: var(--gold-strong);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.coupon-offers-trigger:hover,
.coupon-offers-trigger:focus-visible {
  color: var(--text);
  border-bottom-color: var(--gold-strong);
}

.available-coupons {
  display: grid;
  gap: 9px;
}

.available-coupon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 12px;
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 10px;
  background: linear-gradient(125deg, rgba(214, 179, 106, 0.11), rgba(255, 255, 255, 0.025));
}

.available-coupon-eyebrow,
.available-coupon-code {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.available-coupon-code {
  font-size: 0.94rem;
}

.available-coupon-title,
.available-coupon-rule,
.available-coupon-terms {
  grid-column: 1;
  margin: 0;
  min-width: 0;
}

.available-coupon-title {
  color: var(--text);
  font-weight: 760;
}

.available-coupon-rule,
.available-coupon-terms {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.available-coupon-apply {
  grid-column: 2;
  grid-row: 1 / span 5;
  align-self: center;
  min-height: 42px;
  white-space: nowrap;
}

/* First-render safeguards: only one homepage hero and a neutral cart shell. */
#mainContent.campaign-is-active > .hero {
  display: none;
}

#mainContent.campaign-is-pending > .hero {
  display: none;
}

.campaign-hero {
  aspect-ratio: 8 / 3;
  min-height: 0;
}

.campaign-hero:not(.campaign-image-ready) .campaign-overlay {
  opacity: 0;
}

.campaign-hero-placeholder {
  background:
    linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.055) 48%, transparent 64%),
    linear-gradient(145deg, rgba(35, 29, 30, 0.96), rgba(13, 10, 11, 0.98));
  background-size: 220% 100%, 100% 100%;
  animation: homepageSkeletonSweep 1.4s ease-in-out infinite;
}

.campaign-overlay {
  transition: opacity 160ms ease;
}

/* Stable first-render shells match the final card grid without clipping content. */
.homepage-skeleton-card {
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.homepage-skeleton-image,
.homepage-skeleton-copy i,
.homepage-skeleton-action {
  display: block;
  border-radius: 8px;
  background:
    linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.065) 48%, transparent 68%),
    rgba(255, 255, 255, 0.055);
  background-size: 220% 100%, 100% 100%;
  animation: homepageSkeletonSweep 1.4s ease-in-out infinite;
}

.curated-card.homepage-skeleton-card {
  grid-template-rows: 280px auto auto;
}

.product-card.homepage-skeleton-card {
  grid-template-rows: 224px auto minmax(226px, 1fr) auto;
}

.homepage-skeleton-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.home-page .filter-row {
  min-height: 42px;
}

.home-page .product-card,
.home-page .product-card.homepage-skeleton-card {
  grid-template-rows: 224px auto minmax(226px, 1fr) auto;
}

.home-page .product-card .product-image {
  height: 224px;
  aspect-ratio: 1 / 1;
}

.homepage-skeleton-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 116px;
}

.homepage-skeleton-copy i {
  height: 14px;
}

.homepage-skeleton-copy i:nth-child(1) { width: 34%; }
.homepage-skeleton-copy i:nth-child(2) { width: 86%; height: 22px; }
.homepage-skeleton-copy i:nth-child(3) { width: 68%; }

.homepage-skeleton-action {
  width: 100%;
  height: 46px;
}

.cart-button [data-cart-count],
.header-cart-link [data-cart-count] {
  width: 24px;
  min-width: 24px;
  font-variant-numeric: tabular-nums;
}

@keyframes homepageSkeletonSweep {
  from { background-position: 120% 0, 0 0; }
  to { background-position: -120% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-hero-placeholder,
  .homepage-skeleton-image,
  .homepage-skeleton-copy i,
  .homepage-skeleton-action {
    animation: none;
  }
}

@media (max-width: 700px) {
  .home-page .filter-row {
    min-height: 48px;
  }

  .home-page .product-card,
  .home-page .product-card.homepage-skeleton-card {
    grid-template-rows: 220px auto auto auto;
  }

  .home-page .product-card .product-image {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .home-page .product-card,
  .home-page .product-card.homepage-skeleton-card {
    grid-template-rows: 210px auto auto auto;
  }

  .home-page .product-card .product-image {
    height: 210px;
  }
}

.cart-loading {
  width: min(100%, 760px);
  min-height: 210px;
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.cart-loading[hidden],
.cart-empty[hidden],
.cart-layout[hidden] {
  display: none;
}

.cart-loading-copy {
  display: grid;
  gap: 14px;
}

.cart-skeleton {
  display: block;
  border-radius: 7px;
  background: linear-gradient(100deg, rgba(255,255,255,.04) 24%, rgba(221,188,111,.11) 44%, rgba(255,255,255,.04) 64%);
  background-size: 220% 100%;
  animation: cart-skeleton-shimmer 1.25s linear infinite;
}

.cart-skeleton-image { width: 152px; height: 152px; }
.cart-skeleton-title { width: min(100%, 290px); height: 25px; }
.cart-skeleton-line { width: min(100%, 390px); height: 16px; }
.cart-skeleton-control { width: 140px; height: 46px; }

@keyframes cart-skeleton-shimmer {
  to { background-position: -220% 0; }
}

.available-coupon-card .available-coupon-status {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 3px 8px;
  border: 1px solid rgba(111, 205, 137, .48);
  border-radius: 999px;
  color: #8fe0a2;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.available-coupon-card.is-ineligible .available-coupon-status {
  border-color: rgba(221, 188, 111, .42);
  color: var(--gold);
}

.available-coupon-reason,
.available-coupon-missing {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.42;
}

.available-coupon-missing { color: var(--gold); font-weight: 700; }

.available-coupon-link {
  grid-column: 2;
  grid-row: 2 / span 6;
  align-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
}

.coupon-offers-dialog {
  width: min(690px, calc(100vw - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.coupon-offers-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.coupon-offers-dialog-card {
  display: grid;
  gap: 18px;
  max-height: min(760px, calc(100dvh - 28px));
  overflow: auto;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(35, 31, 32, 0.98), rgba(17, 15, 16, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.coupon-offers-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.18);
}

.coupon-dialog-eyebrow {
  margin: 0 0 4px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coupon-offers-dialog-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.coupon-dialog-close,
.coupon-preview-back {
  min-height: 42px;
  border: 1px solid rgba(214, 179, 106, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.coupon-dialog-close { padding: 8px 14px; }

.coupon-dialog-close:hover,
.coupon-dialog-close:focus-visible,
.coupon-preview-back:hover,
.coupon-preview-back:focus-visible {
  border-color: var(--gold-strong);
  background: rgba(214, 179, 106, 0.11);
}

.coupon-product-preview {
  min-width: 0;
}

.coupon-preview-back {
  margin: 0 0 16px;
  padding: 8px 14px;
}

.coupon-preview-loading {
  margin: 0;
  color: var(--muted);
}

.coupon-product-preview-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: start;
}

.coupon-product-preview-media {
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(214, 179, 106, 0.25);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.coupon-product-preview-media img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
}

.coupon-product-preview-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.coupon-product-preview-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.16;
}

.coupon-product-preview-description,
.coupon-product-preview-stock,
.coupon-product-preview-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.coupon-product-preview-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0;
}

.coupon-product-preview-price strong { color: var(--gold-strong); font-size: 1.45rem; }
.coupon-product-preview-price span { color: var(--muted); text-decoration: line-through; }
.coupon-product-preview-stock[data-state="available"] { color: #86d59b; }
.coupon-product-preview-stock[data-state="unavailable"] { color: #ff9aa2; }

.coupon-product-preview-variants {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coupon-product-preview-variants select {
  min-width: 0;
  min-height: 46px;
  width: 100%;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  letter-spacing: 0;
  text-transform: none;
}

.coupon-product-preview-action { min-height: 48px; width: 100%; }
.coupon-product-preview-status { min-height: 1.35em; font-size: 0.88rem; }

.coupon-section[aria-busy="true"] {
  opacity: 0.82;
}

.coupon-applied-details {
  display: grid;
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid rgba(119, 214, 138, 0.25);
  border-radius: 10px;
  background: rgba(119, 214, 138, 0.055);
}

.coupon-applied-details[hidden] {
  display: none;
}

.coupon-applied-top {
  color: #9ae2aa;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coupon-applied-row {
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-item-meta-list .cart-item-offer {
  flex-basis: 100%;
  color: var(--accent-strong);
  font-weight: 700;
}

.coupon-applied-row strong {
  color: var(--text);
}

.coupon-applied-savings strong {
  color: #86d59b;
}

.coupon-applied-total {
  padding-top: 7px;
  border-top: 1px solid rgba(119, 214, 138, 0.2);
  color: var(--text);
  font-weight: 700;
}

.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;
  }

  .coupon-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .coupon-input-row {
    grid-template-columns: 1fr;
  }

  .coupon-field {
    grid-column: auto;
  }

  .coupon-input-row .mini-button {
    width: 100%;
  }

  .available-coupon-card {
    grid-template-columns: 1fr;
  }

  .available-coupon-apply {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .coupon-offers-dialog {
    width: min(100vw - 18px, 690px);
    max-height: calc(100dvh - 18px);
  }

  .coupon-offers-dialog-card {
    max-height: calc(100dvh - 18px);
    padding: 18px 14px;
    border-radius: 14px;
  }

  .coupon-offers-dialog-header {
    gap: 10px;
  }

  .coupon-dialog-close {
    min-width: 44px;
    padding-inline: 10px;
  }

  .coupon-product-preview-card {
    grid-template-columns: 1fr;
  }

  .coupon-product-preview-media {
    min-height: 190px;
    max-height: 260px;
  }

  .coupon-product-preview-media img {
    max-height: 224px;
  }
}

/* ---- 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;
  }
}

/* =========================================================
   Responsive QA hardening
   ========================================================= */
.hero-marquee,
.home-page .hero-trust-strip {
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}

.home-page .filter-row {
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
}

.legal-main,
.brand-main,
.cart-main,
.product-detail-page,
.home-page .section,
.home-page .showcase-section {
  max-width: 100%;
}

.legal-card,
.brand-value-card,
.brand-details-card,
.contact-card,
.cart-summary,
.checkout-form-wrap,
.track-form-wrap,
.track-result,
.payment-pending-card {
  overflow-wrap: anywhere;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(220px, 1.2fr) minmax(120px, 0.75fr) minmax(160px, 0.9fr) minmax(240px, 1.3fr);
    gap: 20px;
  }

  .footer-newsletter-card {
    width: min(100%, 300px);
  }

  .footer-contact-list a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
}

@media (max-width: 1180px) {
  .legal-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cart-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  .legal-main {
    width: min(100% - 24px, 760px);
    padding-top: 24px;
  }

  .legal-grid,
  .legal-grid-three {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-card {
    min-height: 0;
  }

  .brand-main,
  .cart-main {
    width: min(100%, 760px);
  }

  .brand-hero,
  .brand-split {
    padding: clamp(20px, 5vw, 34px);
  }

  .product-detail-page .similar-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 14px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .product-detail-page .similar-compare-card {
    flex: initial;
    width: 100%;
    min-width: 0;
  }

  .product-detail-page .gallery-thumbs,
  .product-detail-page .pdp-gallery .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-auto-rows: auto;
    overflow: visible;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cart-main,
  .brand-main {
    padding-inline: 12px;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cart-item-actions {
    justify-content: flex-start;
  }

  .footer-contact-list a {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr 50px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .header-cart-link {
    min-width: 0;
    padding-inline: 10px;
  }

  .home-page .hero-panel,
  .glass-card {
    border-radius: 16px;
  }
}
/* Seasonal product content is data-driven and only rendered for an active campaign. */
.seasonal-campaign-offer {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(218, 178, 95, 0.55);
  border-radius: 8px;
  background: rgba(164, 112, 37, 0.12);
  color: var(--text, #f5efe5);
}

.seasonal-campaign-offer p { margin: 0.35rem 0; }
.seasonal-campaign-kicker { color: var(--gold, #dfbd69); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.seasonal-campaign-gift { display: grid; gap: .3rem; margin-top: .8rem; }
.seasonal-campaign-gift small { color: var(--muted, #c5baaa); }

.payment-pending-offer {
  margin: 1rem 0;
  padding: .8rem 1rem;
  border: 1px solid rgba(218, 178, 95, .5);
  border-radius: 8px;
  color: var(--gold, #dfbd69);
}

/* ============================================================
   Raksha Bandhan Campaign Hero
   ============================================================ */

.campaign-hero-container {
  position: relative;
  width: min(calc(100% - clamp(20px, 4vw, 72px)), 1920px);
  margin: clamp(18px, 3vw, 40px) auto 0;
  border: 1px solid rgba(214, 179, 106, 0.32);
  border-radius: 12px;
  overflow: hidden;
}

.campaign-hero-container[hidden] {
  display: none;
}

.campaign-hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 38vw, 680px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.campaign-hero picture {
  position: absolute;
  inset: 0;
  display: block;
}

.campaign-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: campaign-float 12s ease-in-out infinite;
}

@keyframes campaign-float {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.campaign-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: inherit;
  padding: clamp(48px, 6vw, 92px) clamp(24px, 7vw, 128px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(90deg, rgba(7, 6, 8, 0.98) 0%, rgba(7, 6, 8, 0.93) 31%, rgba(7, 6, 8, 0.66) 50%, rgba(7, 6, 8, 0.18) 75%, rgba(7, 6, 8, 0) 100%),
    linear-gradient(0deg, rgba(7, 6, 8, 0.54), transparent 44%);
}

.campaign-overlay > * {
  width: min(100%, 640px);
}

.campaign-announcement {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold, #d6b36a);
  border-radius: 999px;
  font-size: clamp(0.65rem, 1.6vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-strong, #eccf8f);
  background: rgba(12, 10, 11, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: campaign-glow 3s ease-in-out infinite;
}

@keyframes campaign-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(214, 179, 106, 0.2); }
  50% { box-shadow: 0 0 20px rgba(214, 179, 106, 0.45); }
}

.campaign-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #d6b36a);
  margin: 0;
}

.campaign-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: #faf6ee;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.campaign-desc {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: rgba(246, 240, 232, 0.88);
  margin: 0;
  max-width: 620px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.campaign-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.campaign-cta {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  min-height: 50px;
  padding: 12px 32px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.campaign-cta-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg);
  animation: cta-shine 4s ease-in-out infinite;
}

@keyframes cta-shine {
  0%, 100% { left: -60%; }
  30% { left: 120%; }
  100% { left: 120%; }
}

.campaign-coupon {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-strong, #eccf8b);
  background: rgba(12, 10, 11, 0.5);
  padding: 6px 18px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.campaign-coupon[hidden] {
  display: none;
}

/* Fade-up animation */
.campaign-fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: campaign-fade-up 0.7s var(--ease) forwards;
}

.campaign-announcement.campaign-fade-up {
  animation-delay: 0.1s;
}

.campaign-eyebrow.campaign-fade-up {
  animation-delay: 0.2s;
}

.campaign-heading.campaign-fade-up {
  animation-delay: 0.3s;
}

.campaign-desc.campaign-fade-up {
  animation-delay: 0.4s;
}

.campaign-actions.campaign-fade-up {
  animation-delay: 0.5s;
}

@keyframes campaign-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .campaign-banner-bg {
    animation: none;
  }

  .campaign-announcement {
    animation: none;
  }

  .campaign-cta-shine::after {
    animation: none;
    display: none;
  }

  .campaign-fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .campaign-hero-container {
    width: min(calc(100% - 24px), 640px);
    margin-top: 16px;
    border-radius: 10px;
  }

  .campaign-hero {
    min-height: 560px;
    align-items: flex-start;
  }

  .campaign-overlay {
    padding: 36px 22px;
    justify-content: flex-start;
    background:
      linear-gradient(180deg, rgba(7, 6, 8, 0.98) 0%, rgba(7, 6, 8, 0.9) 34%, rgba(7, 6, 8, 0.48) 60%, rgba(7, 6, 8, 0.12) 100%),
      linear-gradient(90deg, rgba(7, 6, 8, 0.36), transparent 72%);
  }

  .campaign-heading {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 1.06;
  }

  .campaign-desc {
    font-size: 1rem;
    max-width: 34rem;
  }

  .campaign-actions {
    align-items: flex-start;
  }

  .campaign-banner-bg {
    object-position: center;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .campaign-hero {
    min-height: 520px;
  }
}

@media (min-width: 769px) {
  .campaign-hero {
    min-height: clamp(560px, 38vw, 680px);
  }
}

/* No horizontal overflow */
.campaign-hero-container,
.campaign-hero {
  max-width: 100%;
}

.product-loading-state,
.product-not-found {
  width: min(calc(100% - 32px), var(--pdp-max));
  margin: clamp(20px, 3vw, 38px) auto clamp(40px, 7vw, 88px);
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 10px;
  background: rgba(28, 24, 27, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.product-loading-state[hidden],
.product-not-found[hidden] {
  display: none;
}

.product-loading-state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: clamp(360px, 48vw, 560px);
  padding: clamp(22px, 4vw, 50px);
}

.product-loading-gallery {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

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

.skeleton-block,
.skeleton-line {
  display: block;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.05) 24%, rgba(238, 207, 143, 0.16) 42%, rgba(255, 255, 255, 0.06) 60%);
  background-size: 220% 100%;
  animation: product-skeleton-shimmer 1.35s ease-in-out infinite;
}

.skeleton-line {
  width: 100%;
  height: 15px;
  border-radius: 999px;
}

.skeleton-line-short { width: 24%; }
.skeleton-line-medium { width: 72%; }
.skeleton-line-title { width: 94%; height: 36px; }
.skeleton-line-title-short { width: 66%; }

@keyframes product-skeleton-shimmer {
  to { background-position: -220% 0; }
}

.product-not-found {
  max-width: 720px;
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.product-not-found h1 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.product-not-found p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .product-loading-state {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-loading-gallery {
    max-width: 360px;
    width: 100%;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-block,
  .skeleton-line {
    animation: none;
  }
}

/* Catalog card controls: selected variants need a compact, stable action area. */
.product-card {
  min-height: 0;
  height: 100%;
  grid-template-rows: 224px auto auto auto;
  align-content: start;
}

.product-actions,
.home-page .product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  width: 100%;
  margin-top: 0;
}

.product-actions .card-variant-field,
.product-actions .cart-add-button,
.product-actions .catalog-qty-stepper {
  width: 100%;
  min-width: 0;
}

.card-variant-field {
  gap: 4px;
  letter-spacing: 0.05em;
}

.card-variant-field select {
  min-height: 46px;
  padding-right: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-stock-state {
  min-height: 0;
  margin-top: 1px;
  font-size: 0.74rem;
  line-height: 1.3;
}

.product-actions .cart-add-button,
.product-actions .catalog-qty-stepper {
  min-height: 46px;
}

.curated-card {
  grid-template-rows: 280px auto auto;
  align-content: start;
}

.curated-card-actions {
  width: 100%;
}

.curated-campaign-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.coupon-section {
  gap: 12px;
}

.coupon-heading-row {
  display: block;
}

.coupon-heading-row h3 {
  white-space: nowrap;
}

.coupon-input-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.coupon-field input {
  min-width: 0;
}

.available-coupons {
  width: 100%;
}

.available-coupons-heading {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.9rem;
}

.available-coupon-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 5px 12px;
}

.available-coupon-code,
.available-coupon-title,
.available-coupon-detail,
.available-coupon-terms,
.available-coupon-savings {
  grid-column: 1;
  margin: 0;
  overflow-wrap: anywhere;
}

.available-coupon-detail,
.available-coupon-terms,
.available-coupon-savings {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.42;
}

.available-coupon-savings {
  color: #86d59b;
  font-weight: 750;
}

.available-coupon-apply {
  grid-column: 2;
  grid-row: 1 / span 6;
  align-self: center;
}

@media (max-width: 700px) {
  .product-card {
    grid-template-rows: 220px auto auto auto;
  }

  .curated-card,
  .compact-curated-grid .curated-card,
  .home-page .curated-card,
  .home-page .compact-curated-grid .curated-card {
    grid-template-rows: 230px auto auto;
  }

  .coupon-heading-row h3 {
    white-space: normal;
  }

  .coupon-input-row {
    grid-template-columns: 1fr;
  }

  .coupon-input-row .mini-button,
  .available-coupon-apply {
    width: 100%;
  }

  .available-coupon-card {
    grid-template-columns: 1fr;
  }

  .available-coupon-apply {
    grid-column: 1;
    grid-row: auto;
  }

  .available-coupon-card .available-coupon-status,
  .available-coupon-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .cart-loading {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    min-height: 148px;
    padding: 18px;
  }

  .cart-skeleton-image { width: 92px; height: 92px; }
}

.checkout-location-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.checkout-location-tools .checkout-location-status,
.checkout-location-tools .checkout-location-attribution {
  flex-basis: 100%;
}

.checkout-location-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  padding: 0;
  border: 1px solid rgba(220, 180, 96, .45);
  border-radius: 14px;
  color: inherit;
  background: #1a1718;
}

.checkout-location-dialog::backdrop { background: rgba(0, 0, 0, .74); }
.checkout-location-dialog-panel { position: relative; padding: 28px; overflow: auto; max-height: min(760px, calc(100dvh - 28px)); }
.checkout-location-dialog-close { position: absolute; top: 18px; right: 18px; }
.checkout-location-dialog h2 { margin: 0 48px 8px 0; }
.checkout-location-dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.checkout-location-dialog-actions .button { min-height: 44px; }
.checkout-location-search-results { display: grid; gap: 6px; margin: 8px 0; }
.checkout-location-result { width: 100%; padding: 10px 12px; text-align: left; color: inherit; border: 1px solid rgba(220, 180, 96, .24); border-radius: 8px; background: rgba(255, 255, 255, .04); cursor: pointer; }
.checkout-location-result:hover, .checkout-location-result:focus-visible { border-color: #e6bd69; background: rgba(230, 189, 105, .12); }
.checkout-location-map { position: relative; width: 100%; height: clamp(280px, 42vh, 390px); overflow: hidden; border: 1px solid rgba(220, 180, 96, .38); border-radius: 12px; background: #252122; }
.checkout-location-map.is-map-error::before { content: "Map unavailable"; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255, 245, 225, .75); }
.checkout-location-map .leaflet-control-attribution { max-width: calc(100% - 12px); white-space: normal; font-size: 10px; }
.checkout-location-map .leaflet-control-zoom a { color: #211b17; }
.checkout-location-marker { background: transparent; border: 0; }
.checkout-location-marker-pin {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin: 2px;
  border: 2px solid #fff2cd;
  border-radius: 50% 50% 50% 0;
  background: #d9ad55;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .5);
  transform: rotate(-45deg);
}
.checkout-location-marker-pin::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: #211913;
}

@media (max-width: 700px) {
  .checkout-location-dialog-panel { padding: 22px 18px; }
  .checkout-location-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .checkout-location-dialog-actions .button:last-child { grid-column: 1 / -1; }
  .checkout-location-tools .checkout-location-button { flex: 1 1 220px; }
  .checkout-location-map { height: clamp(240px, 38vh, 330px); }
}

/* Customer account and WhatsApp OTP screen. */
.account-main {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 88px) 0 clamp(64px, 9vw, 110px);
}

.account-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.account-head h1 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.account-subtitle,
.account-help {
  color: var(--muted);
  line-height: 1.6;
}

.account-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
}

.account-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.account-section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.account-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.account-form .button,
.account-otp-actions .button {
  min-height: 48px;
}

.account-otp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.account-otp-actions .button {
  flex: 1 1 240px;
}

.account-otp-actions .text-button {
  min-height: 44px;
}

.account-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-status[data-state="success"] { color: #99e5ad; }
.account-status[data-state="error"] { color: #ffb7bc; }

.account-profile-heading {
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.account-profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 34px;
}

.account-profile-list div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.account-profile-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-profile-list dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.account-orders-section {
  min-width: 0;
}

.account-orders {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.account-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.account-order-card h3,
.account-order-number,
.account-order-meta,
.account-order-total,
.account-order-card-details {
  min-width: 0;
  margin: 0;
}

.account-order-number {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.account-order-card h3 {
  font-size: 1rem;
  text-transform: capitalize;
}

.account-order-meta,
.account-order-card-details {
  color: var(--muted);
  font-size: 0.84rem;
}

.account-order-total {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  color: var(--accent-strong);
  white-space: nowrap;
}

.account-order-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.account-order-view {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 38px;
  padding-inline: 0;
}

.account-order-detail {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(214, 179, 106, 0.06);
}

.account-order-detail h3,
.account-order-detail-summary {
  margin: 0 0 8px;
}

.account-order-detail-summary,
.account-order-items {
  color: var(--muted);
  line-height: 1.5;
}

.account-order-items {
  margin: 12px 0;
  padding-left: 18px;
}

.account-empty,
.account-detail-loading {
  margin: 0;
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .header-account-link { display: none; }

  .account-main {
    width: min(100% - 24px, 760px);
    padding-top: 34px;
  }

  .account-shell { padding: 20px 16px; }

  .account-profile-list { grid-template-columns: 1fr; }

  .account-order-card { grid-template-columns: minmax(0, 1fr); }
  .account-order-total {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

/* Premium checkout choice cards: presentation only; existing radios and state handlers remain authoritative. */
.checkout-delivery-status-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin: 8px 0 2px;
  padding: 20px 22px;
  border: 1px solid rgba(238, 199, 117, 0.28);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(238, 199, 117, 0.08), rgba(255, 255, 255, 0.025));
}

.checkout-status-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(238, 199, 117, 0.32);
  border-radius: 50%;
  color: var(--accent-strong);
  background: rgba(0, 0, 0, 0.12);
}

.checkout-status-icon {
  position: relative;
  width: 64px;
  height: 64px;
}

.checkout-status-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--surface, #171314);
  border-radius: 50%;
  background: #72df9b;
}

.checkout-status-icon svg { width: 31px; height: 31px; }
.checkout-delivery-status-copy { display: grid; gap: 4px; min-width: 0; }
.checkout-card-eyebrow,
.checkout-section-heading small,
.checkout-delivery-estimate span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.checkout-card-eyebrow,
.checkout-section-heading > span > strong,
.checkout-delivery-estimate span {
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.checkout-delivery-status-copy > strong {
  color: var(--text, #f6f0e7);
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.checkout-delivery-status-copy > span:last-child { color: var(--muted); overflow-wrap: anywhere; }
.checkout-delivery-estimate { display: grid; gap: 4px; min-width: 150px; }
.checkout-delivery-estimate strong { color: var(--accent-strong); line-height: 1.25; overflow-wrap: anywhere; }
.checkout-delivery-change { min-height: 42px; white-space: nowrap; }
.checkout-delivery-status-panel[data-state="success"] .checkout-status-icon { box-shadow: 0 0 0 5px rgba(114, 223, 155, 0.08); }
.checkout-delivery-status-panel[data-state="error"] { border-color: rgba(255, 128, 136, 0.42); }
.checkout-delivery-status-panel[data-state="error"] .checkout-status-icon { color: #ffb7bc; border-color: rgba(255, 128, 136, 0.45); }

.checkout-choice-section { container-type: inline-size; }

.checkout-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
  margin-top: 18px;
}

.checkout-choice-grid legend,
.checkout-choice-grid .checkout-delivery-method-status {
  grid-column: 1 / -1;
}

@container (min-width: 720px) {
  .checkout-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.checkout-section-heading {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--accent-strong);
}

.checkout-section-heading > svg {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.checkout-section-heading > span { display: grid; gap: 5px; min-width: 0; }
.checkout-section-heading > span > strong { color: var(--accent-strong); font-size: 0.8rem; }
.checkout-section-heading small { display: block; letter-spacing: 0; text-transform: none; }

.checkout-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 22px 52px minmax(0, 1fr) 24px;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 14px;
  row-gap: 14px;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px 22px;
  border: 1px solid rgba(238, 199, 117, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease), transform 160ms var(--ease);
}

.checkout-choice-card:hover { border-color: rgba(238, 199, 117, 0.52); background: rgba(238, 199, 117, 0.045); }
.checkout-choice-card:focus-within { outline: 3px solid rgba(238, 199, 117, 0.28); outline-offset: 3px; }
.checkout-choice-card.is-selected { border-color: rgba(238, 199, 117, 0.92); background: rgba(238, 199, 117, 0.085); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18); }
.checkout-choice-card.is-unavailable { opacity: 0.56; cursor: not-allowed; }
.checkout-choice-card.is-unavailable:hover { border-color: rgba(238, 199, 117, 0.22); background: rgba(255, 255, 255, 0.018); }
.checkout-choice-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.checkout-choice-radio {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  inline-size: 20px;
  block-size: 20px;
  min-inline-size: 20px;
  min-block-size: 20px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
}

.checkout-choice-input:focus-visible + .checkout-choice-radio {
  outline: 3px solid rgba(238, 199, 117, 0.42);
  outline-offset: 3px;
}

.checkout-choice-card.is-selected .checkout-choice-radio::after {
  content: "";
  inline-size: 8px;
  block-size: 8px;
  min-inline-size: 8px;
  min-block-size: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-strong);
}

.checkout-choice-card.is-selected .checkout-choice-radio { border-color: var(--accent-strong); }

.checkout-choice-icon { grid-column: 2; grid-row: 1; display: grid; place-items: center; align-self: center; inline-size: 52px; block-size: 52px; min-inline-size: 52px; min-block-size: 52px; aspect-ratio: 1; border: 1px solid rgba(238, 199, 117, 0.26); border-radius: 50%; color: var(--accent-strong); background: rgba(0, 0, 0, 0.12); }
.checkout-choice-icon svg { width: 29px; height: 29px; }
.checkout-choice-body { grid-column: 3; grid-row: 1; display: grid; gap: 7px; min-width: 0; max-width: 100%; }
.checkout-choice-heading-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; min-width: 0; max-width: 100%; }
.checkout-choice-title { min-width: 0; color: var(--text, #f6f0e7); font-family: var(--font-display, Georgia, serif); font-size: clamp(1.25rem, 1.8vw, 1.45rem); line-height: 1.15; overflow-wrap: break-word; word-break: normal; white-space: normal; }
.checkout-choice-description,
.checkout-choice-meta { min-width: 0; max-width: 100%; color: var(--muted); font-size: 0.94rem; line-height: 1.45; overflow-wrap: break-word; word-break: normal; white-space: normal; hyphens: none; }
.checkout-choice-meta:empty { display: none; }
.checkout-choice-check { grid-column: 4; grid-row: 1; justify-self: end; align-self: start; color: var(--accent-strong); font-size: 0; font-weight: 900; opacity: 0; transform: scale(0.7); transition: opacity 160ms var(--ease), transform 160ms var(--ease); }
.checkout-choice-check::before { content: "\2713"; font-size: 1.1rem; }
.checkout-choice-card.is-selected .checkout-choice-check { opacity: 1; transform: scale(1); }
.checkout-choice-footer { grid-column: 2 / -1; grid-row: 2; min-width: 0; max-width: 100%; padding-top: 12px; border-top: 1px solid rgba(238, 199, 117, 0.18); color: var(--muted); font-size: 0.76rem; line-height: 1.35; letter-spacing: 0.09em; text-transform: uppercase; overflow-wrap: break-word; word-break: normal; white-space: normal; }
.checkout-choice-badge { flex: 0 1 auto; max-width: 100%; padding: 5px 8px; border: 1px solid rgba(238, 199, 117, 0.3); border-radius: 999px; color: var(--accent-strong); background: rgba(238, 199, 117, 0.1); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.1; white-space: normal; text-align: center; }
.checkout-trust-strip { display: flex; align-items: center; gap: 14px; min-width: 0; margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(238, 199, 117, 0.18); border-radius: 13px; background: rgba(255, 255, 255, 0.018); }
.checkout-trust-icon { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; color: var(--accent-strong); }
.checkout-trust-icon svg { width: 27px; height: 27px; }
.checkout-trust-strip > span:last-child { display: grid; gap: 3px; min-width: 0; }
.checkout-trust-strip strong { color: var(--accent-strong); font-family: var(--font-display, Georgia, serif); font-size: 1rem; }
.checkout-trust-strip small { color: var(--muted); line-height: 1.4; overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .checkout-delivery-status-panel { grid-template-columns: 54px minmax(0, 1fr) auto; gap: 13px; padding: 17px; }
  .checkout-status-icon { width: 54px; height: 54px; }
  .checkout-status-icon svg { width: 27px; height: 27px; }
  .checkout-delivery-estimate { grid-column: 2 / -1; min-width: 0; }
  .checkout-delivery-change { grid-column: 3; grid-row: 1; }
}

@media (max-width: 430px) {
  .checkout-delivery-status-panel { grid-template-columns: 46px minmax(0, 1fr); gap: 11px; padding: 15px; }
  .checkout-status-icon { width: 46px; height: 46px; }
  .checkout-status-icon::after { width: 8px; height: 8px; }
  .checkout-status-icon svg { width: 23px; height: 23px; }
  .checkout-delivery-change { grid-column: 2; grid-row: 1; justify-self: start; }
  .checkout-delivery-estimate { grid-column: 2; }
  .checkout-choice-card { grid-template-columns: 20px 40px minmax(0, 1fr) 20px; column-gap: 10px; row-gap: 12px; padding: 16px 14px; }
  .checkout-choice-radio { inline-size: 20px; block-size: 20px; min-inline-size: 20px; min-block-size: 20px; }
  .checkout-choice-icon { inline-size: 40px; block-size: 40px; min-inline-size: 40px; min-block-size: 40px; }
  .checkout-choice-icon svg { width: 23px; height: 23px; }
  .checkout-choice-title { font-size: 1.18rem; }
  .checkout-choice-description,
  .checkout-choice-meta { font-size: 0.86rem; }
  .checkout-choice-footer { grid-column: 2 / -1; padding-top: 10px; }
}

@media (max-width: 360px) {
  .checkout-fulfilment-methods { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-choice-card,
  .checkout-choice-check { transition: none; }
}

/* Customer account dashboard and order detail dialog. */
.account-main { width: min(100% - 32px, 1180px); }
.account-shell { width: 100%; max-width: none; padding: clamp(24px, 4vw, 48px); }
.account-loading { display: grid; gap: 13px; min-height: 240px; align-content: center; }
.account-loading-line { display: block; width: 62%; height: 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); animation: account-loading-pulse 1.2s ease-in-out infinite alternate; }
.account-loading-line-wide { width: 86%; height: 28px; }
.account-loading-line-short { width: 42%; }
@keyframes account-loading-pulse { from { opacity: 0.42; } to { opacity: 0.82; } }
.account-dashboard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.account-dashboard-head h2 { margin: 0 0 8px; font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); }
.account-dashboard-head .account-subtitle { margin: 0; }
.account-dashboard { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(22px, 4vw, 44px); padding-top: 28px; }
.account-dashboard-nav { display: grid; align-content: start; gap: 8px; min-width: 0; }
.account-nav-button { display: flex; align-items: center; justify-content: flex-start; width: 100%; min-height: 44px; padding: 10px 13px; border: 1px solid transparent; border-radius: var(--radius-sm); color: var(--muted); background: transparent; font: inherit; text-align: left; cursor: pointer; }
.account-nav-button:hover, .account-nav-button:focus-visible, .account-nav-button.is-active { border-color: rgba(214, 179, 106, 0.4); color: var(--text); background: rgba(214, 179, 106, 0.1); }
.account-nav-link { text-decoration: none; }
.account-dashboard-content, .account-view { min-width: 0; }
.account-view { display: block; }
.account-view[hidden] { display: none; }
.account-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 20px 0; }
.account-stat, .account-latest { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.025); }
.account-stat { display: grid; gap: 6px; }
.account-stat span { color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.account-stat strong { color: var(--accent-strong); font-size: 1.7rem; }
.account-latest { min-height: 120px; margin-bottom: 18px; }
.account-latest h3, .account-latest p { margin: 0; }
.account-latest-order-number { margin: 4px 0 6px !important; font-size: 1.2rem; }
.account-latest-order-copy { color: var(--muted); }
.account-section-heading { min-width: 0; }
.account-orders-toolbar { display: grid; grid-template-columns: minmax(180px, 1fr) auto; align-items: center; gap: 12px; margin: 20px 0 10px; }
.account-search-field, .account-search-field input { min-width: 0; width: 100%; }
.account-search-field input { min-height: 44px; }
.account-filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.account-filter-button { min-height: 40px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font: inherit; cursor: pointer; }
.account-filter-button:hover, .account-filter-button:focus-visible, .account-filter-button.is-active { border-color: rgba(214, 179, 106, 0.65); color: var(--text); background: rgba(214, 179, 106, 0.1); }
.account-orders { display: grid; gap: 14px; margin-top: 14px; }
.account-order-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px 24px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.025); }
.account-order-card-header { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.account-order-card-header > div { min-width: 0; }
.account-order-number, .account-order-meta, .account-order-items-preview { margin: 0; }
.account-order-number { color: var(--accent-strong); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; overflow-wrap: anywhere; }
.account-order-meta { color: var(--muted); font-size: 0.84rem; }
.account-order-card-header .account-status-badge { margin-left: auto; }
.account-status-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 0.74rem; font-weight: 800; white-space: nowrap; }
.account-status-confirmed, .account-status-paid, .account-status-delivered, .account-status-collected { border-color: rgba(119, 218, 143, 0.45); color: #99e5ad; }
.account-status-pending-payment, .account-status-payment-failed, .account-status-cancelled, .account-status-refunded { border-color: rgba(238, 199, 117, 0.45); color: var(--accent-strong); }
.account-order-card-summary { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; min-width: 0; }
.account-order-total { margin: 0; color: var(--accent-strong); white-space: nowrap; }
.account-order-items-preview { min-width: 0; color: var(--muted); overflow-wrap: anywhere; }
.account-order-card-details { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 7px 18px; color: var(--muted); font-size: 0.86rem; }
.account-order-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; }
.account-order-actions .button { min-height: 44px; }
.account-empty, .account-detail-loading { margin: 0; padding: 20px; border: 1px dashed var(--line); border-radius: var(--radius-sm); color: var(--muted); }
.account-order-dialog { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 16px; }
.account-order-dialog[hidden] { display: none; }
.account-order-dialog-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.72); }
.account-order-dialog-panel { position: relative; display: flex; flex-direction: column; width: min(100%, 780px); max-height: min(860px, calc(100vh - 32px)); overflow: hidden; border: 1px solid rgba(214, 179, 106, 0.45); border-radius: var(--radius-sm); background: #201c1e; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48); }
.account-order-dialog-close { align-self: flex-end; flex: 0 0 auto; min-height: 42px; margin: 14px 16px 0; padding: 8px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); background: transparent; font: inherit; cursor: pointer; }
.account-order-dialog-close:hover, .account-order-dialog-close:focus-visible { border-color: var(--accent-strong); color: var(--accent-strong); }
.account-order-detail { min-width: 0; overflow: auto; padding: 10px clamp(18px, 4vw, 34px) 34px; }
.account-detail-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 16px; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.account-detail-head .eyebrow, .account-detail-head h2, .account-detail-head .account-order-meta { grid-column: 1; margin: 0; }
.account-detail-head .account-status-badge { grid-column: 2; grid-row: 1 / span 3; }
.account-detail-order-number { overflow-wrap: anywhere; }
.account-detail-section { padding: 20px 0; border-bottom: 1px solid var(--line); }
.account-detail-section h3 { margin: 0 0 13px; font-size: 1.1rem; }
.account-detail-row { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; color: var(--muted); }
.account-detail-label { flex: 0 1 42%; }
.account-detail-value { flex: 1 1 auto; color: var(--text); text-align: right; overflow-wrap: anywhere; }
.account-detail-total { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--accent-strong); }
.account-detail-items { display: grid; gap: 10px; }
.account-detail-item { display: grid; gap: 4px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.account-detail-item span, .account-detail-item small { color: var(--muted); overflow-wrap: anywhere; }
.account-detail-section .button { margin-top: 10px; }
.account-dialog-open { overflow: hidden; }

@media (max-width: 760px) {
  .account-main { width: min(100% - 24px, 680px); }
  .account-shell { padding: 20px 16px; }
  .account-dashboard-head { flex-direction: column; }
  .account-dashboard-head .button { width: 100%; }
  .account-dashboard { grid-template-columns: 1fr; gap: 20px; }
  .account-dashboard-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-nav-button { justify-content: center; text-align: center; }
  .account-overview-grid { grid-template-columns: 1fr; }
  .account-orders-toolbar { grid-template-columns: 1fr; }
  .account-filter-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-filter-button { width: 100%; }
  .account-order-card { grid-template-columns: 1fr; padding: 16px; }
  .account-order-card-header { display: grid; }
  .account-order-card-header .account-status-badge { margin-left: 0; justify-self: start; }
  .account-order-card-summary { align-items: flex-start; flex-direction: column-reverse; gap: 7px; }
  .account-order-actions .button { flex: 1 1 180px; }
  .account-order-dialog { padding: 0; place-items: stretch; }
  .account-order-dialog-panel { width: 100%; max-height: 100%; min-height: 100%; border-radius: 0; }
  .account-order-dialog-close { margin-top: 10px; }
  .account-detail-row { display: grid; gap: 3px; }
  .account-detail-label, .account-detail-value { text-align: left; }
}

@media (max-width: 360px) {
  .account-dashboard-nav, .account-filter-group { grid-template-columns: 1fr; }
  .account-order-actions .button { width: 100%; }
}

/* Customer profile and order-card refinements. */
.account-profile-list { display: grid; gap: 0; margin: 20px 0 10px; }
.account-profile-list > div { display: grid; grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr); gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.account-profile-list dt { color: var(--muted); }
.account-profile-list dd { min-width: 0; margin: 0; color: var(--text); overflow-wrap: anywhere; }
.account-profile-phone-control { margin: 12px 0 16px; }
.account-phone-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font: inherit; cursor: pointer; }
.account-phone-toggle:hover, .account-phone-toggle:focus-visible { border-color: var(--accent-strong); color: var(--accent-strong); }
.account-phone-toggle-icon { display: inline-flex; width: 18px; height: 18px; line-height: 1; }
.account-phone-toggle-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.account-edit-profile { min-height: 44px; }
.account-profile-form { display: grid; gap: 14px; max-width: 620px; margin-top: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.025); }
.account-profile-form .field { min-width: 0; }
.account-profile-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.account-profile-actions .button { min-height: 44px; }
.account-order-card > * { min-width: 0; }
.account-order-card-header { min-width: 0; }
.account-order-card-header > div { overflow-wrap: anywhere; }
.account-order-card-summary { align-items: start; }
.account-order-items-preview { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; line-height: 1.45; }
.account-order-actions { align-items: stretch; }
.account-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }
.account-payment-retry-button { min-width: 150px; }
.payment-account-retry-link { text-align: center; }
.account-order-view-button { display: inline-flex; align-items: center; justify-content: center; width: max-content; min-width: 126px; min-height: 42px; padding: 10px 20px; white-space: nowrap; line-height: 1.2; overflow-wrap: normal; }
.account-order-view-button:hover, .account-order-view-button:focus-visible { border-color: var(--accent-strong); color: var(--accent-strong); }
.checkout-account-notice { grid-column: 1 / -1; margin: -5px 0 0; color: var(--accent-strong); font-size: 0.82rem; line-height: 1.4; }

@media (max-width: 760px) {
  .account-profile-list > div { grid-template-columns: 1fr; gap: 4px; }
  .account-order-card-summary { flex-direction: column; align-items: flex-start; }
  .account-order-view-button { width: 100%; }
}

/* Final account profile and current-product preview layout. */
.account-dashboard {
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  align-items: start;
}

.account-dashboard-nav,
.account-dashboard-content,
.account-view,
.account-profile-grid,
.account-profile-card,
.account-profile-phone-row,
.account-profile-form {
  min-width: 0;
}

.account-profile-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-profile-heading-row > div { min-width: 0; }
.account-profile-heading-row h2 { margin: 0; }
.account-profile-edit-button { flex: 0 0 auto; min-height: 44px; }

.account-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.account-profile-card {
  display: grid;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.account-profile-card__label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.account-profile-card__value {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.account-profile-email { grid-column: 1 / -1; }

.account-profile-phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-profile-phone-row .account-profile-card__value { flex: 1 1 auto; }

.account-phone-toggle.account-profile-card__action {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

.account-phone-toggle-icon,
.account-phone-toggle-icon svg {
  width: 18px;
  height: 18px;
}

.account-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
}

.account-profile-form .field-wide { grid-column: auto; }
.account-profile-actions { grid-column: 1 / -1; margin-top: 2px; }
.account-view[data-account-view="profile"] > .account-help { margin-top: 16px; }

.account-order-product-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(214, 179, 106, 0.38);
  color: var(--text);
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: left;
  cursor: pointer;
}

.account-order-product-link:hover,
.account-order-product-link:focus-visible {
  border-bottom-color: var(--accent-strong);
  color: var(--accent-strong);
}

.account-product-preview {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.account-product-preview-back {
  justify-self: start;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.account-product-preview-back:hover,
.account-product-preview-back:focus-visible {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.account-product-preview-head { min-width: 0; }
.account-product-preview-head h2 { margin: 0 0 6px; overflow-wrap: anywhere; }
.account-product-preview-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.account-product-preview-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.account-product-preview-image-empty { color: var(--muted); }
.account-product-preview-price-section { display: grid; gap: 4px; }
.account-product-preview-price,
.account-product-preview-history,
.account-product-preview-mrp { margin: 0; }
.account-product-preview-price { color: var(--accent-strong); font-size: 1.35rem; font-weight: 900; }
.account-product-preview-mrp { color: var(--muted); }
.account-product-preview-history { color: var(--muted); font-size: 0.88rem; }
.account-product-preview-variant-field,
.account-product-preview-quantity { display: grid; gap: 7px; min-width: 0; color: var(--muted); font-weight: 700; }
.account-product-preview-variant-field select,
.account-product-preview-quantity input { width: 100%; min-height: 44px; box-sizing: border-box; }
.account-product-preview-note { margin: 0; color: var(--accent-strong); line-height: 1.45; }
.account-product-preview-availability { margin: 0; color: var(--muted); }
.account-product-preview-availability.is-available { color: #99e5ad; }
.account-product-preview-actions { display: flex; flex-wrap: wrap; gap: 10px; min-width: 0; }
.account-product-preview-actions .button { flex: 1 1 180px; min-height: 44px; }

@media (max-width: 760px) {
  .account-dashboard { grid-template-columns: 1fr; }
  .account-profile-grid,
  .account-profile-form { grid-template-columns: 1fr; }
  .account-profile-email,
  .account-profile-form .field-wide,
  .account-profile-actions { grid-column: auto; }
  .account-profile-heading-row { align-items: flex-start; }
  .account-profile-edit-button { width: auto; }
  .account-product-preview-actions .button { flex-basis: 100%; }
}

/* Keep the desktop Cart and account actions identical in size and alignment. */
@media (min-width: 861px) {
  .site-header .header-cart-link,
  .site-header .header-account-link {
    width: 106px;
    min-width: 106px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--text);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-sizing: border-box;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
  }

  .site-header .header-cart-link [data-cart-count] {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    box-sizing: border-box;
    flex: 0 0 auto;
    line-height: 1;
    transform: none;
    font-variant-numeric: tabular-nums;
  }

  .site-header .header-cart-link:hover,
  .site-header .header-cart-link:focus-visible,
  .site-header .header-account-link:hover,
  .site-header .header-account-link:focus-visible {
    border-color: rgba(214, 179, 106, 0.46);
    color: var(--text);
    background: rgba(214, 179, 106, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  }
}

/* Cart page presentation: keep cart state and quote controls unchanged. */
.cart-main {
  width: min(100% - 32px, 1240px);
}

.cart-head {
  border-bottom: 1px solid rgba(214, 179, 106, 0.18);
  padding-bottom: 22px;
}

.cart-benefits-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 179, 106, 0.18);
  color: var(--muted);
  font-size: 0.83rem;
}

.cart-benefits-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-benefit-mark,
.cart-payment-assurance-icon,
.cart-reassurance-icon,
.cart-item-delivery-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 179, 106, 0.55);
  border-radius: 50%;
  color: var(--gold, #d6b36a);
  font-size: 0.72rem;
  line-height: 1;
}

.cart-layout {
  align-items: start;
  gap: 24px;
}

.cart-items {
  min-width: 0;
  gap: 16px;
}

.cart-item {
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 25, 25, 0.96), rgba(17, 15, 16, 0.96));
}

.cart-item-media {
  width: 154px;
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 14px;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-body {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
  align-items: start;
  gap: 16px 22px;
  min-width: 0;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-heading {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-item-name {
  display: block;
  max-width: 100%;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.2;
}

.cart-item-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #76d995;
  font-size: 0.78rem;
}

.cart-item-stock > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(118, 217, 149, 0.12);
}

.cart-item-meta-list {
  margin-top: 9px;
}

.cart-item-meta-list p {
  margin: 0;
}

.cart-item-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cart-item-price strong {
  color: var(--gold, #d6b36a);
  font-size: 1.18rem;
}

.cart-item-mrp {
  color: var(--muted);
  text-decoration: line-through;
}

.cart-item-discount {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.14);
  color: var(--gold, #d6b36a);
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-item-delivery-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 12px;
  background: rgba(214, 179, 106, 0.06);
}

.cart-item-delivery-chip > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.cart-item-delivery-chip small {
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-item-delivery-chip strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.25;
}

.cart-item-delivery-chip em {
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.2;
}

.cart-item-delivery-chip[data-state="pending"] strong {
  color: var(--muted);
  font-weight: 500;
}

.cart-item-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(214, 179, 106, 0.14);
}

.cart-item-line {
  display: flex;
  align-items: center;
  justify-items: initial;
  gap: 12px;
  text-align: left;
}

.cart-line-total {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.cart-remove {
  padding: 5px 0;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  color: #e58b83;
}

.cart-summary {
  top: 96px;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(31, 28, 29, 0.98), rgba(18, 16, 17, 0.98));
}

.cart-summary h2 {
  margin-bottom: 2px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.cart-summary-rows {
  gap: 0;
}

.cart-summary-rows .summary-group {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.16);
}

.cart-summary-rows .summary-item-count {
  margin-bottom: 12px;
}

#summaryTotal {
  padding: 16px 0 2px;
}

#summaryTotal .summary-payable {
  align-items: baseline;
  border: 0;
  padding: 0;
}

#summaryTotal .summary-payable strong {
  color: var(--gold, #d6b36a);
  font-size: 1.65rem;
}

.cart-summary .coupon-section,
.cart-summary .delivery-estimator,
.cart-summary #summaryDelivery {
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 14px;
  background: rgba(12, 11, 12, 0.26);
}

.cart-summary .coupon-section {
  margin: 0;
}

.cart-summary .delivery-estimator {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.cart-summary #summaryDelivery {
  padding-block: 12px;
}

.cart-summary .summary-delivery-group {
  padding: 0;
  border: 0;
}

.cart-summary .summary-delivery-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-summary .summary-delivery-tat {
  margin: 8px 0 0;
  color: #76d995;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.cart-payment-assurance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-payment-assurance > div {
  display: grid;
  gap: 2px;
}

.cart-payment-assurance strong {
  color: var(--text);
  font-size: 0.82rem;
}

.cart-payment-assurance-icon {
  width: 28px;
  height: 28px;
}

.cart-summary-actions .button {
  min-height: 50px;
  width: 100%;
  justify-content: center;
}

.cart-summary-note {
  display: none;
}

.cart-reassurance {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 18px;
}

.cart-layout[hidden] + .cart-reassurance {
  display: none;
}

.cart-reassurance h2 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

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

.cart-reassurance-grid > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

.cart-reassurance-grid strong,
.cart-reassurance-grid > div > span:last-child {
  grid-column: 2;
}

.cart-reassurance-grid > div > span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-reassurance-icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
}

@media (max-width: 760px) {
  .cart-main {
    width: min(100% - 24px, 620px);
  }

  .cart-benefits-strip {
    gap: 10px 16px;
  }

  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .cart-item-media {
    width: 96px;
  }

  .cart-item-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item-delivery-chip,
  .cart-item-controls {
    grid-column: 1;
  }

  .cart-item-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item-line {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cart-reassurance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 460px) {
  .cart-benefits-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cart-benefits-strip > span:last-child {
    grid-column: 1 / -1;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-item-media {
    width: 82px;
  }

  .cart-summary .delivery-estimator {
    grid-template-columns: 1fr;
  }

  .cart-summary .delivery-estimator .mini-button {
    width: 100%;
  }
}

.cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  padding: 10px 0;
}

.cart-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.cart-progress-step strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.cart-progress-step.is-active {
  color: var(--text);
}

.cart-progress-step.is-active strong {
  border-color: var(--gold, #d6b36a);
  background: linear-gradient(135deg, #f2d48c, #c9963c);
  color: #15110d;
  box-shadow: 0 8px 22px rgba(214, 179, 106, 0.18);
}

.cart-progress-connector {
  width: clamp(24px, 5vw, 64px);
  border-top: 1px dotted rgba(214, 179, 106, 0.48);
}

.cart-coupon-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.cart-coupon-accordion > summary::-webkit-details-marker {
  display: none;
}

.cart-coupon-accordion > summary h3 {
  margin: 0;
}

.coupon-chevron {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 179, 106, 0.32);
  border-radius: 50%;
  color: var(--gold, #d6b36a);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cart-coupon-accordion > summary:hover .coupon-chevron,
.cart-coupon-accordion > summary:focus-visible .coupon-chevron {
  background: rgba(214, 179, 106, 0.12);
}

.cart-coupon-accordion:not([open]) .coupon-chevron {
  transform: rotate(180deg);
}

.cart-coupon-accordion[open] > :not(summary) {
  animation: cart-coupon-reveal 180ms ease both;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.cart-remove-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.cart-item,
.cart-summary,
.cart-reassurance {
  animation: cart-surface-in 240ms ease both;
}

.cart-item-controls .qty-value {
  transition: color 160ms ease, transform 160ms ease;
}

.cart-item-controls:focus-within .qty-value {
  color: var(--gold, #d6b36a);
  transform: scale(1.06);
}

.delivery-estimate-message,
.cart-summary #summaryDelivery {
  animation: cart-delivery-fade 220ms ease both;
}

.cart-summary-actions .button.button-primary {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cart-summary-actions .button.button-primary:not(.disabled-link):hover,
.cart-summary-actions .button.button-primary:not(.disabled-link):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(214, 179, 106, 0.22);
  filter: saturate(1.08);
}

@keyframes cart-surface-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cart-coupon-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cart-delivery-fade {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

@media (min-width: 1181px) {
  .cart-layout {
    grid-template-columns: minmax(0, 68fr) minmax(320px, 32fr);
  }
}

@media (max-width: 620px) {
  .cart-progress {
    justify-content: flex-start;
    gap: 7px;
    margin-bottom: 18px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scrollbar-width: none;
  }

  .cart-progress::-webkit-scrollbar {
    display: none;
  }

  .cart-progress-step {
    gap: 5px;
    font-size: 0.72rem;
  }

  .cart-progress-step strong {
    width: 29px;
    height: 27px;
  }

  .cart-progress-connector {
    width: 18px;
    flex: 0 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-item,
  .cart-summary,
  .cart-reassurance,
  .cart-coupon-accordion[open] > :not(summary),
  .delivery-estimate-message,
  .cart-summary #summaryDelivery {
    animation: none;
  }

  .coupon-chevron,
  .cart-item-controls .qty-value,
  .cart-summary-actions .button.button-primary {
    transition: none;
  }
}

/* Final cart presentation: wide reference layout, icon system and recommendations. */
.cart-main {
  width: min(calc(100% - 40px), 1500px);
  max-width: none;
  padding-top: clamp(24px, 3.5vw, 48px);
}

.cart-main .cart-head h1 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  letter-spacing: 0;
}

.cart-main .cart-head .cart-sub {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.cart-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  overflow: visible;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.2em;
}

.cart-icon-inline {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: -0.22em;
}

.cart-benefit-mark,
.cart-payment-assurance-icon,
.cart-reassurance-icon,
.cart-item-delivery-icon {
  color: var(--gold, #d6b36a);
}

.cart-benefit-mark .cart-icon,
.cart-payment-assurance-icon .cart-icon,
.cart-reassurance-icon .cart-icon,
.cart-item-delivery-icon .cart-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  vertical-align: middle;
}

.cart-progress {
  max-width: 620px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.cart-layout {
  grid-template-columns: minmax(0, 68fr) minmax(340px, 32fr);
  gap: clamp(24px, 3vw, 44px);
}

.cart-items {
  min-width: 0;
  gap: 22px;
}

.cart-items > #cartItems {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.cart-item {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 250px;
  padding: 20px;
  border-radius: 22px;
}

.cart-item-media {
  width: 190px;
  min-height: 190px;
  border-radius: 18px;
}

.cart-item-body {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 235px);
  align-items: start;
  gap: 18px 28px;
}

.cart-item-name {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.18;
}

.cart-item-stock {
  font-size: 0.8rem;
}

.cart-item-meta-list {
  margin-top: 13px;
}

.cart-item-meta-list p {
  font-size: 0.96rem;
}

.cart-item-price {
  margin-top: 20px;
}

.cart-item-price strong {
  font-size: 1.3rem;
}

.cart-item-delivery-chip {
  align-self: start;
  min-height: 76px;
  padding: 14px;
  border-radius: 15px;
}

.cart-item-delivery-chip strong {
  font-size: 0.84rem;
}

.cart-item-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(214, 179, 106, 0.16);
}

.qty-stepper {
  min-width: 132px;
  min-height: 46px;
  justify-self: start;
  padding: 3px 5px;
}

.qty-btn {
  width: 40px;
  height: 40px;
}

.qty-btn .cart-icon {
  width: 18px;
  height: 18px;
  margin: 0;
  vertical-align: middle;
}

.cart-item-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-line-total {
  font-size: 1.18rem;
}

.cart-remove {
  min-height: 38px;
  padding-inline: 10px;
}

.cart-remove-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  vertical-align: middle;
}

.cart-summary {
  top: 96px;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 22px;
}

.cart-summary h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.cart-summary .summary-payable strong,
#summaryTotal .summary-payable strong {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.cart-summary .coupon-section,
.cart-summary .delivery-estimator,
.cart-summary #summaryDelivery {
  border-color: rgba(214, 179, 106, 0.28);
  border-radius: 16px;
}

.cart-summary .coupon-heading-row h3 {
  display: inline-flex;
  align-items: center;
  font-size: 0.96rem;
}

.cart-summary .coupon-chevron {
  display: inline-grid;
}

.cart-summary .coupon-chevron .cart-icon {
  width: 16px;
  height: 16px;
  margin: 0;
  vertical-align: middle;
}

.cart-summary .delivery-estimator-field > span {
  display: inline-flex;
  align-items: center;
}

.cart-summary .summary-delivery-group .summary-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-summary .summary-delivery-icon {
  width: 21px;
  height: 21px;
  margin: 0;
  color: var(--gold, #d6b36a);
  vertical-align: middle;
}

.cart-summary .summary-delivery-tat {
  padding-left: 29px;
  font-size: 0.82rem;
}

.cart-summary-actions .button.button-primary {
  min-height: 56px;
  border-radius: 16px;
  font-size: 0.98rem;
}

.cart-payment-assurance {
  padding-top: 7px;
}

.cart-reassurance {
  width: 100%;
  margin-top: 0;
  padding: 22px 24px;
  border-radius: 20px;
}

.cart-reassurance h2 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
}

.cart-reassurance-grid {
  gap: 20px;
}

.cart-reassurance-grid > div {
  min-width: 0;
}

.cart-recommendations {
  margin-top: clamp(30px, 4vw, 52px);
}

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

.cart-recommendations-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-inline: 4px;
}

.cart-recommendations-head .eyebrow {
  margin-bottom: 7px;
}

.cart-recommendations-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.cart-recommendations-head p:not(.eyebrow) {
  margin: 5px 0 0;
  color: var(--muted);
}

.cart-recommendations-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold, #d6b36a);
  font-weight: 700;
  white-space: nowrap;
}

.cart-recommendations-link .cart-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  vertical-align: middle;
  transition: transform 180ms var(--ease);
}

.cart-recommendations-link:hover .cart-icon,
.cart-recommendations-link:focus-visible .cart-icon {
  transform: translateX(3px);
}

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

.cart-recommendation-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 158px;
  padding: 14px;
  border: 1px solid rgba(214, 179, 106, 0.22);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(28, 25, 25, 0.94), rgba(17, 15, 16, 0.94));
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.cart-recommendation-card:hover,
.cart-recommendation-card:focus-within {
  border-color: rgba(214, 179, 106, 0.52);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.cart-recommendation-media {
  display: grid;
  place-items: center;
  width: 92px;
  height: 130px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 252, 244, 0.97), rgba(238, 231, 219, 0.85));
}

.cart-recommendation-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-recommendation-copy {
  display: grid;
  align-content: start;
  min-width: 0;
  padding-right: 30px;
}

.cart-recommendation-copy small {
  color: var(--gold, #d6b36a);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-recommendation-copy h3 {
  margin: 5px 0 8px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.cart-recommendation-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.cart-recommendation-copy strong {
  align-self: end;
  color: var(--gold, #d6b36a);
  font-size: 1rem;
}

.cart-recommendation-add {
  position: absolute;
  right: 12px;
  bottom: 14px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(214, 179, 106, 0.5);
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.06);
  color: var(--gold, #d6b36a);
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.cart-recommendation-add:hover,
.cart-recommendation-add:focus-visible {
  background: var(--gold, #d6b36a);
  color: #17110d;
  transform: scale(1.06);
}

.cart-recommendation-add:disabled {
  cursor: wait;
  opacity: 0.55;
}

.cart-recommendation-add .cart-icon {
  width: 17px;
  height: 17px;
  margin: 0;
  vertical-align: middle;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .cart-main {
    width: min(calc(100% - 40px), 1040px);
  }

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

@media (max-width: 860px) {
  .cart-main {
    width: min(calc(100% - 28px), 760px);
  }

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

  .cart-summary {
    position: static;
  }

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

@media (max-width: 620px) {
  .cart-main {
    width: min(calc(100% - 24px), 520px);
  }

  .cart-head h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

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

  .cart-benefits-strip > span:last-child {
    grid-column: auto;
  }

  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 14px;
  }

  .cart-item-media {
    width: 96px;
    min-height: 96px;
  }

  .cart-item-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cart-item-delivery-chip,
  .cart-item-controls {
    grid-column: 1;
  }

  .cart-item-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-item-line {
    justify-content: space-between;
  }

  .cart-recommendations-head {
    align-items: start;
    flex-direction: column;
  }

  .cart-recommendations-link {
    font-size: 0.86rem;
  }

  .cart-recommendations-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .cart-recommendations-grid::-webkit-scrollbar {
    display: none;
  }

  .cart-recommendation-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-item-media {
    width: 82px;
    min-height: 82px;
  }

  .cart-recommendation-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cart-recommendation-media {
    width: 82px;
    height: 122px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-recommendation-card,
  .cart-recommendation-add,
  .cart-recommendations-link .cart-icon {
    transition: none;
  }
}

/* Checkout reference presentation. This layer changes layout only; checkout
   state, validation and shipping/payment contracts remain unchanged. */
.checkout-main {
  width: min(calc(100% - 40px), 1500px);
  max-width: none;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 52px);
  overflow-x: auto;
  padding: 3px 2px;
  scrollbar-width: none;
}

.checkout-progress::-webkit-scrollbar {
  display: none;
}

.checkout-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-progress-step strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream, #f5eee5);
  font-size: 0.72rem;
}

.checkout-progress-step.is-active {
  border-color: rgba(236, 199, 113, 0.85);
  background: linear-gradient(135deg, #f5d187, #c99b4d);
  color: #21170f;
  box-shadow: 0 9px 26px rgba(211, 163, 75, 0.16);
}

.checkout-progress-step.is-active strong {
  background: rgba(255, 255, 255, 0.72);
  color: #3a2817;
}

.checkout-progress-connector {
  flex: 0 0 42px;
  border-top: 1px dotted rgba(214, 179, 106, 0.46);
}

.checkout-main .cart-head {
  max-width: none;
  margin-bottom: 24px;
}

.checkout-main .cart-head h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.checkout-main .cart-layout {
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.checkout-main .checkout-form-wrap {
  padding: clamp(20px, 3vw, 38px);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(39, 34, 32, 0.94), rgba(22, 19, 20, 0.98));
}

.checkout-main .checkout-form-wrap > h2 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.checkout-main .field-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
}

.checkout-main .field-grid .field-wide {
  grid-column: 1 / -1;
}

.checkout-main .checkout-fulfilment-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.checkout-main .checkout-fulfilment-methods legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 2px;
}

.checkout-section-heading {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.checkout-section-heading > svg {
  width: 21px;
  height: 21px;
  color: var(--gold, #d6b36a);
}

.checkout-section-heading > span {
  display: grid;
  gap: 2px;
}

.checkout-section-heading strong {
  color: var(--cream, #f5eee5);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-section-heading small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-main .checkout-fulfilment-option {
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.checkout-main .checkout-fulfilment-option.is-selected {
  border-color: rgba(236, 199, 113, 0.78);
  background: rgba(214, 179, 106, 0.08);
}

.checkout-main .checkout-choice-grid {
  grid-template-columns: 1fr !important;
  gap: 10px;
}

.checkout-main .checkout-choice-card {
  grid-template-columns: 26px 48px minmax(0, 1fr) minmax(120px, auto);
  grid-template-rows: auto;
  min-height: 86px;
  padding: 15px 18px;
  border-radius: 12px;
}

.checkout-main .checkout-choice-body {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}

.checkout-main .checkout-choice-heading-row {
  padding-right: 24px;
}

.checkout-main .checkout-choice-footer {
  grid-column: 4;
  grid-row: 1;
  align-self: center;
  border-top: 0;
  padding: 0;
  text-align: right;
}

.checkout-main .checkout-choice-check {
  position: absolute;
  top: 13px;
  right: 14px;
  grid-column: auto;
  grid-row: auto;
}

.checkout-main .checkout-location-tools {
  display: grid;
  grid-template-columns: 1fr;
  grid-column: 1 / -1;
  gap: 10px;
  margin-top: 2px;
}

.checkout-main .cart-progress {
  max-width: 760px;
}

.checkout-main .cart-progress-step.is-completed {
  color: var(--text);
}

.checkout-main .cart-progress-step.is-completed strong {
  border-color: rgba(214, 179, 106, 0.62);
  background: rgba(214, 179, 106, 0.08);
  color: var(--gold, #d6b36a);
}

.checkout-main .checkout-location-button {
  width: 100%;
}

.checkout-main .checkout-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 12px;
  font-size: 1rem;
}

.checkout-main .checkout-submit > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.checkout-main .checkout-submit .checkout-submit-arrow {
  width: 22px;
  height: 22px;
}

.checkout-main .cart-summary {
  position: sticky;
  top: 96px;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(40, 35, 34, 0.94), rgba(23, 20, 21, 0.98));
}

.checkout-main .cart-summary h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.checkout-main .checkout-items {
  gap: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.16);
}

.checkout-main .checkout-line {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-main .checkout-line-media {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.checkout-main .checkout-line-info strong {
  font-size: 0.95rem;
}

.checkout-main #summaryTotal {
  padding: 4px 0 8px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.2);
}

.checkout-main #summaryTotal .summary-payable {
  border-top: 0;
  padding: 0;
}

.checkout-main #summaryTotal .summary-payable strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.checkout-main .coupon-section,
.checkout-main #summaryDelivery {
  padding: 16px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
}

.checkout-main .checkout-summary-assurance {
  display: grid;
  gap: 0;
  margin-top: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 179, 106, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.1);
}

.checkout-summary-assurance > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(214, 179, 106, 0.14);
}

.checkout-summary-assurance > div:last-child {
  border-bottom: 0;
}

.checkout-summary-assurance-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(214, 179, 106, 0.38);
  border-radius: 50%;
  color: var(--gold, #d6b36a);
}

.checkout-summary-assurance-icon svg {
  width: 18px;
  height: 18px;
}

.checkout-summary-assurance strong,
.checkout-summary-assurance small {
  display: block;
}

.checkout-summary-assurance strong {
  color: var(--cream, #f5eee5);
  font-size: 0.84rem;
}

.checkout-summary-assurance small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.checkout-main .cart-continue {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(214, 179, 106, 0.3);
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 1180px) and (min-width: 861px) {
  .checkout-main {
    width: min(calc(100% - 32px), 1120px);
  }

  .checkout-main .cart-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  }
}

@media (max-width: 860px) {
  .checkout-main {
    width: min(calc(100% - 28px), 760px);
  }

  .checkout-main .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-main .cart-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .checkout-main .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-main .checkout-name-field {
    grid-column: 1 / -1;
  }

  .checkout-main .checkout-choice-card {
    grid-template-columns: 24px 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .checkout-main .checkout-choice-footer {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .checkout-main {
    width: min(calc(100% - 20px), 520px);
  }

  .checkout-progress {
    justify-content: flex-start;
    gap: 7px;
    margin-bottom: 28px;
  }

  .checkout-progress-step {
    gap: 6px;
    padding-right: 10px;
    font-size: 0.74rem;
  }

  .checkout-progress-connector {
    flex-basis: 18px;
  }

  .checkout-main .field-grid,
  .checkout-main .checkout-fulfilment-methods,
  .checkout-main .checkout-location-tools {
    grid-template-columns: 1fr;
  }

  .checkout-main .checkout-fulfilment-methods legend,
  .checkout-main .checkout-name-field {
    grid-column: auto;
  }

  .checkout-main .checkout-form-wrap,
  .checkout-main .cart-summary {
    padding: 18px;
  }

  .checkout-main .checkout-choice-card {
    grid-template-columns: 22px 40px minmax(0, 1fr);
    padding: 14px;
  }

  .checkout-main .checkout-choice-footer {
    grid-column: 2 / -1;
  }

  .checkout-main .checkout-submit {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-progress-step,
  .checkout-main .checkout-submit,
  .checkout-main .checkout-choice-card {
    transition: none;
  }
}

/* =========================================================
   Payment page: secure two-column presentation
   ========================================================= */
.payment-page-main {
  width: min(calc(100% - 40px), 1440px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 0 clamp(48px, 6vw, 84px);
}

.payment-progress {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.payment-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 68fr) minmax(320px, 32fr);
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
}

.payment-panel,
.payment-summary-card,
.payment-fulfilment-card,
.payment-help-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.payment-panel {
  display: grid;
  gap: 24px;
  max-width: none;
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 8% 0, rgba(214, 179, 106, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  animation: payment-panel-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.payment-panel-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.payment-panel-heading h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4.2rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.payment-panel-heading .eyebrow {
  margin: 0 0 8px;
}

.payment-status-icon {
  width: clamp(64px, 7vw, 82px);
  height: clamp(64px, 7vw, 82px);
  flex: 0 0 auto;
}

.payment-icon-svg,
.payment-phonepe-mark svg,
.payment-heading-icon svg,
.payment-trust-row svg,
.payment-copy-button svg,
.payment-redirect-lock svg {
  width: 1.35em;
  height: 1.35em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.payment-icon-svg {
  width: 30px;
  height: 30px;
}

.payment-status-icon.is-success {
  border-color: rgba(107, 205, 132, 0.58);
  color: #79d995;
  background: rgba(74, 157, 92, 0.13);
}

.payment-pending-copy {
  max-width: 62ch;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.payment-phonepe-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(214, 179, 106, 0.36);
  border-radius: 18px;
  background: rgba(10, 9, 11, 0.42);
}

.payment-phonepe-card[hidden],
.payment-fulfilment-card[hidden],
.payment-redirect-overlay[hidden] {
  display: none;
}

.payment-phonepe-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.payment-kicker,
.payment-phonepe-heading h2,
.payment-phonepe-heading p,
.payment-phonepe-copy,
.payment-help-card p,
.payment-action-support,
.payment-action-error {
  margin: 0;
}

.payment-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-phonepe-heading h2 {
  margin-top: 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.payment-phonepe-heading p,
.payment-phonepe-copy {
  color: var(--muted);
  line-height: 1.55;
}

.payment-phonepe-heading p {
  margin-top: 8px;
}

.payment-phonepe-mark,
.payment-heading-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 50%;
  color: var(--accent-strong);
  background: rgba(214, 179, 106, 0.08);
}

.payment-method-labels,
.payment-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-method-labels span {
  padding: 8px 12px;
  border: 1px solid rgba(214, 179, 106, 0.2);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.payment-trust-row {
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.payment-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.payment-trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent-strong);
}

.payment-pending-actions {
  width: 100%;
  display: grid;
  gap: 9px;
}

.payment-pending-actions[hidden] {
  display: none;
}

.payment-primary-action {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 14px;
  font-size: 1rem;
}

.payment-primary-action:not(:disabled):hover,
.payment-primary-action:not(:disabled):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(214, 179, 106, 0.24);
}

.payment-primary-action.is-processing {
  cursor: wait;
}

.payment-action-support,
.payment-action-error {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.payment-action-error,
.payment-panel-error {
  min-height: 1.3em;
  color: #f0a0a0;
}

.payment-panel-error {
  margin: 0;
}

.payment-page-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 20px;
  animation: payment-sidebar-in 520ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.payment-summary-card,
.payment-fulfilment-card,
.payment-help-card {
  padding: clamp(20px, 2.2vw, 30px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)), var(--panel);
}

.payment-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-card-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.payment-heading-icon {
  width: 42px;
  height: 42px;
}

.payment-status-grid {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.payment-status-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
}

.payment-status-grid dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.payment-status-grid dd {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.payment-status-grid .payment-discount-row dd {
  color: #79d995;
}

.payment-copy-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 14px 0 4px;
}

.payment-copy-order > span:first-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.payment-copy-order strong {
  grid-column: 1 / -1;
  color: var(--text);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.payment-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid rgba(214, 179, 106, 0.34);
  border-radius: 8px;
  color: var(--accent-strong);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.payment-copy-button svg {
  width: 14px;
  height: 14px;
}

.payment-copy-status {
  grid-column: 1 / -1;
  min-height: 1em;
  color: #79d995;
  font-size: 0.76rem;
}

.payment-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.payment-summary-total span {
  color: var(--text);
  font-weight: 800;
}

.payment-summary-total strong {
  color: var(--accent-strong);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  white-space: nowrap;
}

.payment-fulfilment-type {
  margin: 20px 0 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.payment-fulfilment-address {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.payment-fulfilment-date,
.payment-fulfilment-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.payment-pickup-map {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.payment-help-card .payment-card-heading {
  align-items: flex-start;
}

.payment-help-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.payment-help-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.payment-help-links a {
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.payment-track-link {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.payment-redirect-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 5, 7, 0.82);
  backdrop-filter: blur(6px);
}

.payment-redirect-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100%, 360px);
  padding: 30px 24px;
  border: 1px solid rgba(214, 179, 106, 0.45);
  border-radius: 18px;
  background: var(--panel);
  color: var(--text);
  text-align: center;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}

.payment-redirect-card > span:not(.payment-redirect-lock) {
  color: var(--muted);
}

.payment-redirect-card small {
  color: var(--muted);
}

.payment-redirect-lock {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--accent-strong);
  border-radius: 50%;
  color: var(--accent-strong);
  animation: payment-lock-spin 900ms linear infinite;
}

.payment-redirect-lock svg {
  width: 26px;
  height: 26px;
}

@keyframes payment-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes payment-sidebar-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes payment-lock-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .payment-page-layout {
    grid-template-columns: 1fr;
  }

  .payment-page-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .payment-page-main {
    width: min(100% - 24px, 620px);
    padding-top: 22px;
  }

  .payment-panel,
  .payment-summary-card,
  .payment-fulfilment-card,
  .payment-help-card {
    padding: 20px 16px;
  }

  .payment-panel-heading {
    grid-template-columns: 1fr;
  }

  .payment-status-icon {
    width: 58px;
    height: 58px;
  }

  .payment-panel-heading h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .payment-phonepe-heading {
    align-items: flex-start;
  }

  .payment-phonepe-mark {
    width: 40px;
    height: 40px;
  }

  .payment-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .payment-status-grid div {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-panel,
  .payment-page-sidebar,
  .payment-redirect-lock {
    animation: none;
  }

  .payment-primary-action {
    transition: none;
  }
}

/* Payment status feedback stays compact while leaving the summary readable. */
.payment-panel {
  gap: 18px;
  padding: clamp(22px, 2.5vw, 34px);
}

.payment-panel-heading {
  gap: 14px;
}

.payment-panel-heading h1 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3.1vw, 3.35rem);
  line-height: 1.06;
}

.payment-panel-heading .eyebrow {
  margin-bottom: 4px;
}

.payment-phonepe-card {
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
}

.payment-phonepe-heading p,
.payment-phonepe-copy,
.payment-action-support {
  color: #b9b1a6;
}

.payment-status-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(6rem, 45%);
  align-items: start;
  gap: 12px;
}

.payment-status-grid dt,
.payment-status-grid dd {
  min-width: 0;
  line-height: 1.35;
}

.payment-status-grid dd {
  max-width: 100%;
}

.payment-summary-total {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.payment-copy-order {
  align-items: start;
}

.payment-copy-order strong {
  max-width: 100%;
  line-height: 1.35;
}

.payment-copy-button {
  white-space: nowrap;
}

.payment-copy-button.is-copied {
  border-color: rgba(121, 217, 149, 0.5);
  color: #79d995;
}

.payment-fulfilment-date {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
}

.payment-fulfilment-date span {
  color: #b9b1a6;
}

.payment-fulfilment-date strong {
  color: var(--accent-strong);
  text-align: right;
  overflow-wrap: anywhere;
}

.payment-state-message {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(214, 179, 106, 0.28);
  border-radius: 10px;
  color: #c9c0b4;
  background: rgba(214, 179, 106, 0.07);
  line-height: 1.45;
}

.payment-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(25, 22, 24, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: payment-spinner 0.7s linear infinite;
}

.payment-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

@keyframes payment-spinner {
  to { transform: rotate(360deg); }
}

@media (max-width: 620px) {
  .payment-panel-heading h1 {
    max-width: none;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .payment-status-grid div {
    grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 42%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-spinner {
    animation: none;
  }

  .payment-panel-heading h1,
  .payment-copy-button {
    transition: none;
  }
}

/* Monetary summary rows are independent full-width label/value pairs. */
.payment-summary-rows {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 22px 0 0;
}

.payment-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 16px;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.payment-summary-label,
.payment-summary-value {
  min-width: 0;
  line-height: 1.35;
}

.payment-summary-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.payment-summary-value {
  max-width: 100%;
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.payment-summary-row--discount .payment-summary-value {
  color: #79d995;
}

.payment-summary-total {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.payment-summary-total .payment-summary-label {
  color: var(--text);
  font-weight: 800;
}

.payment-summary-total .payment-summary-value {
  color: var(--accent-strong);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

@media (max-width: 620px) {
  .payment-summary-row {
    column-gap: 8px;
  }

  .payment-summary-label {
    font-size: 0.8rem;
  }

  .payment-summary-value {
    font-size: 0.86rem;
  }
}

.payment-track-action {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.payment-track-link {
  margin-top: 0;
}

@media (max-width: 620px) {
  .payment-track-action {
    margin-top: 16px;
    padding-top: 16px;
  }
}
