:root {
  --bg: #fffef4;
  --surface: rgba(255, 255, 255, 0.88);
  --line: rgba(255, 184, 64, 0.18);
  --text: #1c2f2c;
  --muted: #61716b;
  --green: #67cf39;
  --purple: #7b47ff;
  --orange: #ff9a22;
  --pink: #ff63b2;
  --yellow: #fff066;
  --blue: #98e2ff;
  --shadow: 0 26px 68px rgba(255, 163, 72, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --site-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 240, 119, 0.72), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(152, 226, 255, 0.72), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(255, 144, 90, 0.24), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 99, 178, 0.24), transparent 24%),
    linear-gradient(180deg, #fffdf4 0%, #f7fff0 48%, #fff2fb 100%);
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 24px), var(--site-width));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-header,
.site-footer,
.hero-home,
.page-hero,
.juice-card,
.info-card,
.faq-item,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 230, 0.88)),
    var(--surface);
}

.brand {
  width: 160px;
  flex: 0 0 auto;
}

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

.site-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}

.distributor-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 12px 24px rgba(126, 77, 255, 0.22);
}

.nasla-link-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffef9b, #d6a01f 72%, #fff1b8);
  border: 1px solid rgba(214, 160, 31, 0.34);
  box-shadow: 0 12px 24px rgba(214, 160, 31, 0.16);
}

.nasla-link-nav img {
  width: 88px;
  max-width: 100%;
}

.site-nav a.nasla-link-nav:hover,
.site-nav a.nasla-link-nav.active {
  background: linear-gradient(135deg, #fff2a6, #dda31e 72%, #fff5c0);
}

.site-nav a.distributor-link:hover,
.site-nav a.distributor-link.active {
  color: white !important;
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.distributor-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.distributor-icon::before,
.distributor-icon::after {
  content: "";
  position: absolute;
  background: rgba(126, 77, 255, 0.85);
}

.distributor-icon::before {
  left: 2px;
  right: 2px;
  top: 4px;
  height: 2px;
}

.distributor-icon::after {
  left: 5px;
  top: 1px;
  bottom: 1px;
  width: 2px;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
  background: linear-gradient(135deg, rgba(123, 71, 255, 0.16), rgba(255, 154, 34, 0.14));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

main {
  padding-top: 26px;
}

.hero-home,
.juice-grid,
.card-grid,
.faq-stack,
.footer-grid {
  display: grid;
  gap: 22px;
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 620px;
  background:
    radial-gradient(circle at 14% 18%, rgba(223, 255, 119, 0.62), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(255, 194, 126, 0.52), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 255, 244, 0.82));
}

.shape {
  position: absolute;
  z-index: 0;
}

.blob-yellow,
.blob-green,
.blob-pink {
  border-radius: 50%;
}

.blob-yellow {
  width: 120px;
  height: 120px;
  right: 7%;
  top: 16%;
  background: radial-gradient(circle, #ffe473, #ff9c1f);
}

.blob-green {
  width: 84px;
  height: 84px;
  left: 5%;
  top: 14%;
  background: radial-gradient(circle, #ceff79, #62cd33);
}

.blob-pink {
  width: 92px;
  height: 92px;
  right: 18%;
  bottom: 10%;
  background: radial-gradient(circle, #ffc0e6, #ff5dac);
}

.leaf-left,
.leaf-right {
  width: 120px;
  height: 62px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #a8ef64, #43be3c);
}

.leaf-left {
  left: 12%;
  bottom: 12%;
}

.leaf-right {
  right: 30%;
  top: 16%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

h1,
h2,
h3,
.footer-block strong {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 6rem);
}

.hero-text {
  max-width: 32ch;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero .hero-text,
.simple-hero .hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #7b47ff, #ff8f1f 62%, #ff64b2);
  box-shadow: 0 18px 30px rgba(123, 71, 255, 0.24);
}

.button-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 223, 0.9));
}

.hero-visual {
  min-height: 460px;
}

.hero-bottles {
  position: absolute;
  inset: 144px 0 16px;
}

.hero-bottle {
  position: absolute;
  bottom: 0;
  width: 126px;
  filter: drop-shadow(0 22px 34px rgba(27, 47, 44, 0.16));
  transition: transform 220ms ease;
}

.hero-bottle-left {
  left: 25%;
  transform: rotate(-13deg);
}

.hero-bottle-right {
  right: 25%;
  transform: rotate(13deg);
}

.hero-media-surface {
  display: none;
  position: absolute;
  inset: 36px 22px 18px;
  align-content: end;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(27, 47, 44, 0.16)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 26px 44px rgba(27, 47, 44, 0.12);
  transition: transform 220ms ease;
}

.hero-media-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(22, 34, 31, 0.04), rgba(22, 34, 31, 0.34)),
    url("assets/qzee-hero-products.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.section {
  padding-top: 44px;
}

.section-header {
  margin-bottom: 18px;
}

.centered {
  text-align: center;
  justify-items: center;
}

.section-header h2,
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

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

.juice-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 22px 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(180deg, color-mix(in srgb, var(--card-color) 56%, white 44%), rgba(255,255,255,0.84));
  text-align: center;
  box-shadow: 0 18px 34px color-mix(in srgb, var(--card-color) 18%, rgba(27, 47, 44, 0.08));
}

