:root {
  --tea-dark: #2b1a12;
  --tea-brown: #4a2c1a;
  --tea-gold: #c8952a;
  --tea-gold-light: #e8c073;
  --ghee-cream: #fff8ec;
  --text-dark: #26170f;
  --text-light: #fdf6ea;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
  --max-width: 1180px;
  --radius: 16px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-dark);
  background: var(--ghee-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', 'Georgia', serif; }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(43, 26, 18, 0.92);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--tea-gold-light);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--tea-gold-light); }

.nav-order-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-order-btn:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.nav-order-btn svg { width: 18px; height: 18px; fill: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tea-dark) 0%, var(--tea-brown) 100%);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(43,26,18,0.3) 0%, rgba(43,26,18,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  color: var(--text-light);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--tea-gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid var(--tea-gold);
  padding: 6px 16px;
  border-radius: 30px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--tea-gold-light);
}

.hero p {
  font-size: 1.15rem;
  color: #f1e2c8;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover { background: var(--whatsapp-dark); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(253, 246, 234, 0.5);
}

.btn-outline:hover { background: rgba(253,246,234,0.1); transform: translateY(-3px); }

.btn svg { width: 20px; height: 20px; fill: currentColor; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  opacity: 0.6;
  font-size: 0.8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Section common ---------- */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: var(--tea-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--tea-dark);
  margin-bottom: 16px;
}

.section-header p {
  color: #5c4635;
  font-size: 1.05rem;
}

/* ---------- Products ---------- */
.products { background: var(--ghee-cream); }

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 110px;
}

.product-card:last-child { margin-bottom: 0; }

.product-card.reverse .product-media { order: 2; }
.product-card.reverse .product-info { order: 1; }

.product-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(74, 44, 26, 0.25);
  aspect-ratio: 4 / 5;
  background: #000;
}

.product-media img,
.product-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.media-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.media-toggle button {
  background: rgba(43, 26, 18, 0.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.media-toggle button.active,
.media-toggle button:hover {
  background: var(--tea-gold);
  border-color: var(--tea-gold);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tea-gold);
  color: var(--tea-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
}

.product-info span.tag {
  color: var(--tea-gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.product-info h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 12px 0 18px;
  color: var(--tea-dark);
}

.product-info p {
  color: #5c4635;
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 28px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--tea-brown);
  font-weight: 500;
}

.product-features li svg {
  width: 18px; height: 18px;
  fill: var(--tea-gold);
  flex-shrink: 0;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.product-price .amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tea-brown);
  font-family: 'Playfair Display', serif;
}

.product-price .unit {
  color: #8a7161;
  font-size: 0.9rem;
}

/* ---------- About ---------- */
.about {
  background: var(--tea-dark);
  color: var(--text-light);
}

.about .section-header h2 { color: var(--text-light); }
.about .section-header p { color: #d9c6ad; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  background: rgba(253, 246, 234, 0.06);
  border: 1px solid rgba(253, 246, 234, 0.12);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  background: rgba(253, 246, 234, 0.1);
}

.about-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--tea-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon svg { width: 28px; height: 28px; fill: var(--tea-dark); }

.about-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--tea-gold-light);
}

.about-card p {
  color: #d9c6ad;
  font-size: 0.92rem;
}

/* ---------- Order CTA banner ---------- */
.order-cta {
  background: linear-gradient(120deg, var(--tea-gold) 0%, var(--tea-gold-light) 100%);
  padding: 70px 0;
  text-align: center;
}

.order-cta h2 {
  color: var(--tea-dark);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}

.order-cta p {
  color: var(--tea-brown);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.order-cta .btn-primary {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ---------- Contact / Footer ---------- */
footer {
  background: var(--tea-dark);
  color: #d9c6ad;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  color: var(--tea-gold-light);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.footer-col ul li { margin-bottom: 12px; font-size: 0.92rem; }

.footer-col a:hover { color: var(--tea-gold-light); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-whatsapp svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 234, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #a8927b;
}

/* ---------- Floating WhatsApp button ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2.4s infinite;
}

.float-whatsapp svg { width: 32px; height: 32px; fill: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .product-card, .product-card.reverse {
    grid-template-columns: 1fr;
  }
  .product-card.reverse .product-media,
  .product-card.reverse .product-info,
  .product-media, .product-info { order: initial; }
  .product-media { aspect-ratio: 16/10; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-order-btn { display: none; }
  .menu-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tea-dark);
    padding: 20px 24px;
    gap: 18px;
  }

  .nav-links.open ~ .nav-order-btn,
  header.menu-open .nav-order-btn {
    display: inline-flex;
    margin: 0 24px 20px;
  }

  section { padding: 70px 0; }
  .product-features { grid-template-columns: 1fr; }
}
