/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a, button { touch-action: manipulation; }

/* ===== Background layer (blurred only) ===== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url('/assets/images/background.png') center center / cover no-repeat;
  filter: blur(12px);
  transform: scale(1.08);
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.65);
}

/* ===== Warm gradient glows (curved shapes) ===== */
.glow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(140%, 1200px);
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.glow-top {
  top: -120px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, #e85d2c 0%, #c2410c 30%, transparent 70%);
}
.glow-bottom {
  bottom: -120px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #e85d2c 0%, #c2410c 30%, transparent 70%);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-link:hover { color: #ffb088; }

/* Nav: hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease;
}
.nav-toggle:hover { color: #ffb088; }
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.hero-headline-main {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.hero-headline-sub {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: -0.01em;
}
.hero-logo-wrap {
  margin: 0.5rem 0 2rem;
}
.hero-logo {
  width: min(94vw, 560px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(232, 93, 44, 0.25));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-subtext {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}
.hero-subtext p { margin: 0 0 0.9rem; }
.hero-subtext p:last-child { margin-bottom: 0; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Buttons (pill) ===== */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, #e85d2c, #c2410c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 93, 44, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 44, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* WhatsApp button: green with logo */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.btn-whatsapp-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ===== Home Product Section ===== */
.home-product-section {
  padding: 5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.home-product-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}
.home-product-discover-title {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.5rem;
}
.home-product-image {
  text-align: center;
}
.home-product-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.home-product-info {
  display: flex;
  flex-direction: column;
}
.home-product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6.2vw, 4.1rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
  white-space: normal;
}
.home-product-title .title-line-1,
.home-product-title .title-line-2 {
  display: block !important;
  width: 100%;
  line-height: 1.2;
}
.home-product-title .title-line-2 {
  margin-top: 0.1em;
}
.home-product-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
}
.home-product-packs {
  margin: 0 0 1.5rem;
}
.home-product-packs-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.75rem;
}
.home-product-packs-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.home-product-pack-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: rgba(232, 93, 44, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 93, 44, 0.4);
  display: inline-block;
  cursor: default;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 2px 6px rgba(232, 93, 44, 0.15);
}
.home-product-buy {
  align-self: flex-start;
}

/* Home product section stagger */
.home-product-section .animate-in[data-delay="0"].visible { transition-delay: 0ms; }
.home-product-section .animate-in[data-delay="1"].visible { transition-delay: 150ms; }
.home-product-section .animate-in[data-delay="2"].visible { transition-delay: 300ms; }
.home-product-section .animate-in[data-delay="3"].visible { transition-delay: 450ms; }

