:root {
  color-scheme: dark;
  --bg: #050506;
  --surface: #0d0f10;
  --surface-2: #151819;
  --line: rgba(238, 232, 218, 0.17);
  --text: #f6f3ec;
  --muted: #b3ada2;
  --accent: #d6bd7a;
  --accent-2: #8fc7b5;
  --danger: #d87f7f;
  --shadow: rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(214, 189, 122, 0.055), transparent 260px),
    linear-gradient(135deg, rgba(143, 199, 181, 0.06), transparent 36%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.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-shell {
  min-height: 100vh;
}

.compliance-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #e9dcc0, #f7f1e3, #c7a866);
  color: #0b0b0c;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(14, 18, 19, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #080909, #151819);
  border: 1px solid rgba(214, 189, 122, 0.46);
  color: var(--accent);
  font-weight: 900;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.nav-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-button:hover,
.nav-button:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-button {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.product-category-nav {
  position: sticky;
  top: 73px;
  z-index: 18;
  border-bottom: 1px solid rgba(238, 232, 218, 0.13);
  background:
    linear-gradient(180deg, rgba(12, 15, 15, 0.96), rgba(8, 10, 10, 0.92)),
    rgba(8, 10, 10, 0.92);
  backdrop-filter: blur(18px);
}

.product-category-nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-category-nav-inner::-webkit-scrollbar {
  display: none;
}

.product-category-nav-inner span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-category-nav-inner a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(238, 232, 218, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #ded8ca;
  font-size: 0.82rem;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-category-nav-inner a:hover,
.product-category-nav-inner a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(214, 189, 122, 0.42);
  background: rgba(214, 189, 122, 0.11);
  color: #fff5d8;
  outline: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.button:disabled:hover,
.button:disabled:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
}

.button svg,
.nav-button svg,
.contact-methods svg,
.check-list svg,
.compliance-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: linear-gradient(135deg, #f5e8c3, #c8a860);
  color: #070707;
  box-shadow: 0 16px 30px var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #fff3d1, #d8b86e);
  outline: none;
}

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

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.78) 48%, rgba(5, 5, 6, 0.18)),
    linear-gradient(180deg, rgba(214, 189, 122, 0.09), rgba(5, 5, 6, 0.58));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  padding: 86px 0;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-badge-row .eyebrow {
  margin: 0;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(214, 189, 122, 0.55);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.12);
  color: #f5e8c3;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  color: #ddd8ce;
  font-size: 1.1rem;
}

.hero-actions,
.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(238, 232, 218, 0.22);
  border-radius: 8px;
  background: rgba(238, 232, 218, 0.06);
  color: #eee8da;
  font-size: 0.86rem;
  font-weight: 800;
}

.credential-row svg {
  width: 17px;
  height: 17px;
  color: var(--accent-2);
}

.trust-section {
  padding: 32px 0;
  background:
    linear-gradient(90deg, rgba(214, 189, 122, 0.12), rgba(143, 199, 181, 0.06), rgba(214, 189, 122, 0.08)),
    #08090a;
  border-block: 1px solid rgba(238, 232, 218, 0.15);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
}

.trust-inner p {
  margin: 0;
  color: #f5e8c3;
  font-size: 1.38rem;
  font-weight: 900;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfd8c8;
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-points svg {
  width: 17px;
  height: 17px;
  color: var(--accent-2);
}

.notice-band {
  padding: 36px 0;
  background: #0c1010;
  border-block: 1px solid var(--line);
}

.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
}

.notice-grid h2,
.notice-grid p {
  margin-bottom: 0;
}

.notice-grid p {
  color: #d6dfd8;
}

.section {
  padding: 124px 0;
}

.section-contrast {
  background: #0a0d0e;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading p,
.page-hero p,
.category-panel p,
.compliance-card p,
.faq-list p,
.legal-copy p,
.contact-panel p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 34px;
}

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

.product-card,
.compliance-card,
.faq-list article,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    var(--surface);
  box-shadow: 0 18px 44px var(--shadow);
}