.juice-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -34px;
  right: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-color) 84%, white 16%), transparent 70%);
}

.juice-bottle-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
}

.dual-bottle-card .juice-bottle-row {
  gap: 10px;
  margin-bottom: 14px;
}

.juice-bottle-unit {
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 6px;
}

.juice-bottle-unit img {
  --juice-scale: 1;
  --juice-lift: 0px;
  --juice-rotate: 0deg;
  width: auto;
  height: 138px;
  max-width: 76px;
  filter: drop-shadow(0 16px 24px rgba(27, 47, 44, 0.16));
  transform: translateY(var(--juice-lift)) rotate(var(--juice-rotate)) scale(var(--juice-scale));
  transform-origin: center bottom;
  transition: transform 220ms ease, filter 220ms ease;
}

.juice-bottle-unit.small img {
  width: auto;
  height: 102px;
  max-width: 54px;
}

.dual-bottle-card .juice-bottle-unit img {
  width: auto;
  height: 126px;
  max-width: 66px;
}

.dual-bottle-card .juice-bottle-unit.small img {
  width: auto;
  height: 90px;
  max-width: 46px;
}

.bottle-boost {
  --juice-scale: 1.34;
}

.juice-bottle-unit span {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 47, 44, 0.08);
}

.juice-card:hover .juice-bottle-unit img,
.juice-card:active .juice-bottle-unit img {
  --juice-lift: -8px;
  --juice-rotate: -7deg;
}

.juice-card:hover .juice-bottle-unit:last-child img,
.juice-card:active .juice-bottle-unit:last-child img {
  --juice-lift: -8px;
  --juice-rotate: 7deg;
}

.juice-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
}

.dual-bottle-card h3 {
  margin-top: 4px;
}

.juice-copy {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.nasla-promo-card {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 222, 122, 0.2), transparent 20%),
    radial-gradient(circle at 84% 82%, rgba(255, 193, 69, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98)) !important;
  border: 1px solid rgba(243, 207, 104, 0.24);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
}

.nasla-promo-card::before {
  background: radial-gradient(circle, rgba(255, 214, 102, 0.24), transparent 70%);
}

.nasla-promo-card h3 {
  color: #ffe18b;
}

.nasla-promo-card .juice-bottle-row img {
  width: 92px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

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

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

.info-card,
.faq-item,
.contact-form {
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.78)),
    var(--surface);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.founder-visual,
.founder-story {
  height: 100%;
}

