:root {
  --green: #1a7a2e;
  --green-light: #2eaa47;
  --green-pale: #e8f5eb;
  --orange: #e87d0d;
  --orange-light: #f5a623;
  --orange-pale: #fff4e5;
  --amber: #e87d0d;
  --amber-light: #f5a623;
  --red-dark: #7a1a1a;
  --cream: #fdf8f0;
  --hero-bg: #f5f9e8;
  --dark: #1a1208;
  --text: #1a3d1a;
  --text-muted: #4a6b4a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  background: #f5f9f0;
  color: var(--text);
  overflow-x: hidden;
}

.scroll-top-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-size: 1.35rem;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(26, 122, 46, 0.24);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  z-index: 200;
}
.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--green-light);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #d4edda;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 16px rgba(26, 122, 46, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-logo img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 10px;
}
.nav-logo-text {
  display: flex;
  margin-top: 8px;
  flex-direction: column;
}
.nav-logo-text .brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.nav-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: var(--green-pale);
  color: var(--green);
}
.nav-order {
  background: var(--green) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 9px 22px !important;
  border-radius: 24px !important;
  box-shadow: 0 3px 12px rgba(26, 122, 46, 0.3);
}
.nav-order:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
}

/* ─── TOAST MESSAGE ─── */
.toast-message {
  position: fixed;
  top: 90px;
  left: -90;
  right: 0;
  max-width: 500px;
  min-width: auto;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-light) 100%
  );
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(232, 125, 13, 0.25);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.toast-message.closing {
  animation: slideUp 0.4s ease-in forwards;
}

.toast-content {
  max-width: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.toast-text {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.toast-close:active {
  transform: scale(0.95);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #f0fae8 0%,
    #fffde8 40%,
    #fdf5e0 70%,
    #f5fde8 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 180px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 65% 50%,
      rgba(232, 125, 13, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 30%,
      rgba(26, 122, 46, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 520px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  border: 1.5px solid var(--orange-light);
  color: #7a4800;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 6px;
}
.hero h1 .orange-line {
  color: var(--orange);
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.hero-sub {
  font-size: 1rem;
  color: #4a5c4a;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 420px;
}
.hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(26, 122, 46, 0.35);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 122, 46, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: white;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
}
.btn-secondary:hover {
  background: #1565d8;
  transform: translateY(-2px);
}

.hero-img {
  flex: 1;
  min-width: 240px;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-wrap {
  background: white;
  border-radius: 32px;
  padding: 22px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 340px;
  max-height: 480px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(26, 122, 46, 0.06);
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    transparent 32%
  );
  pointer-events: none;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: heroSlide 12s infinite ease-in-out;
}
.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider .slide:nth-child(2) {
  animation-delay: 4s;
}
.hero-slider .slide:nth-child(3) {
  animation-delay: 8s;
}
@keyframes heroSlide {
  0%,
  8%,
  96%,
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
  10%,
  38% {
    opacity: 1;
    transform: scale(1);
  }
  40%,
  94% {
    opacity: 0;
    transform: scale(1.03);
  }
}
.hero-img-top-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--orange);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(232, 125, 13, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-img-badge {
  position: absolute;
  bottom: -14px;
  right: 18px;
  background: var(--red-dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 900px) {
  .hero-img {
    max-width: 100%;
    min-width: auto;
  }
  .hero-img-wrap {
    padding: 18px;
  }
  .hero-slider {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 28px;
  }
  .hero-img {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .hero-img-wrap {
    padding: 16px;
  }
  .hero-slider {
    min-height: 260px;
    max-height: 360px;
  }
  .hero-img-top-badge {
    left: 14px;
  }
  .hero-img-badge {
    right: 14px;
  }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 8px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ─── SECTION WRAPPER ─── */
section {
  padding: 70px 24px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: #fff3cd;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  border: 1px solid #ffe08a;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--dark);
}
.section-title em {
  color: var(--green);
  font-style: normal;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ─── WHY SPECIAL ─── */
#why {
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--cream);
  border: 1.5px solid #e8dfc8;
  border-radius: 16px;
  padding: 24px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRODUCT ─── */
#product {
  background: var(--cream);
}
.product-layout {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.product-imgs {
  flex: 1;
  min-width: 280px;
}
.product-imgs img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.product-info {
  flex: 1;
  min-width: 280px;
}
.product-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-tagline {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.product-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ingredients-box {
  background: white;
  border: 1.5px solid #e8dfc8;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.ingredients-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── SIZES ─── */
#sizes {
  background: white;
}
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.size-card {
  border: 2px solid #e8dfc8;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.size-card.featured {
  border-color: var(--green);
  background: var(--green-pale);
}
.size-card.featured::before {
  content: "বেস্ট সেলার";
  position: absolute;
  top: 12px;
  right: -22px;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 30px;
  transform: rotate(35deg);
}
.size-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.size-grams {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}
.size-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.size-price {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 700;
  display: inline;
  margin-top: 4px;
}
.size-price s {
  color: var(--text-muted);
  margin-right: 4px;
}
.size-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.size-card a {
  display: inline-block;
  margin-top: 16px;
  background: var(--green);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.size-card a:hover {
  background: var(--green-light);
}

/* ─── HOW TO ENJOY ─── */
#enjoy {
  background: var(--cream);
}
.enjoy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.enjoy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1.5px solid #e8dfc8;
  transition: box-shadow 0.25s;
}
.enjoy-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.enjoy-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.enjoy-item p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

/* ─── ORDER ─── */
#order {
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(26, 122, 46, 0.15) 0%,
      transparent 60%
    ),
    var(--green);
  text-align: center;
  padding: 80px 24px;
}
#order .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
#order .section-title {
  color: white;
}
#order .section-sub {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 40px;
}
.order-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
}
.btn-whatsapp:hover {
  background: #1ebd59;
  transform: translateY(-2px);
}
.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
}
.btn-facebook:hover {
  background: #1565d8;
  transform: translateY(-2px);
}
.btn-icon {
  width: 22px;
  height: 22px;
}
.order-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 30px 24px;
  font-size: 0.85rem;
}
footer strong {
  color: white;
}
footer a {
  color: var(--green-light);
  text-decoration: none;
}