.product-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.014);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #0c0f0f;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(214, 189, 122, 0.08), 0 0 34px rgba(214, 189, 122, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06) brightness(1.02);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-body p {
  color: var(--muted);
}

.product-card-price,
.popular-category-price,
.category-featured-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 232, 218, 0.1);
}

.product-card-price strong,
.popular-category-price strong,
.category-featured-price strong {
  color: #f5e8c3;
  font-size: 1.3rem;
  line-height: 1;
}

.product-card-price span,
.popular-category-price span,
.category-featured-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: right;
}

.sale-price-stack {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.sale-price-top {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.sale-original-price {
  color: rgba(222, 216, 202, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration-color: rgba(216, 127, 127, 0.75);
  text-decoration-thickness: 2px;
}

.sale-discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(214, 189, 122, 0.46);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.13);
  color: #f5e8c3;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sale-current-price {
  color: #fff3d0;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1;
}

.sale-urgency {
  color: #d6bd7a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sale-meta-note {
  max-width: 96px;
  padding-top: 2px;
}

.card-body a,
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.split p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.check-list svg,
.compliance-card svg {
  color: var(--accent);
}

.page-hero {
  padding: 78px 0 58px;
  background:
    linear-gradient(90deg, rgba(14, 18, 19, 0.98), rgba(20, 31, 31, 0.9)),
    url("assets/hero-licensed-retailer.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 860px;
}

.page-hero h1 {
  font-size: 3rem;
}

.sitewide-sale-banner {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(214, 189, 122, 0.2);
  background:
    linear-gradient(90deg, rgba(214, 189, 122, 0.16), rgba(255, 255, 255, 0.035), rgba(143, 199, 181, 0.06)),
    #080b0b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.sitewide-sale-inner {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  min-height: 68px;
  padding-block: 12px;
}

.sale-banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(214, 189, 122, 0.52);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.14);
  color: #f5e8c3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sitewide-sale-inner strong {
  color: #fff3d0;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.15;
}

.sitewide-sale-inner p {
  max-width: 680px;
  margin: 0 0 0 auto;
  color: rgba(222, 216, 202, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.14);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(9, 12, 12, 0.9) 54%, rgba(9, 12, 12, 0.68)),
    url("assets/hero-premium-products.png") center right / cover;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 189, 122, 0.6), transparent);
}

.product-filter-section {
  padding: 76px 0 86px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 84% 0%, rgba(214, 189, 122, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    #070a0a;
}

.filter-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.filter-section-head div {
  max-width: 760px;
}

.filter-section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.filter-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.product-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.product-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.product-hero-copy > p {
  max-width: 680px;
  color: #e2ded5;
  font-size: 1.08rem;
}

.hero-featured-category {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 189, 122, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 189, 122, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 9, 9, 0.72);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.hero-featured-category span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-featured-category strong {
  color: #fff5d8;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-featured-category p {
  margin: 0;
  color: rgba(226, 222, 213, 0.76);
  font-size: 0.92rem;
}

.product-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-hero-trust span,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #e8dfcc;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-hero-trust svg {
  width: 17px;
  height: 17px;
  color: var(--accent-2);
}

.hero-focus-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 189, 122, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 10, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.028);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-focus-panel:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(214, 189, 122, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 189, 122, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024)),
    rgba(9, 11, 11, 0.98);
  box-shadow: 0 42px 108px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(214, 189, 122, 0.09), 0 0 38px rgba(214, 189, 122, 0.1);
}

.hero-focus-image {
  display: grid;
  place-items: center;
  min-height: 350px;
  margin: 26px 26px 0;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(235, 229, 216, 0.94) 56%, rgba(188, 176, 151, 0.78)),
    #eee8da;
}

.hero-focus-image img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  padding: 22px;
  filter: saturate(1.05) contrast(1.08);
}

.hero-focus-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
}

.hero-focus-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.12;
}

.hero-focus-copy p {
  margin: 0;
  color: rgba(222, 216, 202, 0.74);
  line-height: 1.55;
}

