*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --radius: 0.625rem;
  --background: oklch(0.99 0.005 100);
  --foreground: oklch(0.22 0.04 150);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.04 150);
  --primary: oklch(0.42 0.10 150);
  --primary-foreground: oklch(0.98 0.01 100);
  --primary-glow: oklch(0.55 0.14 145);
  --secondary: oklch(0.95 0.03 110);
  --secondary-foreground: oklch(0.30 0.06 150);
  --muted: oklch(0.96 0.015 110);
  --muted-foreground: oklch(0.48 0.03 150);
  --accent: oklch(0.93 0.05 100);
  --accent-foreground: oklch(0.30 0.08 150);
  --gold: oklch(0.78 0.15 85);
  --gold-foreground: oklch(0.25 0.05 80);
  --earth: oklch(0.45 0.07 60);
  --destructive: oklch(0.58 0.22 27);
  --border: oklch(0.90 0.02 110);
  --input: oklch(0.92 0.02 110);
  --ring: oklch(0.55 0.14 145);
  --gradient-hero: linear-gradient(135deg, oklch(0.42 0.10 150 / 0.92), oklch(0.30 0.08 150 / 0.75));
  --gradient-leaf: linear-gradient(135deg, oklch(0.42 0.10 150), oklch(0.55 0.14 145));
  --shadow-elegant: 0 20px 50px -20px oklch(0.30 0.08 150 / 0.35);
  --shadow-soft: 0 8px 24px -12px oklch(0.30 0.08 150 / 0.18);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", "Noto Sans Devanagari", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  letter-spacing: -0.01em;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.px-page { padding-left: 1rem; padding-right: 1rem; }
.py-page { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) {
  .py-page { padding-top: 5rem; padding-bottom: 5rem; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: oklch(0.99 0.005 100 / 0.85);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-link img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.logo-text-primary {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text-secondary {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  line-height: 1.2;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(0.22 0.04 150 / 0.8);
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--primary);
  background: var(--accent);
}
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  transition: background 0.15s;
}
.hamburger-btn:hover { background: var(--accent); }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid oklch(0.90 0.02 110 / 0.5);
  color: var(--foreground);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }

@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .hamburger-btn { display: none; }
}

/* SectionHeading (tsx parity) */
.sh-wrap { max-width: 42rem; }
.sh-wrap.sh-center { text-align: center; margin-left: auto; margin-right: auto; }
.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.sh-line { height: 1px; width: 1.5rem; background: var(--primary); flex-shrink: 0; }
.sh-title {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--foreground);
}
.sh-desc {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Home hero */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.kf-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 1rem;
  color: var(--primary-foreground);
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding: 10rem 1rem; } }
.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: oklch(0.98 0.01 100 / 0.10);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid oklch(0.98 0.01 100 / 0.20);
}
.hero-h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  max-width: 48rem;
  line-height: 1.15;
}
.hero-sub { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; opacity: 0.9; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--gold-foreground);
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 4px 14px oklch(0.78 0.15 85 / 0.35);
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { opacity: 0.9; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: transparent;
  color: var(--primary-foreground);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid oklch(0.98 0.01 100 / 0.40);
  transition: background 0.15s;
  cursor: pointer;
}
.btn-outline-white:hover { background: oklch(0.98 0.01 100 / 0.10); }

