:root {
  color-scheme: dark;
  --bg: #181a1b;
  --bg-deep: #111213;
  --gold: #c9a847;
  --gold-bright: #e4c86a;
  --gold-dim: #8a6e1f;
  --text: #ece8de;
  --muted: #b7ad98;
  --pill: #3b341a;
  --pill-border: rgba(201, 168, 71, 0.4);
  --content-width: 1120px;
  --section-gap: clamp(36px, 5vw, 72px);
  --card-radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 70% 12%, rgba(201, 168, 71, 0.18), transparent 48%),
    radial-gradient(circle at 50% 60%, rgba(0, 0, 0, 0.65), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

body > main,
body > section {
  width: min(var(--content-width), 100%);
}

body > section {
  margin-top: var(--section-gap);
}

body > main {
  margin-top: 0;
}

.site-topbar {
  width: min(var(--content-width), 100%);
  margin-bottom: clamp(12px, 2vw, 20px);
}

.site-topbar-inner {
  display: flex;
  justify-content: flex-end;
}

.cart-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-bright);
  background: rgba(24, 24, 24, 0.6);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.cart-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.cart-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1609;
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-count.is-visible {
  display: inline-flex;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 50px);
  color: var(--gold-bright);
  letter-spacing: 0.5px;
}

.hero-brand {
  color: var(--gold);
  text-transform: uppercase;
}

.hero-divider {
  margin: 0 10px;
  color: var(--gold-dim);
}

.hero-title {
  color: var(--gold-bright);
}

.hero-content p {
  margin: 0 0 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--pill);
  border: 1px solid var(--pill-border);
  border-radius: 5px;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pill-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), #5c4b17);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(120deg, #e2c870, #9e7b20);
  color: #1a1609;
  font-weight: 600;
}

.btn-cta {
  position: relative;
  padding: 14px 22px;
  font-size: 16px;
  letter-spacing: 0.4px;
  box-shadow: 0 16px 30px rgba(201, 168, 71, 0.35);
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 71, 0.45);
  opacity: 0.6;
  pointer-events: none;
  animation: ctaGlow 2.6s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.floating-cta {
  position: fixed;
  right: clamp(18px, 4vw, 28px);
  bottom: clamp(18px, 4vw, 28px);
  z-index: 12;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #e2c870, #9e7b20);
  color: #1a1609;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(201, 168, 71, 0.35);
  animation: floatPulse 2.4s ease-in-out infinite;
}

.floating-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-cta::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 71, 0.45);
  opacity: 0.5;
  pointer-events: none;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.media-frame {
  width: min(460px, 100%);
  aspect-ratio: 3 / 4;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.media-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.trust-media {
  display: flex;
  justify-content: center;
}

.trust-frame {
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.trust-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.trust-content h2 {
  margin: 0 0 14px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
}

.trust-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.trust-stat {
  display: grid;
  gap: 8px;
  padding: 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-stat .stat-value {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: #d3cbbd;
}

.trust-stat .stat-title {
  font-weight: 600;
  color: var(--text);
}

.trust-stat .stat-copy {
  color: var(--muted);
  font-size: 14px;
}

.trust-footer {
  margin-top: 10px;
}

.supports {
  display: grid;
  gap: 22px;
}

.supports-head h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
}

.supports-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
}

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

.support-card {
  background: rgba(30, 30, 30, 0.7);
  border-radius: var(--card-radius);
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #f1dd83, #a07a1f);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);
  position: relative;
}

.support-icon::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.55);
  transform: rotate(45deg);
}

.support-card h3 {
  margin: 0;
  color: #d5d0c6;
  font-size: 20px;
}

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

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

.support-wide {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 16px 18px;
  background: rgba(15, 15, 15, 0.35);
}

.support-wide h3 {
  margin: 0 0 10px;
  color: #d5d0c6;
  font-size: 20px;
}

.support-wide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.supports-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(126, 98, 18, 0.8), rgba(73, 56, 10, 0.85));
  color: #f4ead3;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.supports-note p {
  margin: 0;
  line-height: 1.6;
}

.note-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.formula {
  display: grid;
  gap: 26px;
}

.formula-head h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
}

.formula-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 900px;
}

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

.formula-card {
  display: grid;
  gap: 12px;
}