.featured-spotlight-section {
  padding: 86px 0 92px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 199, 181, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    #080b0b;
}

.compact-heading {
  margin-bottom: 40px;
}

.compact-heading p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.featured-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 40px;
  align-items: stretch;
}

.featured-products-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 189, 122, 0.09), transparent 28%),
    radial-gradient(circle at 14% 16%, rgba(143, 199, 181, 0.07), transparent 24%),
    #090c0c;
}

.featured-products-heading {
  display: grid;
  gap: 10px;
}

.featured-products-heading p:not(.eyebrow) {
  color: var(--muted);
}

.product-showcase-stack {
  display: grid;
  gap: 104px;
}

.product-showcase-block {
  position: relative;
}

.product-showcase-block + .product-showcase-block {
  padding-top: 92px;
  border-top: 1px solid rgba(238, 232, 218, 0.12);
}

.showcase-heading {
  margin-bottom: 42px;
}

.showcase-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 40px;
  align-items: stretch;
}

.featured-retail-card {
  position: relative;
  display: flex;
  min-height: 548px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #0b0e0e;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  animation: productFadeUp 560ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.featured-retail-card.is-best-seller::after,
.ted-product-card.is-best-seller::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(214, 189, 122, 0.16);
}

.featured-retail-card:nth-child(2) {
  animation-delay: 70ms;
}

.featured-retail-card:nth-child(3) {
  animation-delay: 140ms;
}

.featured-retail-card:nth-child(4) {
  animation-delay: 210ms;
}

.featured-retail-card:hover {
  transform: translateY(-6px) scale(1.018);
  border-color: rgba(214, 189, 122, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    #0d1010;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(214, 189, 122, 0.08), 0 0 36px rgba(214, 189, 122, 0.09);
}

.featured-retail-image {
  display: grid;
  place-items: center;
  flex: 0 0 238px;
  min-height: 238px;
  margin: 24px 24px 0;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(235, 229, 216, 0.92) 54%, rgba(188, 176, 151, 0.78)),
    #eee8da;
}

.featured-retail-image img {
  width: 100%;
  height: 222px;
  object-fit: contain;
  padding: 18px;
  filter: saturate(1.04) contrast(1.08);
}

.featured-retail-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 17px;
  padding: 30px;
}

.featured-retail-body h3 {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.22;
}

.featured-retail-body p:not(.featured-product-label) {
  margin: 0;
  color: rgba(222, 216, 202, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.featured-retail-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 232, 218, 0.11);
}

.featured-retail-meta strong {
  color: #f5e8c3;
  font-size: 1.42rem;
  line-height: 1;
}

.featured-retail-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: right;
}

.popular-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 40px;
  align-items: stretch;
}

.popular-category-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #0b0e0e;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  animation: productFadeUp 560ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.popular-category-card:nth-child(2) {
  animation-delay: 70ms;
}

.popular-category-card:nth-child(3) {
  animation-delay: 140ms;
}

.popular-category-card:nth-child(4) {
  animation-delay: 210ms;
}

.popular-category-card:hover,
.popular-category-card:focus-within {
  transform: translateY(-6px) scale(1.018);
  border-color: rgba(214, 189, 122, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    #0d1010;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(214, 189, 122, 0.08), 0 0 36px rgba(214, 189, 122, 0.09);
  outline: none;
}

.popular-category-media {
  display: grid;
  gap: 12px;
  height: 232px;
  padding: 18px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 189, 122, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #070909;
}

.popular-category-media img {
  width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96), rgba(235, 229, 216, 0.91) 56%, rgba(188, 176, 151, 0.78)),
    #eee8da;
  filter: saturate(1.02) contrast(1.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.category-media-cigarettes,
.category-media-all {
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.category-media-cigarettes img:first-child,
.category-media-all img:first-child {
  grid-row: 1 / -1;
}

.category-media-single {
  grid-template-columns: 1fr;
}

.category-media-single img {
  padding: 10px;
}

.category-media-zyn img {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), rgba(225, 219, 207, 0.88) 58%, rgba(162, 149, 119, 0.7)),
    #ece5d5;
}

