/*
Theme Name: Organic Theme
Theme URI: https://source-to-seal.lovable.app
Author: Organic 2.0
Author URI: https://source-to-seal.lovable.app
Description: A high-performance single-page theme for Organic 2.0 — India's first video-verified organic supply chain, e-commerce marketplace, and Farm-as-a-Service platform.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: organic-theme
Tags: one-page, e-commerce, organic, farming, premium
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --background: 45 30% 97%;
  --foreground: 150 25% 12%;
  --card: 45 25% 95%;
  --card-foreground: 150 25% 12%;
  --popover: 45 30% 97%;
  --popover-foreground: 150 25% 12%;
  --primary: 152 45% 22%;
  --primary-foreground: 45 30% 97%;
  --secondary: 38 75% 55%;
  --secondary-foreground: 150 25% 12%;
  --muted: 45 20% 90%;
  --muted-foreground: 150 15% 40%;
  --accent: 142 50% 45%;
  --accent-foreground: 45 30% 97%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 45 30% 97%;
  --border: 45 20% 85%;
  --input: 45 20% 85%;
  --ring: 152 45% 22%;
  --radius: 0.75rem;
  --cream: 45 40% 96%;
  --forest: 152 45% 22%;
  --forest-light: 152 35% 35%;
  --amber: 38 75% 55%;
  --amber-light: 38 80% 70%;
  --leaf: 142 50% 45%;
  --earth: 30 25% 30%;
  --shadow-soft: 0 4px 20px -4px hsla(152,45%,22%,0.15);
  --shadow-elevated: 0 20px 40px -12px hsla(152,45%,22%,0.25);
  --shadow-glow: 0 0 40px hsla(38,75%,55%,0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container-custom { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-custom { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding: 0 2rem; } }

.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 0; } }

.text-gradient-gold {
  background-image: linear-gradient(135deg, hsl(38 75% 55%) 0%, hsl(45 85% 65%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-forest {
  background-image: linear-gradient(135deg, hsl(152 45% 22%) 0%, hsl(142 50% 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-premium {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, hsl(38 75% 55%) 0%, hsl(45 85% 65%) 100%);
  box-shadow: 0 4px 20px hsla(38,75%,55%,0.4);
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 30px hsla(38,75%,55%,0.5); }

.btn-outline {
  border: 2px solid hsl(var(--border));
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s;
  color: hsl(var(--muted-foreground));
}
.btn-ghost:hover { background: hsl(var(--muted)); }

.glass-card {
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
}

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.input-field {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.input-field:focus { border-color: hsl(var(--primary)); }

.card {
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover { border-color: hsla(152,45%,22%,0.3); box-shadow: var(--shadow-soft); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(45,30%,97%,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsla(45,20%,85%,0.5);
}
.navbar .inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.navbar .logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar .logo-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.navbar .logo-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary-foreground)); }
.navbar .logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }

.nav-links { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  padding: 0.5rem; transition: color 0.3s;
}
.nav-links a:hover { color: hsl(var(--foreground)); }

.nav-cta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.nav-divider { width: 1px; height: 1.5rem; background: hsl(var(--border)); margin: 0 0.5rem; }

/* Mega Menu */
.mega-menu-group { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .mega-menu-group { display: flex; } }

.mega-trigger {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  border-radius: 0.375rem;
  transition: all 0.2s;
  position: relative;
}
.mega-trigger:hover { background: hsla(45,20%,90%,0.5); color: hsl(var(--foreground)); }

.mega-dropdown {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.5rem; z-index: 50;
}
.mega-trigger-wrap:hover .mega-dropdown { display: block; }

.mega-panel {
  background: hsl(var(--popover));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  box-shadow: var(--shadow-elevated);
  padding: 1.5rem;
  min-width: 520px;
}
.mega-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid hsla(45,20%,85%,0.5);
}
.mega-header h3 { font-family: 'Playfair Display', serif; font-weight: 600; }
.mega-grid { display: grid; gap: 0.5rem; }
.mega-grid-4 { grid-template-columns: repeat(4, 1fr); }
.mega-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .mega-grid-4, .mega-grid-3 { grid-template-columns: repeat(2, 1fr); } }