/* ─── FLOAT WHATSAPP ─── */
.float-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: grid;
  gap: 12px;
  align-items: end;
}
.float-wa {
  width: 56px;
  height: 56px;
  margin-bottom: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-wa svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.scroll-top-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-size: 1.35rem;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(26, 122, 46, 0.24);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--green-light);
}

/* ─── ABOUT SECTION ─── */
#about {
  background: linear-gradient(160deg, #f0fae8 0%, #f8fde8 50%, #fffde8 100%);
  text-align: center;
}
#about .section-tag {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 30px;
}
#about .section-title {
  color: var(--green);
}
.about-body {
  max-width: 700px;
  margin: 28px auto 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a5a3a;
}
.about-body p {
  margin-bottom: 18px;
}
.about-body strong {
  color: var(--green);
  font-weight: 700;
}
.about-body .highlight {
  font-weight: 700;
  color: var(--green);
}

#owners {
  background: white;
}
.owner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.owner-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9f8f3 100%);
  border: 1px solid rgba(149, 176, 145, 0.24);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(26, 122, 46, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.owner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 122, 46, 0.16);
}
.owner-card img {
  border-radius: 12px;
}
.owner-content h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--dark);
}
.owner-role {
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 700;
}
.owner-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.owner-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

@media (max-width: 770px) {
  .owner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .owner-card img {
    margin: 0 auto;
  }
  .owner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ─── COMING SOON CARD ─── */
.coming-soon-wrap {
  margin-top: 50px;
}
.coming-soon-card {
  max-width: 440px;
  margin: 0 auto;
  background: #f5f9ee;
  border: 2px dashed var(--green-light);
  border-radius: 24px;
  padding: 52px 36px 44px;
  text-align: center;
}
.cs-icon {
  font-size: 3.2rem;
  margin-bottom: 18px;
  display: block;
}
.cs-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.cs-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: white;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
  transition: all 0.25s;
}
.cs-btn:hover {
  background: #1565d8;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .stat {
    padding: 8px 20px;
  }
  nav {
    padding: 10px 16px;
  }
  .nav-links a:not(.nav-order) {
    display: none;
  }
  .nav-logo-text .tagline {
    display: none;
  }
  .nav-logo-text .brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
  }
  .hero {
    padding: 110px 20px 60px;
  }
  .hero-inner {
    gap: 30px;
  }
  .hero h1 .orange-line {
    color: var(--orange);
    display: inline-block;
  }
  .section-tag {
    display: inline-block;
    background: #fff3cd;
    color: var(--orange);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border: 1px solid #ffe08a;
  }
  .sizes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .size-card {
    padding: 10px 6px;
  }
  .size-grams {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    display: block;
  }
}