.category-media-cannabis img {
  object-fit: cover;
  padding: 0;
}

.popular-category-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
}

.popular-category-card h3 {
  margin: 0;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.22;
}

.popular-category-card .product-action-button {
  margin-top: 2px;
}

.product-list {
  display: grid;
  gap: 68px;
}

.category-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)), var(--surface);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  animation: productFadeUp 520ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.category-panel:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(214, 189, 122, 0.34);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32), 0 0 34px rgba(214, 189, 122, 0.07);
}

.category-panel > img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(1.02);
}

.category-product-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
  min-height: 470px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 0%, rgba(214, 189, 122, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #070909;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.category-product-collage::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(214, 189, 122, 0.12);
  border-radius: 8px;
}

.collage-product-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.014)),
    rgba(10, 13, 13, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  animation: productFadeUp 520ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.collage-product-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 15, 0.98);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36), 0 0 30px rgba(214, 189, 122, 0.08);
}

.collage-product-card-featured {
  grid-row: span 2;
  min-height: 392px;
  padding: 18px;
}

.collage-product-card-offset {
  transform: translateY(14px);
}

.collage-product-card-offset:hover {
  transform: translateY(8px) scale(1.012);
}

.collage-product-card img {
  width: 100%;
  height: 122px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96), rgba(235, 229, 216, 0.92) 58%, rgba(188, 176, 151, 0.78)),
    #eee8da;
  filter: saturate(1.04) contrast(1.08);
}

.collage-product-card-featured img {
  height: 252px;
  padding: 18px;
}

.collage-product-card figcaption {
  display: grid;
  gap: 5px;
}

.collage-product-card figcaption span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collage-product-card figcaption strong {
  color: #f3eddf;
  font-size: 0.98rem;
  line-height: 1.18;
}

.customer-reviews-section {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 189, 122, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.01)),
    #080b0b;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
}

.customer-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.customer-reviews-head div {
  max-width: 720px;
}

.customer-reviews-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.customer-reviews-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.customer-reviews-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(214, 189, 122, 0.38);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.1);
  color: #f5e8c3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.customer-review-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.014)),
    rgba(11, 14, 14, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.customer-review-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 15, 0.98);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32), 0 0 30px rgba(214, 189, 122, 0.07);
}

.customer-review-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.customer-review-topline strong {
  color: #f3eddf;
  font-size: 1rem;
  line-height: 1.2;
}

.customer-review-topline time {
  color: rgba(222, 216, 202, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-review-stars {
  display: flex;
  gap: 6px;
  color: #f5e8c3;
}

.customer-review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.customer-review-stars .star-dim {
  color: rgba(222, 216, 202, 0.24);
}

.customer-review-product {
  margin: 0;
  color: rgba(222, 216, 202, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.customer-review-text {
  margin: auto 0 0;
  color: rgba(222, 216, 202, 0.74);
  font-size: 0.95rem;
  line-height: 1.55;
}

.category-featured-product {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 20px 0 16px;
  padding: 16px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(6, 8, 8, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.category-featured-product:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(8, 10, 10, 0.88);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26), 0 0 28px rgba(214, 189, 122, 0.06);
}

.category-featured-image {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.95), rgba(232, 226, 212, 0.9) 58%, rgba(179, 166, 137, 0.72)),
    #eee8da;
}

.category-featured-image img {
  width: 100%;
  height: 96px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 10px;
  filter: saturate(1.04) contrast(1.08);
}

.featured-product-label {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-featured-product h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.category-featured-product p:not(.featured-product-label) {
  margin: 0;
  font-size: 0.9rem;
}

.category-featured-price {
  margin: 12px 0;
}

.plain-list {
  margin: 18px 0 8px;
  padding-left: 20px;
  color: #dce4dd;
}

.plain-list li + li {
  margin-top: 8px;
}

.zyn-picker {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 0%, rgba(214, 189, 122, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    var(--surface);
  box-shadow: 0 18px 44px var(--shadow);
}

.nicotine-pouches-feature {
  border-color: rgba(214, 189, 122, 0.26);
}

.zyn-picker-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.zyn-picker-head-feature {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
}

.zyn-category-visual {
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background: #070808;
}

.zyn-category-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.88), rgba(218, 211, 196, 0.92) 62%, rgba(143, 132, 108, 0.72)),
    #ede8dc;
  filter: saturate(1.02) contrast(1.06);
  padding: 14px;
}

.zyn-picker-head p {
  color: var(--muted);
}

.zyn-warning {
  margin: 14px 0 0;
  color: #f3de9f;
  font-weight: 900;
}

.zyn-rule-list {
  margin-bottom: 0;
}

.zyn-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.zyn-toolbar h3 {
  margin-bottom: 0;
}

.zyn-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-pill {
  min-height: 38px;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  border-color: rgba(214, 189, 122, 0.55);
  color: var(--text);
  background: rgba(214, 189, 122, 0.12);
  outline: none;
}

.zyn-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 24px;
  align-items: start;
}

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