.mega-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.75rem; border-radius: 0.5rem; text-align: center;
  transition: background 0.2s;
}
.mega-item:hover { background: hsla(45,20%,90%,0.5); }
.mega-item .icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mega-item:hover .icon-wrap { background: hsla(152,45%,22%,0.2); }
.mega-item .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.mega-item span { font-size: 0.875rem; font-weight: 500; }
.mega-item small { font-size: 0.625rem; color: hsl(var(--muted-foreground)); line-height: 1.3; }

/* Mobile Menu */
.mobile-toggle { display: block; padding: 0.5rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--foreground)); }

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid hsla(45,20%,85%,0.5);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.5rem 0;
  font-size: 1rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
}
.mobile-menu a:hover { color: hsl(var(--foreground)); }
.mobile-menu .mobile-cta {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-top: 1rem; margin-top: 1rem;
  border-top: 1px solid hsla(45,20%,85%,0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%; filter: blur(48px); opacity: 0.05;
}
.hero-bg-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: hsl(var(--primary)); }
.hero-bg-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: hsl(var(--secondary)); }

.hero-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.hero-content { display: flex; flex-direction: column; gap: 2rem; }
.hero h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.1; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

.hero p.desc { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 36rem; line-height: 1.7; }
.hero p.desc .highlight { font-weight: 600; color: hsl(var(--foreground)); }

.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-buttons .btn-premium { padding: 1rem 2rem; font-size: 1rem; }
.hero-buttons .btn-outline { padding: 1rem 1.5rem; font-size: 1rem; }

.play-circle {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.btn-outline:hover .play-circle { background: hsla(152,45%,22%,0.2); }
.play-circle svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); fill: hsl(var(--primary)); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1rem; }
.trust-badges .item { display: flex; align-items: center; gap: 0.5rem; }
.trust-badges .item svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--secondary)); }
.trust-badges .item span { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.hero-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(152,45%,22%,0.6), transparent, transparent);
}
.hero-live-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
}
.hero-live-dot { width: 0.75rem; height: 0.75rem; background: #ef4444; border-radius: 50%; animation: pulse 2s infinite; }
.hero-live-badge span { font-size: 0.875rem; font-weight: 500; color: white; }

.hero-stats {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  padding: 1.5rem; border-radius: 1rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center;
}
.hero-stats p.val { font-size: 1.5rem; font-weight: 700; color: white; }
.hero-stats p.lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

.hero-float-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 6rem; height: 6rem; border-radius: 1rem;
  background: hsl(var(--secondary));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: float 6s ease-in-out infinite;
}
.hero-float-badge span { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: hsl(var(--secondary-foreground)); }

.hero-price-tag {
  position: absolute; bottom: -1rem; left: -1rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
}
.hero-price-tag p:first-child { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.hero-price-tag p:last-child { font-weight: 600; color: hsl(var(--foreground)); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section { background: hsla(45,20%,90%,0.3); }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header .tag { display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.section-header h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .section-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-header h2 { font-size: 3rem; } }
.section-header p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); }

.steps-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step-card {
  position: relative; padding: 2rem; border-radius: 1rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.step-card:hover { border-color: hsla(152,45%,22%,0.3); box-shadow: var(--shadow-soft); }
.step-number {
  position: absolute; top: -0.75rem; right: -0.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: hsl(var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: hsl(var(--secondary-foreground));
  font-size: 0.875rem;
}
.step-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.step-card:hover .step-icon { background: hsla(152,45%,22%,0.2); }
.step-icon svg { width: 1.75rem; height: 1.75rem; color: hsl(var(--primary)); }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 1rem; }
.step-badge {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: hsla(142,50%,45%,0.1); color: hsl(var(--accent));
  font-size: 0.75rem; font-weight: 500;
}

.how-cta {
  margin-top: 4rem; text-align: center;
}
.how-cta-inner {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1.5rem; border-radius: 1rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.how-cta-inner .text h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; }
.how-cta-inner .text p { font-size: 0.875rem; opacity: 0.8; }
.how-cta-inner .divider { width: 1px; height: 3rem; background: hsla(45,30%,97%,0.2); }
.how-cta-inner .book-btn {
  padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
  font-weight: 600; transition: opacity 0.3s;
}
.how-cta-inner .book-btn:hover { opacity: 0.9; }

/* ============================================
   PRODUCT CATALOG
   ============================================ */
.trust-markers { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.trust-marker {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500;
}

.category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.category-icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
}
.category-icon-wrap svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.category-header h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
@media (min-width: 1024px) { .category-header h3 { font-size: 1.5rem; } }
.category-header p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.products-grid { display: grid; gap: 1.25rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { border-radius: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); overflow: hidden; transition: all 0.3s; }
.product-card:hover { border-color: hsla(152,45%,22%,0.3); box-shadow: var(--shadow-soft); }

.product-brand-bar {
  padding: 1rem 1rem 0.5rem; display: flex; align-items: center; justify-content: space-between;
}
.product-brand { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: hsl(var(--muted-foreground)); }
.product-badge {
  font-size: 0.625rem; font-weight: 700; padding: 0.125rem 0.5rem;
  border-radius: 9999px; color: hsl(var(--primary-foreground));
}
.badge-primary { background: hsl(var(--primary)); }
.badge-accent { background: hsl(var(--accent)); }
.badge-secondary { background: hsl(var(--secondary)); }

.product-img-wrap {
  position: relative; height: 11rem; overflow: hidden;
  margin: 0 1rem; border-radius: 0.75rem;
}
.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.1); }