.founder-image {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.founder-avatar {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  box-shadow: 0 18px 40px rgba(126, 77, 255, 0.24);
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.founder-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.founder-story {
  display: grid;
  gap: 14px;
}

.info-card p,
.faq-answer p,
.footer-brand p,
.footer-block p {
  color: var(--muted);
  line-height: 1.7;
}

.review-tone-1,
.tone-yellow {
  background: linear-gradient(135deg, rgba(255, 240, 119, 0.72), rgba(255,255,255,0.82));
}

.review-tone-2,
.tone-green,
.tone-mint {
  background: linear-gradient(135deg, rgba(186, 255, 117, 0.66), rgba(255,255,255,0.82));
}

.review-tone-3,
.tone-pink {
  background: linear-gradient(135deg, rgba(255, 185, 223, 0.68), rgba(255,255,255,0.82));
}

.tone-orange {
  background: linear-gradient(135deg, rgba(255, 196, 120, 0.72), rgba(255,255,255,0.82));
}

.tone-blue {
  background: linear-gradient(135deg, rgba(189, 232, 255, 0.72), rgba(255,255,255,0.82));
}

.stars {
  display: inline-block;
  margin-bottom: 10px;
  color: #db9500;
  letter-spacing: 0.14em;
}

.faq-stack {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin-top 260ms ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  margin-top: 12px;
}

.simple-hero,
.page-hero {
  padding: 42px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.best-seller-shell {
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 240, 119, 0.42), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 127, 192, 0.24), transparent 20%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 36px rgba(255, 163, 72, 0.12);
}

.best-seller-shell .section-header {
  margin-bottom: 24px;
}

.best-seller-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  padding: 6px 6px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.seller-card {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  scroll-snap-align: start;
}

.seller-bottle {
  width: 118px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 28px rgba(27, 47, 44, 0.16));
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-address {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contact-address-item {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28, 47, 44, 0.1);
  justify-items: start;
}

.contact-address-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-address-item span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-address-item a,
.contact-address-item p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 47, 44, 0.08);
  color: var(--text) !important;
}