.zyn-card {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  animation: productFadeUp 520ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.zyn-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(214, 189, 122, 0.34);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.32), 0 0 34px rgba(214, 189, 122, 0.08);
}

.zyn-card.is-selected {
  border-color: rgba(214, 189, 122, 0.72);
  box-shadow: 0 0 0 1px rgba(214, 189, 122, 0.2), 0 16px 36px rgba(0, 0, 0, 0.28);
}

.zyn-card-top {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.zyn-tin {
  position: relative;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.85), transparent 12%),
    conic-gradient(from 180deg, var(--tin-color), var(--tin-accent), var(--tin-color));
  border: 11px solid #f0f0ec;
  box-shadow: inset 0 -22px 0 rgba(245, 245, 242, 0.92), 0 14px 26px rgba(0, 0, 0, 0.34);
}

.zyn-tin::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.42);
}

.zyn-logo {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  text-align: center;
  color: #f5f5f1;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
  line-height: 1;
}

.zyn-logo strong {
  font-size: 2rem;
  font-weight: 900;
}

.zyn-logo span {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.zyn-info h3 {
  margin-bottom: 6px;
}

.zyn-info p {
  margin-bottom: 12px;
  color: var(--muted);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 0 9px;
  background: rgba(143, 199, 181, 0.13);
  color: #bce8dc;
  font-size: 0.78rem;
  font-weight: 900;
}

.stock-badge.low {
  background: rgba(214, 189, 122, 0.13);
  color: #f3de9f;
}

.stock-badge.out {
  background: rgba(216, 127, 127, 0.13);
  color: #e9a7a7;
}

.zyn-price,
.ted-product-price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(238, 232, 218, 0.1);
}

.zyn-price strong,
.ted-product-price strong {
  color: #f5e8c3;
  font-size: 1.3rem;
  line-height: 1;
}

.zyn-price span,
.ted-product-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: right;
}

.zyn-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 12px;
}

.zyn-actions label {
  display: grid;
  gap: 7px;
  color: #ded8ca;
  font-size: 0.84rem;
  font-weight: 900;
}

.zyn-actions select,
.qty-control {
  min-height: 42px;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background: #080a0a;
  color: var(--text);
}

.zyn-actions select {
  padding: 0 12px;
}

.qty-control {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  overflow: hidden;
}

.qty-control button {
  border: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.qty-control button:hover,
.qty-control button:focus-visible {
  background: rgba(214, 189, 122, 0.16);
  outline: none;
}

.qty-control input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-weight: 900;
}

.select-flavor-button {
  width: 100%;
  min-height: 48px;
  border-color: rgba(214, 189, 122, 0.36);
  background:
    linear-gradient(135deg, rgba(214, 189, 122, 0.18), rgba(214, 189, 122, 0.07));
  color: #fff3d0;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.select-flavor-button:hover,
.select-flavor-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 189, 122, 0.64);
  background:
    linear-gradient(135deg, rgba(214, 189, 122, 0.28), rgba(214, 189, 122, 0.12));
  color: #fff8df;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 24px rgba(214, 189, 122, 0.08);
}