.product-quick-view {
  position: absolute; inset: 0;
  background: hsla(150,25%,12%,0.4);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-quick-view { opacity: 1; }
.product-quick-view button {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  background: hsl(var(--popover)); color: hsl(var(--foreground));
  font-size: 0.875rem; font-weight: 500;
}

.product-tags {
  position: absolute; bottom: 0.5rem; left: 0.5rem;
  display: flex; gap: 0.25rem; flex-wrap: wrap;
}
.product-tag {
  font-size: 0.5625rem; font-weight: 500;
  padding: 0.125rem 0.375rem; border-radius: 0.25rem;
  background: hsla(45,30%,97%,0.9); color: hsl(var(--foreground));
  backdrop-filter: blur(4px);
}

.product-content { padding: 1rem; }
.product-content h4 {
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.875rem; margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.star-rating { display: flex; align-items: center; gap: 0.25rem; }
.star-rating svg { width: 0.875rem; height: 0.875rem; }
.star-filled { color: hsl(var(--secondary)); fill: hsl(var(--secondary)); }
.star-empty { color: hsl(var(--border)); }
.star-rating .rating-num { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-left: 0.25rem; }
.reviews-count { font-size: 0.625rem; color: hsl(var(--muted-foreground)); margin-top: 0.125rem; }

.product-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.75rem; }
.product-price .current { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); }
.product-price .original { font-size: 0.75rem; color: hsl(var(--muted-foreground)); text-decoration: line-through; }

.smart-add-btn {
  width: 100%; margin-top: 0.75rem;
  padding: 0.5rem; border-radius: var(--radius);
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: opacity 0.3s;
}
.smart-add-btn:hover { opacity: 0.9; }

.companion-suggest {
  margin-top: 0.5rem; padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsla(38,75%,55%,0.1);
  border: 1px solid hsla(38,75%,55%,0.2);
}
.companion-suggest .inner { display: flex; align-items: center; gap: 0.375rem; }
.companion-suggest svg { width: 0.75rem; height: 0.75rem; color: hsl(var(--secondary)); flex-shrink: 0; }
.companion-suggest p {
  font-size: 0.625rem; color: hsl(var(--muted-foreground));
}
.companion-suggest .comp-name { font-weight: 600; color: hsl(var(--foreground)); }
.companion-suggest .comp-discount { color: hsl(var(--secondary)); font-weight: 700; }

/* ============================================
   TRACEABILITY
   ============================================ */
.trace-card {
  max-width: 48rem; margin: 0 auto;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
}
.trace-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.trace-input-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.trace-input-row input { flex: 1; }
.trace-result {
  padding: 1rem; border-radius: 0.75rem;
  background: hsla(45,20%,90%,0.5);
  border: 1px solid hsl(var(--border));
}
.trace-steps { display: flex; align-items: center; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
.trace-step { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; min-width: 80px; }
.trace-step-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
}
.trace-step-icon svg { width: 1rem; height: 1rem; }
.trace-step span { font-size: 0.625rem; font-weight: 500; text-align: center; }
.trace-step small { font-size: 0.5625rem; color: hsl(var(--muted-foreground)); }
.trace-status { font-size: 0.75rem; color: hsl(var(--accent)); font-weight: 500; margin-top: 0.75rem; display: flex; align-items: center; gap: 0.25rem; }
.trace-status svg { width: 0.75rem; height: 0.75rem; }