/* ===== Banner ===== */
.banner {
  width: 100%;
  height: min(38vh, 340px);
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===== Who are we ===== */
.who-section {
  padding: 5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.who-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 1.5rem;
  color: #fff;
  letter-spacing: -0.025em;
}
.who-text {
  font-size: clamp(1rem, 1.9vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.75;
}

/* ===== Scroll-reveal: initial state ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-logo-wrap.visible .hero-logo {
  animation: float 4s ease-in-out infinite;
}

/* ===== Stagger delays (hero only, set by JS) ===== */
.hero .animate-in[data-delay="0"].visible { transition-delay: 0ms; }
.hero .animate-in[data-delay="1"].visible { transition-delay: 200ms; }
.hero .animate-in[data-delay="2"].visible { transition-delay: 450ms; }
.hero .animate-in[data-delay="3"].visible { transition-delay: 700ms; }

/* ===== About page ===== */
.nav-link-active {
  color: #ffb088;
}
.nav-link-active:hover {
  color: #ffb088;
}

.about-main {
  padding: 9rem 0 5rem;
  max-width: 720px;
  margin: 0 auto;
}
.about-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: min(50vh, 420px);
  margin-bottom: 2.5rem;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.about-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.about-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  margin: 0 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.about-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  color: #fff;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
}
.about-section-title:not(:first-child) {
  margin-top: 2.25rem;
}
.about-story {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
.about-story p {
  margin: 0 0 1rem;
}
.about-story p:last-child {
  margin-bottom: 0;
}
.about-list {
  margin: 0;
  padding-left: 1.35rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}
.about-list li {
  margin-bottom: 0.4rem;
}
.about-list li:last-child {
  margin-bottom: 0;
}

/* About page stagger: banner → Our Story heading → paragraph → Our Approach heading → bullets */
.about-page .animate-in[data-delay="0"].visible { transition-delay: 0ms; }
.about-page .animate-in[data-delay="1"].visible { transition-delay: 120ms; }
.about-page .animate-in[data-delay="2"].visible { transition-delay: 280ms; }
.about-page .animate-in[data-delay="3"].visible { transition-delay: 440ms; }
.about-page .animate-in[data-delay="4"].visible { transition-delay: 600ms; }

/* ===== Footer ===== */
.site-footer {
  padding: 3.5rem 1.5rem 2.25rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 14, 12, 0.97);
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.footer-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
  line-height: 1.65;
  font-style: italic;
}
.footer-details {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.footer-fssai {
  display: block;
  margin: 0.75rem auto 0;
  max-width: 140px;
  height: auto;
  filter: brightness(1.35) contrast(1.05);
}
.footer-copy {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
  margin: 2rem 0 0;
  letter-spacing: normal;
  text-align: center;
}

/* ===== Contact page ===== */
.contact-main {
  padding: 0 1.5rem 4rem;
  margin: 0 auto;
  text-align: center;
}
.contact-banner {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 3rem auto 0;
  overflow: hidden;
  line-height: 0;
  border-radius: 12px;
}
.contact-banner-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.contact-content {
  max-width: 560px;
  margin: 0 auto;
  padding: 11rem 1.5rem 0;
}
.contact-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  margin: 0 auto 2rem;
  display: block;
  position: relative;
  padding-bottom: 0.75rem;
}
.contact-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 44, 0.9), transparent);
}
.contact-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(232, 93, 44, 0.06);
  text-align: left;
}
.contact-details {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
  line-height: 1.75;
  text-align: center;
}
.contact-details p { margin: 0 0 0.4rem; }
.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.contact-whatsapp-btn .btn-whatsapp-icon {
  width: 1.35em;
  height: 1.35em;
  flex-shrink: 0;
}
.contact-form-intro {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(232, 93, 44, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 93, 44, 0.12);
}
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: rgba(220, 80, 80, 0.7);
  box-shadow: 0 0 0 2px rgba(220, 80, 80, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-submit {
  margin-top: 0.75rem;
  align-self: center;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}
.form-error {
  color: #f0a0a0;
  font-size: 0.9rem;
  margin: 0;
  display: none;
  text-align: center;
}
.form-error.visible {
  display: block;
}
.form-success {
  color: #a8d4a0;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  display: none;
  text-align: center;
}
.form-success.visible {
  display: block;
}

/* Contact page stagger: heading → contact details → instruction → form → banner */
.contact-page .animate-in[data-delay="0"].visible { transition-delay: 0ms; }
.contact-page .animate-in[data-delay="1"].visible { transition-delay: 120ms; }
.contact-page .animate-in[data-delay="2"].visible { transition-delay: 240ms; }
.contact-page .animate-in[data-delay="3"].visible { transition-delay: 360ms; }
.contact-page .animate-in[data-delay="4"].visible { transition-delay: 480ms; }

/* ===== Products page ===== */
.products-main {
  padding: 10rem 1.5rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.products-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  margin: 0 auto 2.5rem;
  display: block;
  position: relative;
  padding-bottom: 0.75rem;
}
.products-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 44, 0.9), transparent);
}
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.products-tab {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.products-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.products-tab-active {
  background: rgba(232, 93, 44, 0.3);
  color: #fff;
  border-color: rgba(232, 93, 44, 0.6);
  box-shadow: 0 2px 8px rgba(232, 93, 44, 0.2);
}
.products-tab-active:hover {
  background: rgba(232, 93, 44, 0.35);
  border-color: rgba(232, 93, 44, 0.7);
  transform: translateY(-1px);
}
.products-content {
  text-align: left;
}
.products-tab-panel {
  display: none;
}
.products-tab-panel-active {
  display: block;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.product-card-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.product-card[data-product] .product-card-img {
  height: 220px;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}
.product-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* Recipes page: custom card theme */
.recipes-page .product-card {
  background: linear-gradient(180deg, #fff7e8 0%, #ffeccf 100%);
  border: 1px solid rgba(194, 120, 56, 0.35);
  box-shadow: 0 6px 18px rgba(74, 39, 14, 0.18);
}
.recipes-page .product-card:hover {
  box-shadow: 0 14px 30px rgba(74, 39, 14, 0.24);
}
.recipes-page .product-card-name {
  color: #5a2f12;
}
.recipes-page .product-modal-body {
  gap: 1.6rem;
  padding: 2rem;
  align-items: flex-start;
}
.recipes-page .product-modal-image {
  flex: 0 0 62%;
  max-width: 62%;
  margin-top: 0.65rem;
}
.recipes-page .product-modal-image img {
  max-height: 640px;
  object-fit: contain;
}
.recipes-page .product-modal-info {
  gap: 0.45rem;
}

.recipes-page .product-card-img {
  height: 160px;
  max-height: 160px;
  object-fit: cover;
  object-position: center;
}

/* Product Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.product-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.product-modal-content {
  position: relative;
  background: #fff3c7;
  border-radius: 24px;
  max-width: 1240px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.product-modal[aria-hidden="false"] .product-modal-content {
  transform: scale(1);
}
.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}
.product-modal-body {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding: 3.25rem;
}
.product-modal-image {
  flex: 0 0 68%;
  max-width: 68%;
}
.product-modal-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}
.product-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: #333;
  margin: 0 0 1rem;
  line-height: 1.2;
  white-space: normal;
}
.product-modal-title .title-line-1,
.product-modal-title .title-line-2 {
  display: block !important;
  width: 100%;
  line-height: 1.2;
}
.product-modal-title .title-line-2 {
  margin-top: 0.1em;
  font-size: 0.9em;
}

/* Slightly smaller modal titles for longer product names */
.product-modal[data-product="agraharam-arogya-mix"] .product-modal-title,
.product-modal[data-product="moringa-leaf-podi"] .product-modal-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
}
.product-modal[data-product="agraharam-arogya-mix"] .product-modal-title .title-line-2,
.product-modal[data-product="moringa-leaf-podi"] .product-modal-title .title-line-2 {
  font-size: 0.85em;
}
.product-modal-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  white-space: pre-line;
  margin: 0 0 1rem;
}
.recipe-method {
  white-space: normal;
  display: grid;
  gap: 0.75rem;
}
.recipe-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6a4b34;
  margin: 0;
}
.recipe-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5f5a53;
  margin: 0;
}
.recipe-also-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6a4b34;
  margin: 0;
}
.recipe-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.25rem 0 0;
}
.recipe-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5f5a53;
  margin-bottom: 0.2rem;
}
.recipe-list li:last-child {
  margin-bottom: 0;
}
.recipe-step {
  background: #f6ecdf;
  border: 1px solid rgba(149, 127, 103, 0.25);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}