.zyn-selection-preview {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(214, 189, 122, 0.3);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(214, 189, 122, 0.08), rgba(255, 255, 255, 0.02)),
    #090b0b;
  box-shadow: 0 18px 44px var(--shadow);
}

.selection-preview-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
}

.selection-preview-line span {
  color: var(--muted);
}

.selection-preview-line strong {
  text-align: right;
}

.selection-preview-note {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-selection-button {
  width: 100%;
}

.legacy-catalog {
  border-top: 1px solid rgba(238, 232, 218, 0.12);
}

.legacy-catalog .container {
  width: min(1180px, calc(100% - 40px));
}

.legacy-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  margin-bottom: 36px;
}

.legacy-catalog-head p {
  color: var(--muted);
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(5, minmax(130px, 0.76fr));
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 189, 122, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(8, 10, 10, 0.9);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.catalog-controls label {
  display: grid;
  gap: 8px;
  color: #ded8ca;
  font-weight: 900;
}

.catalog-controls input,
.catalog-controls select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background: #080a0a;
  color: var(--text);
  padding: 0 12px;
}

.catalog-controls input:focus,
.catalog-controls select:focus {
  outline: 2px solid rgba(214, 189, 122, 0.52);
  outline-offset: 2px;
}

.catalog-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.ted-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 42px;
  align-items: stretch;
}

.ted-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 526px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(238, 232, 218, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    #0b0d0e;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  animation: productFadeUp 520ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.ted-product-card:hover {
  transform: translateY(-6px) scale(1.014);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #0c0f0f;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(214, 189, 122, 0.08), 0 0 36px rgba(214, 189, 122, 0.08);
}

.ted-product-card.is-best-seller {
  border-color: rgba(214, 189, 122, 0.3);
}

.ted-product-image {
  display: grid;
  place-items: center;
  flex: 0 0 232px;
  height: 232px;
  margin: 24px 24px 0;
  border: 1px solid rgba(238, 232, 218, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(235, 229, 216, 0.92) 54%, rgba(188, 176, 151, 0.78)),
    #eee8da;
}

.ted-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: saturate(1.04) contrast(1.08);
}

.is-fallback-image {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(235, 229, 216, 0.9) 58%, rgba(188, 176, 151, 0.76)),
    #eee8da;
}

.ted-product-image img.ted-product-fallback-image {
  padding: 22px;
  filter: saturate(0.98) contrast(1.05);
}

.ted-product-fallback {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(214, 189, 122, 0.4);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 900;
}

.ted-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 17px;
  padding: 30px;
}

.ted-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ted-product-category {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.best-seller-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(214, 189, 122, 0.48);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.14);
  color: #f5e8c3;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.best-seller-badge.subtle {
  border-color: rgba(238, 232, 218, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #e8dfcc;
}

.ted-product-body h3 {
  display: -webkit-box;
  min-height: 4.2em;
  margin: 0;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.32;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ted-product-meta {
  color: #cfc5b4;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.45;
}

.ted-product-note {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(238, 232, 218, 0.1);
  color: rgba(222, 216, 202, 0.66);
  font-size: 0.8rem;
  line-height: 1.45;
}

.product-action-button {
  width: 100%;
  min-height: 48px;
  border-color: rgba(214, 189, 122, 0.44);
  background:
    linear-gradient(135deg, rgba(214, 189, 122, 0.22), rgba(214, 189, 122, 0.08));
  color: #fff3d0;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.product-action-button:hover,
.product-action-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 189, 122, 0.68);
  background:
    linear-gradient(135deg, rgba(214, 189, 122, 0.3), rgba(214, 189, 122, 0.13));
  color: #fff8df;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 24px rgba(214, 189, 122, 0.08);
}

