:root {
  --bg: #070a10;
  --panel: #101722;
  --panel-strong: #151f2d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #a6b3c6;
  --accent: #9ad458;
  --accent-strong: #c7f083;
  --accent-dim: rgba(154, 212, 88, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(154, 212, 88, 0.12), transparent 28%),
    linear-gradient(180deg, #0a1018 0%, #070a10 58%, #05070c 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 16, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 4rem;
}

.header-shell,
.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.site-logo,
.site-nav a,
.breadcrumbs a {
  text-decoration: none;
}

.site-logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.site-nav a:hover,
.breadcrumbs a:hover {
  color: var(--accent-strong);
}

.product-shell {
  padding: 1.5rem 0 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.product-visual,
.detail-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-visual {
  padding: 2rem;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eyebrow,
.label,
.footer-note {
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #dbe3ef;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.detail-tag.regional {
  color: #8fc3ff;
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(59, 130, 246, 0.14);
}

.detail-tag.veg {
  color: #8ef0ac;
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(34, 197, 94, 0.14);
}

.detail-tag.non-veg {
  color: #ff9f8e;
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(239, 68, 68, 0.14);
}

.detail-tag.spicy {
  color: #ffaf97;
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.14);
}

.detail-tag.tangy {
  color: #ffe17d;
  border-color: rgba(250, 204, 21, 0.28);
  background: rgba(250, 204, 21, 0.14);
}

.detail-tag.sweet {
  color: #99f6b8;
  border-color: rgba(74, 222, 128, 0.28);
  background: rgba(74, 222, 128, 0.12);
}

.detail-tag.oil {
  color: #ffd966;
  border-color: rgba(250, 204, 21, 0.22);
  background: rgba(234, 179, 8, 0.14);
}

.price-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(154, 212, 88, 0.12), rgba(154, 212, 88, 0.05));
  border: 1px solid rgba(154, 212, 88, 0.18);
}

.label {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.price {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-note {
  margin: 0;
  color: #dce8c6;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #081008;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.detail-card {
  padding: 1.4rem;
}

.detail-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}

.detail-card p {
  margin: 0;
  color: #d8e1ec;
  line-height: 1.7;
}

.ingredients-copy .ingredient-text {
  margin: 0;
  color: #d8e1ec;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}

.variant-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.variant-card:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 212, 88, 0.38);
  background: var(--panel-strong);
}

.variant-label {
  font-weight: 700;
}

.variant-price {
  color: var(--accent-strong);
  font-weight: 600;
}

@media (max-width: 900px) {
  .product-hero,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .header-shell,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 1.2rem, 1120px);
  }

  .product-visual,
  .detail-card {
    border-radius: 20px;
  }

  .product-visual {
    padding: 1.3rem;
  }

  .product-copy h1 {
    font-size: 2.2rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