.formula-image {
  border-radius: var(--card-radius);
  padding: 10px;
  background: rgba(24, 24, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.formula-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.frame-gold {
  position: relative;
}

.frame-gold::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 71, 0.6);
  border-radius: 10px;
  pointer-events: none;
}

.formula-card h3 {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 19px;
}

.formula-latin {
  color: #a89c87;
  font-style: italic;
}

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

.why {
  display: grid;
  gap: 26px;
}

.why-head h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.why-frame {
  width: min(560px, 100%);
  aspect-ratio: 5 / 4;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.why-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.why-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.why-content h3 {
  margin: 10px 0 12px;
  color: var(--gold-bright);
  font-size: 22px;
}

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

.feature-card {
  background: rgba(32, 32, 32, 0.7);
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card h3 {
  margin: 0 0 10px;
  color: #d5d0c6;
  font-size: 20px;
}

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

.how-to {
  display: grid;
  gap: 24px;
}

.how-to-head h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.how-to-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

.how-to-frame {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.how-to-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.how-to-content h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 24px;
}

.how-to-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.how-step {
  display: grid;
  gap: 12px;
}

.how-step .step-number {
  font-size: 16px;
  color: #d4c47a;
  letter-spacing: 1px;
}

.how-step .step-line {
  height: 2px;
  background: linear-gradient(90deg, #a58324, rgba(165, 131, 36, 0));
  border-radius: 999px;
}

.how-step h4 {
  margin: 0;
  color: #d5d0c6;
  font-size: 20px;
}

.how-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.medication-note {
  margin-top: var(--section-gap);
}

.note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(95, 73, 9, 0.95), rgba(67, 52, 6, 0.95));
  color: #f4ead3;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.note-card .note-icon {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.note-content h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #fff4cc;
}

.note-content p {
  margin: 0 0 16px;
  color: #f3ead2;
  line-height: 1.7;
}

.note-content p:last-child {
  margin-bottom: 0;
}

.safety {
  display: grid;
  gap: 22px;
}

.safety-head h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.safety-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 900px;
}

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

.safety-card {
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.safety-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, #e6c45a, #8f6c1d);
}

.safety-card h3 {
  margin: 0 0 10px;
  color: #d5d0c6;
  font-size: 20px;
}

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

.safety-disclaimer {
  border-left: 3px solid #c9a847;
  padding: 14px 18px;
  color: var(--muted);
}

.safety-disclaimer h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.safety-disclaimer p {
  margin: 0;
  line-height: 1.7;
}

.faq-yellow {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f3e98b, #efe27b);
  /* border-radius: 12px; */
  padding: clamp(28px, 4vw, 44px);
  color: #1c1a13;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  justify-items: center;
}

.faq-head h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: #1c1a13;
}

.faq-head p {
  margin: 0 0 24px;
  max-width: 900px;
  color: #2c281f;
  line-height: 1.7;
}

.faq-head,
.faq-grid {
  width: min(var(--content-width), 100%);
}

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

.faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.faq-icon {
  width: 34px;
  height: 34px;
  margin-top: 4px;
  border-radius: 4px;
  background: #2b2b2b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #1f1b13;
  font-size: 20px;
}

.faq-item p {
  margin: 0;
  color: #3a3428;
  line-height: 1.7;
}

.results {
  display: grid;
  gap: 24px;
}

.results-head h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.results-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 900px;
}

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

.result-card {
  display: grid;
  gap: 12px;
}

.result-image {
  border-radius: var(--card-radius);
  padding: 8px;
  background: rgba(24, 24, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.result-card h3 {
  margin: 0;
  color: #d5d0c6;
  font-size: 20px;
}

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

.difference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.difference-content h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.difference-content p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.difference-content p:last-child {
  margin-bottom: 0;
}

.difference-frame {
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.difference-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.cta-final {
  display: grid;
  gap: 22px;
}

.cta-head h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  color: var(--gold);
}

.cta-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 860px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-item {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(32, 32, 32, 0.6);
}

.cta-item:nth-child(2n) {
  border-right: none;
}

.cta-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.cta-item h3 {
  margin: 0 0 8px;
  color: #d5d0c6;
  font-size: 19px;
}

.cta-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #c5b36a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.cta-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-page {
  display: grid;
  gap: 24px;
}

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

.product-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-breadcrumb {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.product-media {
  display: grid;
  gap: 16px;
}

.product-frame {
  width: min(560px, 100%);
  aspect-ratio: 4 / 5;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}

.product-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

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

.product-thumbs .thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 20, 20, 0.6);
  padding: 4px;
}