.social-link span {
  display: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link .fill-dot,
.social-link .fill-icon {
  fill: currentColor;
  stroke: none;
}

.instagram-link {
  background: linear-gradient(135deg, rgba(255, 176, 80, 0.22), rgba(255, 104, 160, 0.18), rgba(126, 77, 255, 0.14));
}

.whatsapp-link {
  background: linear-gradient(135deg, rgba(121, 255, 157, 0.24), rgba(79, 212, 111, 0.18));
}

.social-strip {
  display: grid;
  gap: 18px;
}

.centered-social {
  justify-content: center;
}

.footer-social-links {
  margin-top: 4px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(28, 47, 44, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.honeypot-field {
  display: none !important;
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  font-weight: 700;
  color: var(--green);
}

.site-footer {
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr;
  align-items: start;
}

.footer-brand img {
  width: min(160px, 100%);
  margin-bottom: 12px;
}

.footer-block {
  display: grid;
  gap: 10px;
}

.footer-block span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.footer-block a {
  color: var(--muted);
  font-weight: 600;
}

.footer-nasla-btn,
.footer-distributor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 999px;
}

.footer-nasla-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, #ffef9b, #d6a01f 72%, #fff1b8);
  border: 1px solid rgba(214, 160, 31, 0.34);
  box-shadow: 0 12px 24px rgba(214, 160, 31, 0.16);
}

.footer-nasla-btn img {
  width: 88px;
  max-width: 100%;
}

.footer-distributor-btn {
  gap: 10px;
  padding: 11px 18px;
  color: white !important;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  box-shadow: 0 12px 24px rgba(126, 77, 255, 0.22);
}

.footer-distributor-btn .distributor-icon {
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-home,
  .card-grid,
  .card-grid.two-col,
  .footer-grid,
  .founder-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-home {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy,
  .section-header,
  .footer-brand,
  .footer-block {
    justify-items: center;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 14px), var(--site-width));
    padding-top: 12px;
  }

  .site-header {
    padding: 12px 14px;
    border-radius: 28px;
  }

  .brand {
    width: 138px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(260px, 86vw);
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    text-align: center;
  }

  .distributor-link {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    color: white !important;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 12px 24px rgba(126, 77, 255, 0.22);
  }

  .nasla-link-nav {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    min-height: 54px;
    padding: 10px 16px;
  }

  .nasla-link-nav img {
    width: 94px;
  }

  .site-nav a.distributor-link:hover,
  .site-nav a.distributor-link.active {
    justify-content: center;
    color: white !important;
    background: linear-gradient(135deg, var(--purple), var(--orange));
  }

  .site-nav a.nasla-link-nav:hover,
  .site-nav a.nasla-link-nav.active {
    color: #ffe395 !important;
    background: linear-gradient(135deg, #090909, #211b10 72%, #38280d);
  }

  .hero-home,
  .juice-grid,
  .card-grid,
  .card-grid.two-col,
  .footer-grid,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .hero-home,
  .page-hero,
  .simple-hero {
    padding: 24px 16px;
    text-align: center;
    min-height: auto;
  }

  .hero-home {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-header,
  .info-card,
  .faq-item,
  .footer-brand,
  .footer-block,
  .founder-story {
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.3rem);
  }

  .hero-text {
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.96rem;
  }

  .contact-address {
    justify-items: center;
  }

  .contact-address-item {
    width: 100%;
  }

  .social-links,
  .footer-social-links {
    justify-content: center;
  }

  .hero-visual {
    min-height: 230px;
    order: 2;
    margin-top: 10px;
  }

  .hero-bottles {
    display: none;
  }

  .hero-media-surface {
    display: grid;
    inset: 0;
    border-radius: 28px;
  }

  .hero-media-image {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
      url("assets/home-mobile-hero-v2.jpeg");
    background-size: cover;
    background-position: center center;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 6px;
    order: 3;
  }

  body[data-page="home"] .hero-actions {
    display: none;
  }

  .best-seller-grid {
    grid-auto-columns: 100%;
    gap: 12px;
    padding-bottom: 10px;
  }

  .best-seller-grid .seller-card {
    min-height: 270px;
  }

  .best-seller-grid .seller-card h3 {
    margin-top: 10px;
  }

  .best-seller-shell {
    padding: 22px 16px;
  }

  .section {
    padding-top: 22px;
  }

  .section-header h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .juice-card {
    min-height: 220px;
    padding: 18px 16px;
  }

  .juice-card h3 {
    font-size: 1.5rem;
  }

  body[data-page="products"] .juice-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="products"] .juice-card {
    min-height: 188px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
  }

  body[data-page="products"] .juice-bottle-row {
    gap: 10px;
    margin-bottom: 0;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  body[data-page="products"] .juice-bottle-unit img {
    width: auto;
    height: 78px;
    max-width: 46px;
  }

  body[data-page="products"] .juice-bottle-unit.small img {
    width: auto;
    height: 54px;
    max-width: 30px;
  }

  body[data-page="products"] .juice-bottle-unit span {
    font-size: 0.52rem;
    padding: 4px 6px;
  }

  body[data-page="products"] .juice-card h3 {
    max-width: 8ch;
    margin: 0;
    font-size: 1.1rem;
    line-height: 0.95;
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="products"] .juice-copy {
    max-width: 17ch;
    margin-top: 8px;
    padding-right: 10px;
    font-size: 0.62rem;
    line-height: 1.3;
    grid-column: 1;
    grid-row: 2;
  }

  body[data-page="home"] .juice-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .juice-card {
    min-height: 152px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    text-align: left;
  }

  body[data-page="home"] .juice-card::before {
    width: 132px;
    height: 132px;
    top: -24px;
    right: -18px;
  }

  body[data-page="home"] .juice-bottle-row {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 0;
    z-index: 1;
    gap: 10px;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
  }

  body[data-page="home"] .juice-bottle-unit img {
    width: auto;
    height: 74px;
    max-width: 46px;
  }

  body[data-page="home"] .juice-bottle-unit.small img {
    width: auto;
    height: 52px;
    max-width: 30px;
  }

  body[data-page="home"] .juice-bottle-unit span {
    font-size: 0.52rem;
    padding: 4px 6px;
  }

  body[data-page="home"] .juice-card h3 {
    max-width: 7ch;
    margin: 0;
    font-size: 1.3rem;
    line-height: 0.92;
    color: var(--text);
    text-shadow: none;
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="home"] .nasla-promo-card .juice-bottle-row img {
    width: 64px;
  }

  body[data-page="home"] .nasla-promo-card h3 {
    color: #ffe18b;
  }

.info-card,
.faq-item,
.contact-form {
  padding: 20px;
}
}

.nasla-page {
  color: #f8f2df;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 215, 95, 0.2), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(255, 197, 71, 0.18), transparent 22%),
    linear-gradient(180deg, #060606 0%, #13100a 42%, #0b0b0b 100%);
}

.nasla-shell {
  width: min(calc(100% - 32px), 1220px);
  margin: 0 auto;
  padding: 24px 0 42px;
}

.nasla-header,
.nasla-hero,
.nasla-card,
.nasla-band {
  border: 1px solid rgba(255, 210, 98, 0.18);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.nasla-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 999px;
}

.nasla-brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 14px;
}

.nasla-brand-copy {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.nasla-brand-mark {
  width: 176px;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 10px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffef9b, #d6a01f 72%, #fff1b8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 28px rgba(214, 160, 31, 0.22);
}

.nasla-brand-mark img {
  width: 100%;
  max-width: 128px;
}

.nasla-brand strong,
.nasla-link,
.nasla-card h3,
.nasla-band strong {
  font-family: "Syne", sans-serif;
}

.nasla-brand p,
.nasla-text,
.nasla-card p,
.nasla-band p {
  color: rgba(248, 242, 223, 0.74);
}

.nasla-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.nasla-link img {
  width: 72px;
  max-width: 100%;
  border-radius: 10px;
}

.nasla-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 42px;
  border-radius: 38px;
  overflow: hidden;
}

.nasla-eyebrow {
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f1c64b;
}

.nasla-hero h1,
.nasla-section-head h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.nasla-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.nasla-text {
  max-width: 42ch;
  margin-top: 20px;
  line-height: 1.8;
}

.nasla-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nasla-points span {
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff7dc;
  background: rgba(255, 211, 104, 0.12);
  border: 1px solid rgba(255, 211, 104, 0.18);
}

.nasla-bottle-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.nasla-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 226, 130, 0.55), rgba(255, 194, 64, 0.16) 48%, transparent 70%);
  filter: blur(8px);
}