.product-action-button:disabled {
  opacity: 0.94;
  box-shadow: inset 0 0 0 1px rgba(214, 189, 122, 0.08);
}

.product-action-button:disabled:hover,
.product-action-button:disabled:focus-visible {
  transform: none;
  border-color: rgba(214, 189, 122, 0.28);
  background: rgba(214, 189, 122, 0.08);
  color: #f5e8c3;
}

@keyframes productFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background: rgba(8, 10, 10, 0.74);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.product-confidence {
  border-top: 1px solid rgba(238, 232, 218, 0.12);
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 189, 122, 0.08), transparent 28%),
    #090c0c;
}

.product-confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.product-confidence-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

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

.confidence-cards article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.confidence-cards svg {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  color: var(--accent);
}

.confidence-cards h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.confidence-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.launch-contact-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(238, 232, 218, 0.12);
  border-bottom: 1px solid rgba(238, 232, 218, 0.12);
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 189, 122, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #070909;
}

.launch-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.launch-contact-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.launch-contact-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.launch-contact-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 189, 122, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    rgba(13, 17, 16, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 34px rgba(214, 189, 122, 0.06);
}

.launch-contact-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(238, 232, 218, 0.1);
}

.launch-contact-row:last-child {
  border-bottom: 0;
}

.launch-contact-row span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-contact-row a,
.launch-contact-row strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.launch-contact-field {
  margin: 0;
}

.launch-contact-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.launch-contact-field input::placeholder {
  color: rgba(245, 239, 223, 0.58);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    #080b0b;
}

.testimonials-heading p:not(.eyebrow) {
  color: var(--muted);
}

.reviews-coming-soon {
  display: grid;
  gap: 24px;
}

.review-status-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(238, 232, 218, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 189, 122, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(11, 14, 14, 0.94);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.review-status-card > svg {
  width: 58px;
  height: 58px;
  padding: 15px;
  border: 1px solid rgba(214, 189, 122, 0.34);
  border-radius: 8px;
  background: rgba(214, 189, 122, 0.08);
  color: var(--accent);
}

.review-status-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.review-status-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.review-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-status-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8dfcc;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.testimonial-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(238, 232, 218, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012)),
    rgba(11, 14, 14, 0.94);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  animation: productFadeUp 560ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.testimonial-card:nth-child(2) {
  animation-delay: 90ms;
}

.testimonial-card:nth-child(3) {
  animation-delay: 180ms;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(214, 189, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.016)),
    rgba(12, 15, 15, 0.98);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.34), 0 0 34px rgba(214, 189, 122, 0.08);
}

.testimonial-card.featured-review {
  border-color: rgba(214, 189, 122, 0.34);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.3), 0 0 34px rgba(214, 189, 122, 0.07);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  color: #f5e8c3;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial-card blockquote {
  margin: 0;
  color: #f3eddf;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .featured-spotlight-grid,
  .featured-product-grid,
  .popular-category-grid,
  .customer-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .catalog-search-control {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .featured-spotlight-grid,
  .featured-product-grid,
  .popular-category-grid,
  .customer-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ted-product-card {
    min-height: 410px;
  }

  .ted-product-image {
    flex-basis: 200px;
    height: 200px;
  }
}

@media (max-width: 560px) {
  .featured-spotlight-grid,
  .featured-product-grid,
  .popular-category-grid,
  .customer-review-grid,
  .ted-product-grid {
    grid-template-columns: 1fr;
  }
}

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

.compliance-card {
  padding: 26px;
}

.compliance-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}

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

.faq-list article {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 26px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #dce4dd;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dce4dd;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c1210;
  color: var(--text);
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(76, 181, 159, 0.72);
  outline-offset: 2px;
}

.full-span {
  grid-column: 1 / -1;
}

.form-warning {
  margin: 0;
  color: var(--danger);
  font-weight: 800;
}

.form-status {
  margin: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #080b0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.site-footer p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(10, 14, 15, 0.88), rgba(10, 14, 15, 0.94)),
    url("assets/hero-premium-products.png") center / cover;
}