/* Highlights */
.highlights-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .highlights-section { padding: 5rem 1rem; } }
.highlights-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.highlight-icon {
  display: inline-flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 1rem;
}
.highlight-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Emoji highlight icon */
.kf-highlight-emoji {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* Proprietor */
.proprietor-section { background: oklch(0.95 0.03 110 / 0.6); }
.proprietor-inner {
  padding: 5rem 1rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .proprietor-inner { grid-template-columns: 1fr 1fr; } }
.proprietor-img-wrap { position: relative; }
.proprietor-glow {
  position: absolute;
  inset: -1rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, oklch(0.42 0.10 150 / 0.20), oklch(0.78 0.15 85 / 0.20));
  filter: blur(24px);
}
.proprietor-img {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-elegant);
}
.proprietor-text { margin-top: 1.5rem; color: oklch(0.22 0.04 150 / 0.85); line-height: 1.75; }
.stats-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-box {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}
.stat-number {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Products grid */
.products-section { padding: 5rem 1rem; }
.products-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.view-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.15s;
}
.view-all-link:hover { gap: 0.5rem; }
.products-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
  display: block;
}
.product-card:hover { transform: translateY(-4px); }
.product-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body { padding: 1.25rem; }
.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.product-name {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.product-nepali { font-size: 0.875rem; color: var(--muted-foreground); }
.product-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: oklch(0.22 0.04 150 / 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta { margin-top: 1rem; font-size: 0.75rem; color: var(--muted-foreground); }

/* Climate teaser */
.climate-section {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}
.climate-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-leaf);
  opacity: 0.2;
}
.climate-inner {
  position: relative;
  padding: 5rem 1rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .climate-inner { grid-template-columns: 1fr 1fr; } }
.climate-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.climate-h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
}
.climate-p { margin-top: 1rem; opacity: 0.85; max-width: 28rem; }
.climate-cta-gap { margin-top: 1.5rem; }
.climate-zones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.climate-zone-box {
  aspect-ratio: 1;
  border-radius: calc(var(--radius) + 4px);
  background: oklch(0.98 0.01 100 / 0.10);
  border: 1px solid oklch(0.98 0.01 100 / 0.15);
  backdrop-filter: blur(4px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.climate-zone-elev { font-size: 1.5rem; font-weight: 600; }
.climate-zone-name { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* Testimonials */
.testimonials-section { padding: 5rem 1rem; }
.testimonials-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.testimonial-quote { color: oklch(0.22 0.04 150 / 0.85); line-height: 1.75; }
.testimonial-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.75rem; color: var(--muted-foreground); }

/* Footer */
.site-footer {
  margin-top: 6rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
.footer-inner {
  padding: 3.5rem 1rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-row img {
  height: 40px;
  width: 40px;
  background: oklch(0.99 0.005 100 / 0.95);
  border-radius: 50%;
  padding: 4px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: 1.25rem;
}
.footer-brand-tagline { font-size: 0.75rem; opacity: 0.75; }
.footer-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  max-width: 28rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul a { font-size: 0.875rem; opacity: 0.85; transition: opacity 0.15s; }
.footer-col ul a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid oklch(0.98 0.01 100 / 0.15); }
.footer-bottom-inner {
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Inner pages common */
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-24 { margin-top: 6rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-10 { margin-bottom: 2.5rem; }
.card-pad { padding: 1.5rem; border-radius: calc(var(--radius) + 4px); border: 1px solid var(--border); box-shadow: var(--shadow-soft); background: var(--card); transition: transform 0.2s; }
.card-pad.hover-lift:hover { transform: translateY(-4px); }
.grid-123 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-123 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-123 { grid-template-columns: repeat(3, 1fr); } }

/* Blog meta */
.article-date { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.article-title { margin-top: 0.75rem; font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.article-excerpt { margin-top: 0.75rem; font-size: 0.875rem; color: oklch(0.22 0.04 150 / 0.75); line-height: 1.75; }
.link-primary { margin-top: 1rem; display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--primary); cursor: pointer; border: none; background: none; font-family: inherit; }
.link-primary:hover { text-decoration: underline; }

/* FAQ details */
.faqs-grid { display: grid; gap: 1rem; max-width: 56rem; }
@media (min-width: 768px) { .faqs-grid { grid-template-columns: repeat(2, 1fr); } }
details.faq-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
details.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { color: var(--primary); transition: transform 0.2s; flex-shrink: 0; }
details.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }

/* Climate guide */
.zone-tabs { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .zone-tabs { grid-template-columns: repeat(3, 1fr); } }
.zone-tab {
  text-align: left;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.zone-tab:hover { border-color: oklch(0.42 0.10 150 / 0.4); }
.zone-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}
.zone-tab-icon { width: 1.75rem; height: 1.75rem; margin-bottom: 0.75rem; }
.zone-tab.active .zone-tab-icon { color: var(--gold); }
.zone-tab:not(.active) .zone-tab-icon { color: var(--primary); }
.zone-tab-title { font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.zone-tab-meta { font-size: 0.75rem; margin-top: 0.25rem; opacity: 0.8; }
.zone-tab:not(.active) .zone-tab-meta { color: var(--muted-foreground); }

.climate-detail-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .climate-detail-grid { grid-template-columns: 2fr 1fr; gap: 2rem; } }

.panel-soft {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.panel-aside {
  padding: 2rem;
  border-radius: 1rem;
  color: var(--primary-foreground);
  background: var(--gradient-leaf);
}

.crop-chip {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  margin: 0.25rem 0.25rem 0 0;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}
.farm-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: oklch(0.95 0.03 110 / 0.6);
}

.data-list dt {
  opacity: 0.8;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.data-list dd {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.table-wrap {
  margin-top: 4rem;
  overflow-x: auto;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
}
.data-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  text-align: left;
}
.data-table thead { background: var(--secondary); color: var(--secondary-foreground); }
.data-table th, .data-table td { padding: 1rem; }
.data-table tbody tr { border-top: 1px solid var(--border); }
.data-table .highlight-cell { font-weight: 600; color: var(--primary); }

/* Gallery */
.gallery-masonry { columns: 2; gap: 1rem; column-fill: balance; }
@media (min-width: 768px) { .gallery-masonry { columns: 3; } }
.gallery-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; transition: transform 0.5s; }
.gallery-item img:hover { transform: scale(1.05); }

.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-leaf);
  color: var(--primary-foreground);
}
.video-play {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--gold-foreground);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.video-play:hover { transform: scale(1.1); }
.video-play svg { margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Contact */
.contact-grid { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 1fr; } }
.form-grid { display: grid; gap: 1rem; }
.form-row-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: repeat(2, 1fr); } }
.form-label { display: block; }
.form-label span { font-size: 0.875rem; font-weight: 500; }
.form-input {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background: var(--background);
  font-family: inherit;
  font-size: 1rem;
}
.form-input:focus { outline: none; box-shadow: 0 0 0 2px var(--ring); }
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.btn-primary:hover { background: oklch(0.42 0.10 150 / 0.9); }