/* ============================================
   PRODUCT PRICING (ORIGINAL)
   ============================================ */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card { border-radius: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); overflow: hidden; transition: all 0.3s; }
.pricing-card:hover { border-color: hsla(152,45%,22%,0.3); box-shadow: var(--shadow-soft); }
.pricing-card .img-wrap { position: relative; height: 12rem; overflow: hidden; }
.pricing-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pricing-card:hover .img-wrap img { transform: scale(1.05); }
.pricing-card .img-wrap .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--card)), transparent, transparent);
}
.pricing-card .premium-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
  font-size: 0.75rem; font-weight: 700;
}
.pricing-card .card-body { padding: 1.5rem; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.pricing-card .price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-card .price-row .price { font-size: 1.5rem; font-weight: 700; }
.pricing-card .price-row .old-price { font-size: 0.875rem; color: hsl(var(--muted-foreground)); text-decoration: line-through; }
.pricing-card .price-row .unit { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.pricing-card .benefits { margin-bottom: 1.5rem; }
.pricing-card .benefits li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }
.pricing-card .benefits li svg { width: 1rem; height: 1rem; color: hsl(var(--accent)); }

.pricing-card .add-btn {
  width: 100%; padding: 0.625rem;
  border: 1px solid hsl(var(--border)); border-radius: var(--radius);
  font-weight: 500; transition: all 0.3s;
  text-align: center;
}
.pricing-card:hover .add-btn { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }

.subscription-cta {
  margin-top: 4rem; padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsla(152,45%,22%,0.8));
  color: hsl(var(--primary-foreground));
}
.sub-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .sub-grid { grid-template-columns: 1fr 1fr; } }
.sub-grid h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 1024px) { .sub-grid h3 { font-size: 1.875rem; } }
.sub-grid p { opacity: 0.8; margin-bottom: 1.5rem; }
.sub-plans { display: flex; flex-wrap: wrap; gap: 1rem; }
.sub-plan { padding: 0.5rem 1rem; border-radius: 0.5rem; background: rgba(255,255,255,0.1); font-size: 0.875rem; }
.sub-cta-right { display: flex; justify-content: center; }
@media (min-width: 1024px) { .sub-cta-right { justify-content: flex-end; } }

/* ============================================
   MY FARM SECTION
   ============================================ */
.farm-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .farm-grid { grid-template-columns: 1fr 1fr; } }

.farm-card {
  position: relative; padding: 2rem; border-radius: 1.5rem;
  transition: border-color 0.3s;
}
@media (min-width: 1024px) { .farm-card { padding: 2.5rem; } }

.farm-card-a { background: hsl(var(--card)); border: 2px solid hsla(152,45%,22%,0.2); }
.farm-card-a:hover { border-color: hsla(152,45%,22%,0.4); }
.farm-card-b {
  background: linear-gradient(to bottom right, hsla(38,75%,55%,0.2), hsla(38,75%,55%,0.05));
  border: 2px solid hsla(38,75%,55%,0.3);
}
.farm-card-b:hover { border-color: hsla(38,75%,55%,0.5); }