.recipe-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6a4b34;
  margin: 0 0 0.3rem;
}
.recipe-step-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5f5a53;
  margin: 0;
}
.recipe-step .recipe-list {
  margin-top: 0.35rem;
}
.recipe-substep-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6a4b34;
  margin: 0.7rem 0 0.2rem;
}
.recipe-substep-title:first-of-type {
  margin-top: 0.35rem;
}
.product-modal-packs {
  margin: 0 0 1rem;
}
.product-modal-recommended {
  margin: 0 0 1.2rem;
}
.product-modal-packs-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  margin: 0 0 0.75rem;
}
.product-modal-recommended-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  margin: 0 0 0.75rem;
}
.product-modal-packs-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-modal-recommended-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.product-modal-pack-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  background: rgba(232, 93, 44, 0.15);
  color: #8b4513;
  border: 1px solid rgba(232, 93, 44, 0.25);
  display: inline-block;
  cursor: default;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 1px 3px rgba(232, 93, 44, 0.1);
}
.product-modal-recommended-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.62rem 1.28rem;
  border-radius: 9999px;
  background: rgba(245, 180, 38, 0.22);
  color: #7a4a00;
  border: 1px solid rgba(235, 160, 18, 0.42);
  display: inline-block;
  cursor: default;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 1px 3px rgba(232, 93, 44, 0.1);
}
.product-modal-recommended-link {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none !important;
}
.product-modal-recommended-link:hover {
  background: rgba(248, 191, 44, 0.34);
  border-color: rgba(228, 145, 0, 0.55);
  text-decoration: none !important;
}
.product-modal-recommended-link:visited,
.product-modal-recommended-link:focus,
.product-modal-recommended-link:active {
  text-decoration: none !important;
}
.product-modal-buy {
  align-self: flex-start;
}

