:root {
  --bg: #f8f6f2;
  --text: #1f1f23;
  --card: #ffffff;
  --accent: #ff5a3d;
  --accent-2: #7a5cff;
  --accent-3: #3dd6c6;
  --muted: #666873;
  --shadow: 0 20px 60px rgba(20, 20, 30, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, sans-serif;
  background: radial-gradient(circle at 80% 10%, rgba(122, 92, 255, 0.12), transparent 40%),
    radial-gradient(circle at 10% 40%, rgba(61, 214, 198, 0.1), transparent 38%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3 { font-family: Manrope, sans-serif; margin: 0 0 12px; line-height: 1.15; }
p { margin: 0 0 12px; color: var(--muted); }
a { text-decoration: none; color: inherit; }

.promo-bar {
  overflow: hidden;
  background: linear-gradient(90deg, #221b42, #3d2f74, #221b42);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  white-space: nowrap;
}
.promo-track {
  display: inline-flex;
  gap: 36px;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}
.promo-track span::before { content: "• "; color: #ffdfa6; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 246, 242, 0.74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 0 0 16px 16px;
}
.logo { font-weight: 800; letter-spacing: 0.2px; font-size: 20px; }
.nav { display: flex; gap: 16px; align-items: center; }
.nav > a { font-weight: 600; color: #2e3040; }
.menu-toggle { display: none; border: 0; font-size: 24px; background: transparent; }

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7f55);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 90, 61, 0.35);
}
.btn-secondary {
  border: 1px solid rgba(31, 31, 35, 0.2);
  background: rgba(255, 255, 255, 0.72);
}
.btn-small { padding: 9px 14px; }
.btn-block { width: 100%; text-align: center; }

main { overflow: hidden; }
.section, .hero, .promo-banner { padding: 72px 20px; max-width: 1120px; margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78vh;
}
.eyebrow { font-weight: 600; color: var(--accent-2); }
.hero h1 { font-size: clamp(30px, 5vw, 56px); }
.hero-sub { font-size: 18px; max-width: 58ch; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.trust-chips span {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  font-size: 13px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.microcopy { font-size: 14px; }

.hero-visual { position: relative; min-height: 420px; display: grid; place-items: center; }
.halo {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.34), rgba(61, 214, 198, 0.08) 58%, transparent 72%);
  filter: blur(6px);
  animation: pulse 4.6s ease-in-out infinite;
}
.product-frame {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 4 / 5;
  border-radius: 40% 20% 34% 26% / 23% 34% 26% 37%;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.32) 42%, transparent 70%),
    linear-gradient(145deg, #221f2f, #2e3652 58%, #233334);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  animation: float 5s ease-in-out infinite;
}
.badge {
  position: absolute;
  top: 16px; right: 16px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #ff8a68);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 90, 61, 0.4);
  animation: shimmer 3.5s linear infinite;
}
.product-pack {
  width: 56%;
  min-height: 230px;
  border-radius: 20px;
  background: linear-gradient(170deg, #2f2f35, #1e1f25);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 18px 35px rgba(15, 16, 21, 0.5);
  transform-style: preserve-3d;
}
.product-photo {
  width: 68%;
  max-width: 300px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.45));
  mix-blend-mode: normal;
}
.showcase-photo {
  display: block;
  margin: 0 auto;
  width: min(280px, 70%);
  max-height: 360px;
}
.product-pack.large {
  width: 240px;
  min-height: 330px;
  margin: 0 auto;
  border-radius: 28px;
}

.grid { display: grid; gap: 16px; }
.cards-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(25, 25, 35, 0.15); }
.ingredient-text-card {
  position: relative;
  overflow: hidden;
}
.ingredient-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(130deg, rgba(122, 92, 255, 0.18), rgba(61, 214, 198, 0.22));
  font-size: 24px;
}
.text-link {
  display: inline-block;
  margin-top: 6px;
  color: #3a33aa;
  font-weight: 700;
}
.ingredient-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.showcase-wrap {
  border-radius: 36px;
  background: linear-gradient(135deg, #ffffff, #f2edff);
  box-shadow: var(--shadow);
  padding: 28px;
}
.callouts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 18px 0; }
.callouts span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
}
.price-box { text-align: center; }
.new-price { color: var(--text); font-size: 24px; font-weight: 800; }
.new-price span { font-size: 16px; font-weight: 500; color: var(--muted); margin-left: 8px; }

.purchase-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.purchase-card {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.purchase-card.primary { border: 2px solid rgba(255, 90, 61, 0.4); }
.purchase-card.secondary { border: 1px solid rgba(0, 0, 0, 0.08); }
.order-form { margin-top: 10px; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.order-summary {
  margin: 6px 0 12px;
  padding: 12px 14px;
  background: #f7f8ff;
  border: 1px solid rgba(87, 64, 189, 0.2);
  border-radius: 14px;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 14px;
  font-size: 14px;
  color: #4a4d57;
}
.check-row input { width: 18px; height: 18px; margin: 2px 0 0; }
.check-row a { color: #3a33aa; text-decoration: underline; }
.order-submit {
  font-size: 16px;
  padding: 14px 20px;
  box-shadow: 0 14px 30px rgba(255, 90, 61, 0.4);
}
.tag {
  display: inline-block;
  background: rgba(255, 90, 61, 0.14);
  color: #b83d29;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.tag.alt { background: rgba(122, 92, 255, 0.12); color: #5740bd; }
select, input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 14px;
  margin: 7px 0 14px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.trust-icons { display: grid; gap: 6px; margin-top: 14px; color: #4a4d57; }
.disclaimer { font-size: 13px; color: #5d606b; margin-top: 12px; }

.promo-banner {
  margin: 40px auto;
  text-align: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(120deg, #1f1f23, #37295e, #1f1f23);
  box-shadow: var(--shadow);
}
.promo-banner h2, .promo-banner p { color: #fff; }

.faq-list { display: grid; gap: 10px; }
details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
}
summary { cursor: pointer; font-weight: 700; }

.contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
}

.site-footer {
  background: #1f1f23;
  color: #d9d9df;
  padding: 42px 20px 28px;
}
.site-footer p { color: #c6c6d0; }
.footer-wrap {
  max-width: 1120px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-content: flex-start;
}
.footer-links a {
  color: #ececf3;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: 8px;
  padding: 10px;
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 60;
}
.sticky-cta .btn { flex: 1; text-align: center; padding: 11px 8px; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(24px) scale(0.98); transition: 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }

@keyframes marquee { to { transform: translateX(-100%); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes shimmer {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
  100% { filter: brightness(1); }
}

@media (max-width: 1024px) {
  .cards-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
  .purchase-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 12px;
  }
  .nav.open { display: flex; }
  .order-grid, .footer-wrap { grid-template-columns: 1fr; }
  .cards-3, .cards-5 { grid-template-columns: 1fr; }
  .section, .hero, .promo-banner { padding: 54px 16px; }
  .hero-sub { font-size: 16px; }
  .sticky-cta.visible { display: flex; }
  body { padding-bottom: 82px; }
}