.product-thumbs .thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 168, 71, 0.6);
}

.product-info {
  display: grid;
  gap: 18px;
}

.product-brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.product-title {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--text);
}

.product-price {
  margin: 0;
  font-size: 22px;
  color: var(--gold-bright);
}

.product-option {
  display: grid;
  gap: 12px;
}

.option-label {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.option-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(24, 24, 24, 0.7);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.swatch.is-selected {
  border-color: var(--gold);
  color: #1a1609;
  background: linear-gradient(120deg, #e2c870, #9e7b20);
}

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

.product-actions .btn {
  width: 100%;
}

.product-accordions {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.product-accordions details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.product-accordions summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text);
  padding: 8px 0;
}

.product-accordions summary::-webkit-details-marker {
  display: none;
}

.product-accordions summary::after {
  content: "⌄";
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.product-accordions details[open] summary::after {
  transform: rotate(180deg);
}

.product-accordions p,
.product-accordions ul {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.product-accordions ul {
  padding-left: 18px;
}

.product-accordions li {
  margin-bottom: 8px;
}

.product-accordions li:last-child {
  margin-bottom: 0;
}

.product-description {
  display: grid;
  gap: 20px;
  margin-top: var(--section-gap);
}

.product-description-header h2 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--gold);
}

.product-description-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

.product-description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 36vw, 420px), 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.product-description-card {
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.product-description-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.checkout-page {
  display: grid;
  gap: 24px;
}

.checkout-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checkout-breadcrumb {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 22px;
}

.checkout-section {
  padding: 18px 20px;
  background: rgba(20, 20, 20, 0.65);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.checkout-section h1 {
  margin: 0 0 10px;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 40px);
  color: var(--gold);
}

.checkout-section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #d5d0c6;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.checkout-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.form-field input {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
}

.form-field input::placeholder {
  color: rgba(236, 232, 222, 0.4);
}

.form-span {
  grid-column: span 2;
}

.payment-card {
  display: grid;
  gap: 12px;
}

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

.checkout-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.checkout-summary {
  display: grid;
  gap: 16px;
}

.summary-card {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 24, 0.85);
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.summary-card h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
}

.summary-items {
  display: grid;
  gap: 14px;
}

.summary-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.summary-info {
  display: grid;
  gap: 8px;
}

.summary-title {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.summary-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.summary-price {
  color: var(--gold-bright);
  font-weight: 600;
}

.summary-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 18, 0.7);
  width: fit-content;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: var(--text);
}

.summary-help {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(201, 168, 71, 0.1);
  border: 1px solid rgba(201, 168, 71, 0.2);
  color: var(--muted);
  font-size: 13px;
}

.summary-help p {
  margin: 0;
}

.field-error {
  margin: 8px 0 0;
  color: #e0b15a;
  font-size: 12px;
}

.input-error {
  border-color: rgba(224, 177, 90, 0.8);
  box-shadow: 0 0 0 1px rgba(224, 177, 90, 0.5);
}

.alert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
}

.alert-overlay.is-visible {
  display: flex;
}

.alert-card {
  width: min(520px, 100%);
  padding: clamp(20px, 4vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 71, 0.35);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 16px;
  text-align: center;
}

.alert-badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 168, 71, 0.2);
  border: 1px solid rgba(201, 168, 71, 0.35);
  color: var(--gold-bright);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.alert-card h2 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold);
}

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

.alert-actions {
  display: flex;
  justify-content: center;
}

.order-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
}

.order-card {
  width: min(640px, 100%);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 24, 0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 18px;
  text-align: center;
}

.order-badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 168, 71, 0.2);
  border: 1px solid rgba(201, 168, 71, 0.35);
  color: var(--gold-bright);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.order-card h1 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
}

.order-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.order-meta {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.meta-value {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-weight: 600;
}

.order-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media {
    order: -1;
  }

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

  .trust-media {
    order: -1;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .how-to-grid {
    grid-template-columns: 1fr;
  }

  .how-to-steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .product-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

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

  .product-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .checkout-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-span {
    grid-column: span 1;
  }

  .cta-item {
    border-right: none;
  }

  .cta-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cta-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .formula-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  .pill {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