.age-verified .age-gate {
  display: none;
}

.age-gate-panel {
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 22, 23, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.age-gate-panel h2 {
  font-size: 2.35rem;
}

.age-gate-panel p {
  color: #d8e1da;
}

.fine-print,
.warning-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.warning-note {
  color: var(--danger);
  font-weight: 800;
}

@media (max-width: 920px) {
  .compliance-strip {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .filter-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-category-nav {
    top: 72px;
  }

  .site-nav a,
  .nav-button {
    justify-content: space-between;
  }

  h1 {
    font-size: 3rem;
  }

  .card-grid.three,
  .product-hero-grid,
  .filter-section-head,
  .product-confidence-grid,
  .launch-contact-grid,
  .confidence-cards,
  .testimonial-grid,
  .trust-inner,
  .notice-grid,
  .split,
  .category-panel,
  .category-featured-product,
  .zyn-picker-head,
  .zyn-toolbar,
  .zyn-shop-layout,
  .legacy-catalog-head,
  .catalog-controls,
  .compliance-layout,
  .faq-list,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .zyn-controls {
    justify-content: flex-start;
  }

  .customer-reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .zyn-selection-preview {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .product-category-nav-inner {
    width: min(100% - 28px, 1120px);
    min-height: 58px;
  }

  .product-category-nav-inner a {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.95), rgba(5, 5, 6, 0.82)),
      linear-gradient(180deg, rgba(214, 189, 122, 0.06), rgba(5, 5, 6, 0.46));
  }

  .hero-content {
    margin-left: 14px;
    padding: 54px 0;
  }

  h1 {
    font-size: 2.62rem;
  }

  .product-hero {
    padding: 64px 0 54px;
  }

  .sitewide-sale-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 16px;
  }

  .sitewide-sale-inner p {
    margin-left: 0;
  }

  .product-filter-section {
    padding: 52px 0 58px;
  }

  .product-hero-copy h1 {
    font-size: 2.65rem;
  }

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

  .hero-focus-image {
    min-height: 250px;
    margin: 18px 18px 0;
  }

  .hero-focus-image img {
    height: 238px;
    padding: 16px;
  }

  .featured-spotlight-section {
    padding: 64px 0 70px;
  }

  .featured-spotlight-grid,
  .featured-product-grid {
    grid-template-columns: 1fr;
  }

  .popular-category-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-stack {
    gap: 76px;
  }

  .product-showcase-block + .product-showcase-block {
    padding-top: 68px;
  }

  .trust-points {
    justify-content: flex-start;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .section {
    padding: 68px 0;
  }

  .category-product-collage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .collage-product-card,
  .collage-product-card-featured {
    grid-row: auto;
    min-height: auto;
    transform: none;
  }

  .collage-product-card-offset,
  .collage-product-card-offset:hover {
    transform: none;
  }

  .collage-product-card img,
  .collage-product-card-featured img {
    height: 170px;
    padding: 14px;
  }

  .customer-reviews-section {
    padding: 26px;
  }

  .customer-review-grid {
    grid-template-columns: 1fr;
  }

  .launch-contact-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .review-status-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .review-status-card > svg {
    width: 52px;
    height: 52px;
  }

  .zyn-card-top,
  .zyn-actions {
    grid-template-columns: 1fr;
  }

  .age-gate-panel {
    padding: 26px;
  }

  .age-gate-panel h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }
}

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

  .hero-focus-panel:hover,
  .product-card:hover,
  .featured-retail-card:hover,
  .popular-category-card:hover,
  .popular-category-card:focus-within,
  .testimonial-card:hover,
  .collage-product-card:hover,
  .collage-product-card-offset:hover,
  .customer-review-card:hover,
  .category-featured-product:hover,
  .category-panel:hover,
  .zyn-card:hover,
  .select-flavor-button:hover,
  .product-action-button:hover,
  .ted-product-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .ted-product-grid {
    grid-template-columns: 1fr;
  }
}