.farm-label {
  position: absolute; top: -1rem; left: 2rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
}
.farm-label-a { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.farm-label-b { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
.farm-popular {
  position: absolute; top: -1rem; right: 2rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  font-size: 0.75rem; font-weight: 600;
}

.farm-card-header { display: flex; align-items: center; gap: 1rem; margin: 1rem 0 1.5rem; }
.farm-card-header .icon-wrap {
  width: 4rem; height: 4rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.farm-card-header .icon-wrap svg { width: 2rem; height: 2rem; }
.farm-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.farm-card-header p { color: hsl(var(--muted-foreground)); }

.farm-features { margin-bottom: 2rem; }
.farm-feature { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.farm-feature svg { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; flex-shrink: 0; }
.farm-feature p { font-weight: 500; }
.farm-feature small { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.farm-price-box {
  padding: 1rem; border-radius: 0.75rem; margin-bottom: 1.5rem;
}
.farm-price-box .label { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.25rem; }
.farm-price-box .price { font-size: 1.875rem; font-weight: 700; }
.farm-price-box .price span { font-size: 1rem; font-weight: 400; color: hsl(var(--muted-foreground)); }
.farm-price-box .includes { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }

.farm-btn { width: 100%; padding: 1rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem; text-align: center; transition: opacity 0.3s; }

.farm-stats { margin-top: 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .farm-stats { grid-template-columns: repeat(3, 1fr); } }
.farm-stat { text-align: center; padding: 1.5rem; }
.farm-stat .val { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */
.tech-section { position: relative; overflow: hidden; }
.tech-bg { position: absolute; inset: 0; background: hsla(152,45%,22%,0.05); }
.tech-gradient { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(to left, hsla(152,45%,22%,0.1), transparent); }

.tech-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: 1fr 1fr; } }

.data-flow { padding: 1.5rem; border-radius: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); }
.data-flow h4 { font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.data-flow h4 svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.flow-step { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.flow-num {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; flex-shrink: 0;
}
.flow-num-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.flow-num-secondary { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
.flow-step p { font-size: 0.875rem; }

.tech-features-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .tech-features-grid { grid-template-columns: repeat(2, 1fr); } }

.tech-card {
  padding: 1.5rem; border-radius: 1rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.tech-card:hover { border-color: hsla(152,45%,22%,0.3); box-shadow: var(--shadow-soft); }
.tech-card .icon-wrap {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: hsla(152,45%,22%,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.3s;
}
.tech-card:hover .icon-wrap { background: hsla(152,45%,22%,0.2); }
.tech-card .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); }
.tech-card h3 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.tech-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.tech-card .spec {
  font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 9999px;
  background: hsl(var(--muted)); color: hsl(var(--muted-foreground));
  display: inline-block;
}

.cloud-budget {
  margin-top: 4rem; padding: 1.5rem; border-radius: 1rem;
  background: hsla(45,20%,90%,0.5); border: 1px solid hsl(var(--border));
}
.cloud-budget-inner { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .cloud-budget-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cloud-budget h4 { font-weight: 600; margin-bottom: 0.25rem; }
.cloud-budget p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.cloud-logos { display: flex; align-items: center; gap: 1rem; }
.cloud-logos img { height: 2rem; opacity: 0.5; }

/* ============================================
   INVESTOR SECTION
   ============================================ */
.investor-section { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.metrics-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card {
  padding: 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.metric-card .val { font-size: 1.875rem; font-weight: 700; color: hsl(var(--secondary)); margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .metric-card .val { font-size: 2.25rem; } }
.metric-card .label { font-weight: 500; margin-bottom: 0.25rem; }
.metric-card .desc { font-size: 0.875rem; opacity: 0.6; }

.invest-points-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .invest-points-grid { grid-template-columns: repeat(2, 1fr); } }
.invest-point {
  display: flex; gap: 1rem; padding: 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.invest-point .icon-wrap {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: hsla(38,75%,55%,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.invest-point .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--secondary)); }
.invest-point h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.invest-point p { font-size: 0.875rem; opacity: 0.7; }

.capex-grid { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .capex-grid { grid-template-columns: 1fr 1fr; } }
.capex-card {
  padding: 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.capex-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.capex-card h3 .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }
.capex-row { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.capex-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
.capex-row .item { opacity: 0.7; }
.capex-row .value { font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.footer-newsletter { border-bottom: 1px solid hsla(45,30%,97%,0.1); }
.newsletter-grid { display: grid; gap: 2rem; align-items: center; padding: 4rem 0; }
@media (min-width: 1024px) { .newsletter-grid { grid-template-columns: 1fr 1fr; } }
.newsletter-grid h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .newsletter-grid h3 { font-size: 1.875rem; } }
.newsletter-grid p { opacity: 0.7; }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-form input {
  flex: 1; padding: 0.625rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: hsl(var(--background)); font-size: 0.875rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-brand p { opacity: 0.6; font-size: 0.875rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.social-link:hover { background: hsl(var(--secondary)); }
.social-link svg { width: 1.25rem; height: 1.25rem; }

.footer-links h4, .footer-visits h4, .footer-contact h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { opacity: 0.6; font-size: 0.875rem; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; }
.footer-visits li { opacity: 0.6; font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-visits .time-label { color: hsl(var(--secondary)); font-weight: 500; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact li svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact li span { opacity: 0.6; font-size: 0.875rem; }

.footer-bottom {
  border-top: 1px solid hsla(45,30%,97%,0.1);
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { opacity: 0.5; font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { opacity: 0.5; font-size: 0.875rem; transition: opacity 0.3s; }
.footer-bottom-links a:hover { opacity: 1; }

/* ============================================
   SIDE PANEL
   ============================================ */
.side-panel {
  position: fixed; left: 0; top: 5rem; bottom: 0; z-index: 40;
  width: 18rem; transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
.side-panel.open { transform: translateX(0); }
.side-panel-inner {
  height: 100%; display: flex; flex-direction: column;
  background: hsla(45,25%,95%,0.8);
  backdrop-filter: blur(24px);
  border-right: 1px solid hsla(45,20%,85%,0.5);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}
.side-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem; border-bottom: 1px solid hsla(45,20%,85%,0.5);
}
.side-panel-header .title { display: flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-weight: 600; }
.side-panel-header .title svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.side-panel-header .close-btn { padding: 0.375rem; border-radius: 0.375rem; transition: background 0.2s; }
.side-panel-header .close-btn:hover { background: hsl(var(--muted)); }
.side-panel-header .close-btn svg { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); }

.side-panel-body { flex: 1; overflow-y: auto; padding: 0.5rem 0; }
.side-section-title { padding: 0.625rem 1rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.side-category-btn {
  width: 100%; display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 1rem; font-size: 0.875rem; transition: background 0.2s; text-align: left;
}
.side-category-btn:hover { background: hsla(45,20%,90%,0.5); }
.side-category-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.side-category-btn .name { flex: 1; }
.side-category-btn .chevron { width: 0.875rem; height: 0.875rem; color: hsl(var(--muted-foreground)); transition: transform 0.2s; }
.side-category-btn .chevron.rotated { transform: rotate(90deg); }

.side-subcategories { margin-left: 1.75rem; border-left: 1px solid hsla(45,20%,85%,0.5); padding-left: 1rem; padding: 0.25rem 0 0.25rem 1rem; }
.side-subcategories a {
  display: block; padding: 0.375rem 0; font-size: 0.75rem;
  color: hsl(var(--muted-foreground)); transition: all 0.2s;
}
.side-subcategories a:hover { color: hsl(var(--foreground)); transform: translateX(0.25rem); }

.side-panel-toggle {
  position: fixed; left: 0; top: 6rem; z-index: 40;
  padding: 0.625rem; border-radius: 0 0.5rem 0.5rem 0;
  background: hsla(45,25%,95%,0.9); backdrop-filter: blur(24px);
  border: 1px solid hsl(var(--border)); border-left: 0;
  box-shadow: var(--shadow-soft); transition: all 0.3s;
}
.side-panel-toggle:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.side-panel-toggle svg { width: 1.25rem; height: 1.25rem; }

/* ============================================
   EXPERT FLOATING BUTTON
   ============================================ */
.expert-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.expert-options { display: flex; flex-direction: column; gap: 0.5rem; }
.expert-option {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  box-shadow: var(--shadow-elevated);
  transition: opacity 0.3s;
}
.expert-option:hover { opacity: 0.9; }
.expert-option-agro { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.expert-option-nutri { background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground)); }
.expert-option .icon-circle {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.expert-option .icon-circle svg { width: 1.25rem; height: 1.25rem; }
.expert-option .text p { font-size: 0.875rem; font-weight: 600; }
.expert-option .text small { font-size: 0.625rem; opacity: 0.8; }

.expert-main-btn {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elevated); transition: all 0.3s;
}
.expert-main-btn svg { width: 1.5rem; height: 1.5rem; }
.expert-main-btn.closed { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.expert-main-btn.opened { background: hsl(var(--foreground)); color: hsl(var(--background)); }

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 1023px) {
  .side-panel { display: none; }
  .side-panel-toggle { display: none; }
  .hero-float-badge { display: none; }
  .hero-price-tag { display: none; }
}