/* Products page stagger */
.products-page .animate-in[data-delay="0"].visible { transition-delay: 0ms; }
.products-page .animate-in[data-delay="1"].visible { transition-delay: 120ms; }
.products-page .animate-in[data-delay="2"].visible { transition-delay: 240ms; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-inner { padding: 0.6rem 1rem; gap: 0.75rem; flex-wrap: wrap; }
  .nav-logo img { height: 40px; }
  .nav-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }
  .nav-toggle:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.18); }
  .nav-toggle[aria-expanded="true"] {
    background: rgba(232, 93, 44, 0.2);
    border-color: rgba(232, 93, 44, 0.35);
    color: #ffb088;
  }
  .nav-toggle-line { width: 20px; height: 2.5px; border-radius: 2px; }
  .nav-links {
    display: none;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    order: 99;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: nav-menu-in 0.3s ease;
  }
  @keyframes nav-menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-menu-open .nav-links { display: flex; }
  .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 2px;
    border-bottom: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffb088;
  }
  .nav-link:last-child { margin-bottom: 0; }
  .nav-link-active {
    background: rgba(232, 93, 44, 0.15);
    color: #ffb088;
  }
  .nav-link-active:hover { background: rgba(232, 93, 44, 0.22); }
  .hero { padding: 8rem 1.5rem 3.5rem; }
  .hero-headline-main { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-headline-sub { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  .hero-logo { width: min(92vw, 400px); }
  .hero-subtext { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-cta { gap: 0.85rem; }
  .home-product-section { padding: 4rem 1.5rem; }
  .home-product-inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-product-image { order: 1; }
  .home-product-info { order: 2; text-align: center; align-items: center; }
  .home-product-img { max-width: 100%; }
  .home-product-title { font-size: clamp(2.5rem, 6vw, 3.4rem); text-align: center; }
  .home-product-description { font-size: 0.95rem; }
  .home-product-packs { margin-bottom: 1.25rem; text-align: center; }
  .home-product-packs-buttons { gap: 0.65rem; justify-content: center; }
  .home-product-pack-btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
  .home-product-buy { align-self: center; }
  .banner { height: min(35vh, 280px); }
  .who-section { padding: 4rem 1.5rem; }
  .who-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .who-text { font-size: 0.98rem; }
  .about-main { padding: 8rem 0 4rem; }
  .about-banner { height: min(42vh, 300px); margin-bottom: 2rem; }
  .about-card { margin: 0 1.25rem; padding: 1.75rem 1.5rem; }
  .about-section-title { font-size: clamp(1.2rem, 4vw, 1.45rem); }
  .about-story, .about-list { font-size: 0.95rem; }
  .site-footer { padding: 2.75rem 1.5rem 1.75rem; }
  .footer-text, .footer-details { font-size: 0.9rem; }
  .footer-copy { font-size: 0.9375rem; margin-top: 1.5rem; }
  .contact-main { padding: 0 1.5rem 4rem; }
  .contact-content { padding: 8.5rem 1.5rem 0; }
  .contact-heading { font-size: clamp(1.85rem, 6vw, 2.5rem); }
  .contact-card { padding: 2rem 1.5rem; }
  .contact-banner { max-width: 100%; margin: 2.5rem 0.5rem 0; }
  .contact-form input, .contact-form textarea { padding: 0.8rem 1rem; min-height: 44px; font-size: 16px; }
  .contact-form textarea { min-height: 100px; }
  .btn { padding: 0.9rem 1.5rem; min-height: 44px; font-size: 0.95rem; }
  .hero-cta { align-items: center; }
  .hero-cta .btn { width: auto; max-width: 85%; }
  .contact-submit { width: 100%; max-width: 280px; }
  .products-main { padding: 8rem 1.5rem 22rem; }
  .products-heading { font-size: clamp(1.85rem, 6vw, 2.5rem); margin-bottom: 2.25rem; }
  .products-tabs { gap: 0.5rem; margin-bottom: 2.25rem; }
  .products-tab { padding: 0.65rem 1.5rem; font-size: 0.95rem; min-height: 44px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.75rem; }
  .product-card { padding: 1.5rem; }
  .product-modal-content { max-width: 95%; margin: 1rem; }
  .product-modal-body { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
  .product-modal-image { flex: 0 0 100%; max-width: 100%; }
  .product-modal-title { font-size: clamp(2rem, 4vw, 2.8rem); }
  .product-modal-description { font-size: 0.95rem; }
  .product-modal-packs-buttons { gap: 0.65rem; }
  .product-modal-pack-btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
  .product-modal-buy { width: 100%; max-width: 280px; }
  .glow { height: 220px; filter: blur(70px); }
}

@media (max-width: 640px) {
  .nav-inner { gap: 0.6rem; padding: 0.5rem 0.75rem; }
  .nav-logo img { height: 34px; }
  .nav-links { padding: 0.6rem 0.75rem 0.85rem; margin-left: -0.75rem; width: calc(100% + 1.5rem); }
  .nav-link { font-size: 0.9rem; padding: 0.75rem 0.85rem; }
  .hero { padding: 7.5rem 1.25rem 3rem; }
  .hero-logo { width: 88vw; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 100%; align-items: center; }
  .hero-cta .btn { width: auto; max-width: 85%; }
  .home-product-section { padding: 3.5rem 1.25rem; }
  .home-product-inner { gap: 1.5rem; }
  .home-product-info { text-align: center; align-items: center; }
  .home-product-title { font-size: 2.5rem; margin-bottom: 0.85rem; text-align: center; }
  .home-product-description { font-size: 0.9rem; margin-bottom: 1rem; }
  .home-product-packs { text-align: center; }
  .home-product-packs-buttons { justify-content: center; }
  .home-product-packs-label { font-size: 0.9rem; }
  .home-product-buy { align-self: center; }
  .home-product-buy .btn { width: 100%; max-width: 100%; }
  .glow { height: 180px; filter: blur(60px); }
  .who-section { padding: 3.5rem 1.25rem; }
  .about-main { padding: 7rem 0 3.5rem; }
  .about-banner { height: min(38vh, 260px); margin-bottom: 1.5rem; }
  .about-card { margin: 0 1rem; padding: 1.5rem 1.25rem; }
  .site-footer { padding: 2.5rem 1.25rem 1.5rem; }
  .contact-main { padding: 0 1.25rem 3rem; }
  .contact-content { padding: 7.5rem 1.25rem 0; }
  .contact-card { padding: 1.5rem 1.25rem; }
  .contact-banner { margin: 2rem 0.25rem 0; border-radius: 10px; }
  .contact-form { gap: 0.95rem; }
  .contact-submit { width: 100%; max-width: 100%; }
  .products-main { padding: 7.5rem 1.5rem 21rem; }
  .products-heading { font-size: clamp(1.65rem, 5vw, 2rem); margin-bottom: 2rem; }
  .products-tabs { gap: 0.5rem; margin-bottom: 2rem; }
  .products-tab { padding: 0.6rem 1.25rem; font-size: 0.9rem; min-height: 44px; }
  .products-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .product-card { padding: 1.5rem; border-radius: 12px; }
  .product-card-img { max-height: 180px; }
  .recipes-page .product-card-img { height: 140px; max-height: 140px; }
  .recipes-page .product-modal-body { gap: 1.25rem; padding: 1.35rem; }
  .recipes-page .product-modal-image { flex: 0 0 100%; max-width: 100%; }
  .recipes-page .product-modal-image img { max-height: 460px; object-fit: contain; }
  .product-card-name { font-size: 0.95rem; }
  .product-modal-content { max-width: 98%; margin: 0.5rem; }
  .product-modal-body { padding: 1.25rem; gap: 1.25rem; }
  .product-modal-close { width: 32px; height: 32px; top: 0.75rem; right: 0.75rem; font-size: 1.3rem; }
  .product-modal-title { font-size: 1.75rem; margin-bottom: 0.8rem; }
  .product-modal-description { font-size: 0.85rem; margin-bottom: 0.95rem; }
  .product-modal-buy { width: 100%; max-width: 100%; }
}

@media (max-width: 768px) {
  .product-card[data-product] .product-card-img {
    height: 180px;
    max-height: 180px;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0.5rem 0.5rem; }
  .nav-logo img { height: 32px; }
  .nav-links { padding: 0.5rem 0.5rem 0.75rem; margin-left: -0.5rem; width: calc(100% + 1rem); border-radius: 0 0 12px 12px; }
  .nav-link { font-size: 0.875rem; padding: 0.7rem 0.75rem; }
  .hero { padding: 7rem 1rem 2.5rem; }
  .hero-headline-main { font-size: 1.65rem; }
  .hero-headline-sub { font-size: 1.15rem; }
  .hero-logo { width: 85vw; }
  .hero-subtext { font-size: 0.9rem; }
  .hero-subtext p { margin-bottom: 0.65rem; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 100%; gap: 0.75rem; align-items: center; }
  .hero-cta .btn { width: auto; max-width: 85%; }
  .home-product-section { padding: 3rem 1rem; }
  .home-product-inner { gap: 1.25rem; }
  .home-product-img { border-radius: 12px; }
  .home-product-info { text-align: center; align-items: center; }
  .home-product-title { font-size: 2.2rem; margin-bottom: 0.75rem; text-align: center; }
  .home-product-description { font-size: 0.875rem; margin-bottom: 0.9rem; }
  .home-product-packs { margin-bottom: 1rem; text-align: center; }
  .home-product-packs-label { font-size: 0.875rem; margin-bottom: 0.6rem; }
  .home-product-packs-buttons { gap: 0.5rem; justify-content: center; }
  .home-product-pack-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .home-product-buy { align-self: center; }
  .home-product-buy .btn { width: 100%; }
  .banner { height: min(30vh, 240px); }
  .who-section { padding: 3.5rem 1rem; }
  .who-heading { font-size: 1.5rem; margin-bottom: 1.25rem; }
  .who-text { font-size: 0.95rem; }
  .about-main { padding: 6.5rem 0 3rem; }
  .about-banner { height: min(35vh, 240px); margin-bottom: 1.25rem; }
  .about-card { margin: 0 0.75rem; padding: 1.25rem 1rem; }
  .about-section-title { font-size: 1.15rem; margin-bottom: 1rem; }
  .about-story, .about-list { font-size: 0.9rem; }
  .site-footer { padding: 2.25rem 1rem 1.25rem; }
  .footer-text, .footer-details { font-size: 0.875rem; }
  .footer-copy { font-size: 0.875rem; margin-top: 1.25rem; }
  .contact-main { padding: 0 1rem 2.5rem; }
  .contact-content { padding: 7rem 1rem 0; }
  .contact-heading { font-size: 1.65rem; margin-bottom: 1.5rem; }
  .contact-heading::after { width: 36px; }
  .contact-card { padding: 1.25rem 1rem; }
  .contact-details { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .contact-whatsapp { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .contact-form-intro { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .contact-form { gap: 0.85rem; }
  .contact-form input, .contact-form textarea { padding: 0.75rem 0.9rem; font-size: 16px; }
  .contact-banner { margin: 1.75rem 0.15rem 0; border-radius: 8px; }
  .contact-submit { width: 100%; }
  .products-main { padding: 7rem 1.25rem 20rem; }
  .products-heading { font-size: 1.65rem; margin-bottom: 1.75rem; }
  .products-heading::after { width: 36px; }
  .products-tabs { gap: 0.4rem; margin-bottom: 1.75rem; }
  .products-tab { padding: 0.55rem 1.1rem; font-size: 0.85rem; min-height: 44px; }
  .products-grid { gap: 1.5rem; }
  .product-card { padding: 1.25rem; border-radius: 10px; }
  .product-card-img { max-height: 160px; }
  .recipes-page .product-card-img { height: 120px; max-height: 120px; }
  .product-card-name { font-size: 0.9rem; }
  .product-modal-content { max-width: 98%; margin: 0.5rem; border-radius: 16px; }
  .product-modal-body { padding: 1rem; gap: 1rem; }
  .product-modal-close { width: 30px; height: 30px; top: 0.5rem; right: 0.5rem; font-size: 1.2rem; }
  .product-modal-image img { border-radius: 12px; }
  .product-modal-title { font-size: 1.65rem; margin-bottom: 0.7rem; }
  .product-modal-description { font-size: 0.825rem; margin-bottom: 0.85rem; }
  .product-modal-packs { margin-bottom: 0.75rem; }
  .product-modal-recommended { margin-bottom: 0.9rem; }
  .product-modal-packs-label { font-size: 0.84rem; margin-bottom: 0.6rem; }
  .product-modal-recommended-label { font-size: 0.84rem; margin-bottom: 0.6rem; }
  .product-modal-packs-buttons { gap: 0.5rem; }
  .product-modal-recommended-buttons { gap: 0.6rem; }
  .product-modal-pack-btn { padding: 0.48rem 0.95rem; font-size: 0.78rem; }
  .product-modal-recommended-btn { padding: 0.55rem 1.08rem; font-size: 0.78rem; }
  .product-modal-buy { width: 100%; }
  .glow { height: 160px; filter: blur(50px); }
}