.contact-aside-card {
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-aside-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); }
.contact-aside-value { font-weight: 600; margin-top: 0.125rem; }
.aside-stack { display: flex; flex-direction: column; gap: 1rem; }

.thank-you { text-align: center; padding: 3rem 1rem; }
.thank-you-emoji { font-size: 3rem; line-height: 1; }
.thank-you h3 { margin-top: 1rem; font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif; font-size: 1.5rem; }
.thank-you p { margin-top: 0.5rem; color: var(--muted-foreground); }

/* Products filter */
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--background);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.filter-btn:hover { background: var(--accent); }
.filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Product detail */
.back-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.back-link:hover { color: var(--primary); }
.prod-detail-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .prod-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 4rem; } }
.prod-img-box { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-elegant); }
.prod-img-box img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.prod-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); }
.prod-title { margin-top: 0.5rem; font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.prod-nepali-large { margin-top: 0.25rem; font-size: 1.125rem; color: var(--muted-foreground); }
.prod-intro { margin-top: 1.25rem; font-size: 1.125rem; color: oklch(0.22 0.04 150 / 0.85); line-height: 1.75; }
.badge-row { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; }
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--secondary);
}

.two-col-lists {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .two-col-lists { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.list-heading { font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.5rem; align-items: flex-start; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); width: 1rem; height: 1rem; }
.list-heading svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.meta-pill svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.back-link svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.cta-box {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  background: oklch(0.93 0.05 100 / 0.6);
  border: 1px solid var(--border);
}
.cta-box p { font-size: 0.875rem; color: oklch(0.22 0.04 150 / 0.8); }
.cta-box .btn-primary { margin-top: 0.75rem; }

.hidden { display: none !important; }

.font-display {
  font-family: "Playfair Display", "Noto Serif Devanagari", Georgia, serif;
}
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-16 { margin-top: 4rem; }

i[data-lucide] svg { width: 1em; height: 1em; }