.nasla-bottle-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

.nasla-section {
  padding-top: 34px;
}

.nasla-section-head {
  margin-bottom: 18px;
}

.nasla-section-head h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

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

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

.nasla-card {
  padding: 28px;
  border-radius: 28px;
}

.nasla-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  color: #ffe187;
}

.nasla-band {
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
}

.nasla-band-copy {
  margin-bottom: 22px;
}

.nasla-band-copy h2 {
  max-width: 13ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

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

.nasla-benefits article {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 214, 102, 0.12), rgba(255, 214, 102, 0.04));
  border: 1px solid rgba(255, 214, 102, 0.14);
}

.nasla-benefits strong {
  display: block;
  margin-bottom: 10px;
  color: #ffe187;
  font-size: 1.2rem;
}

@media (max-width: 760px) {
  .nasla-shell {
    width: min(calc(100% - 18px), 100%);
    padding: 14px 0 26px;
  }

  .nasla-header,
  .nasla-hero,
  .nasla-band,
  .nasla-card {
    border-radius: 26px;
  }

  .nasla-header,
  .nasla-hero {
    padding: 18px;
  }

  .nasla-brand {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    gap: 10px;
  }

  .nasla-brand-mark {
    width: 124px;
    min-height: 54px;
    padding: 8px 12px;
  }

  .nasla-brand-mark img {
    max-width: 92px;
  }

  .nasla-brand-copy {
    justify-items: start;
  }

  .nasla-brand-copy strong,
  .nasla-brand-copy p {
    text-align: left;
  }

  .nasla-header,
  .nasla-hero,
  .nasla-grid,
  .nasla-grid.two,
  .nasla-benefits {
    grid-template-columns: 1fr;
  }

  .nasla-header {
    flex-direction: row;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nasla-link {
    width: fit-content;
    min-height: 40px;
    padding: 6px 8px;
    flex: 0 0 auto;
  }

  .nasla-link img {
    width: 60px;
  }

  .nasla-hero {
    gap: 18px;
    margin-top: 18px;
  }

  .nasla-copy,
  .nasla-section-head,
  .nasla-card,
  .nasla-band-copy {
    text-align: center;
  }

  .nasla-hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .nasla-text,
  .nasla-section-head h2,
  .nasla-band-copy h2 {
    max-width: none;
  }

  .nasla-section-head h2,
  .nasla-band-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .nasla-points {
    justify-content: center;
    gap: 8px;
  }

  .nasla-bottle-stage {
    min-height: 320px;
  }

  .nasla-halo {
    width: 240px;
    height: 240px;
  }

  .nasla-bottle-stage img {
    width: min(100%, 160px);
  }

  .nasla-band {
    padding: 22px 18px;
  }

  .nasla-card,
  .nasla-benefits article {
    padding: 20px 16px;
  }
}
