/* ==========================================================================
   99 MANDI - AGRI-TECH ENTERPRISE DESIGN SYSTEM (THEME TOKENS & UI COMPONENTS)
   ========================================================================== */

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hindi: 'Rozha One', 'Tiro Devanagari Hindi', serif;

  /* Refined Agri-Tech Palette (Not generic bright green) */
  --primary: #1b4332;
  --primary-light: #2d6a4f;
  --primary-dark: #081c15;
  --accent-gold: #d4a373;
  --accent-amber: #e76f51;
  --wheat-gold: #e9c46a;

  --surface-bg: #f8faf9;
  --surface-card: #ffffff;
  --surface-border: #e2e8f0;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 25px rgba(45, 106, 79, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --surface-bg: #0b130e;
  --surface-card: #142019;
  --surface-border: #23362a;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --shadow-glow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Global Reset & Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
}

body {
  background-color: var(--surface-bg);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography Extensions */
.brand-hindi {
  font-family: var(--font-hindi);
}

/* Preloader System */
#global-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--surface-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-brand {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.loader-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid var(--surface-border);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Auth Cards & Layout */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: radial-gradient(circle at top right, rgba(45, 106, 79, 0.08), transparent 400px),
              radial-gradient(circle at bottom left, rgba(233, 196, 106, 0.08), transparent 400px);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--wheat-gold));
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background-color: var(--surface-bg);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.12);
  outline: none;
}

.btn-agri-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.5rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-agri-primary:hover {
  background-color: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.role-switcher-tab {
  display: flex;
  background: var(--surface-bg);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--surface-border);
}

.role-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.role-tab-btn.active {
  background: var(--surface-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Theme Toggle Button */
.theme-switch-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-switch-floating:hover {
  transform: scale(1.08);
}
/* ==========================================================================
   ADMIN LAYOUT & DASHBOARD EXTENSIONS
   ========================================================================== */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background-color: var(--surface-card);
  border-right: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sidebar-brand {
  height: 65px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--surface-border);
}

.sidebar-nav {
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  padding: 1rem 0.75rem 0.4rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.65rem 0.85rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.sidebar-link i {
  font-size: 1.1rem;
}

.sidebar-link:hover {
  background-color: rgba(45, 106, 79, 0.08);
  color: var(--primary);
}

.sidebar-link.active {
  background-color: var(--primary);
  color: #fff;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-bg);
  min-width: 0;
}

.admin-topbar {
  height: 65px;
  background-color: var(--surface-card);
  border-bottom: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.search-input-wrapper {
  position: relative;
  width: 320px;
}

.search-input-wrapper i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrapper input {
  padding-left: 36px;
  border-radius: 20px;
}

.live-status-pill {
  font-size: 0.8rem;
  font-weight: 600;
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 196, 182, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

/* KPI Card Matrix */
.kpi-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.kpi-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.kpi-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

/* Enterprise Table Badges */
.enterprise-table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d1e7dd; color: #0f5132; }
.status-rejected { background: #f8d7da; color: #842029; }
/* ==========================================================================
   FARMER PORTAL SPECIALIZED STYLES
   ========================================================================== */

.farmer-navbar {
  background-color: var(--surface-card);
  border-bottom: 1px solid var(--surface-border);
}

.farmer-hero-card {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.farmer-kpi-box {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.farmer-kpi-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.farmer-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.farmer-kpi-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.farmer-kpi-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}
/* ==========================================================================
   CONSUMER STOREFRONT EXTENSIONS
   ========================================================================== */

.hero-section {
  background: linear-gradient(135deg, #081c15 0%, #1b4332 100%);
  border-bottom: 1px solid var(--surface-border);
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.category-card {
  background: var(--surface-card);
  transition: var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light) !important;
  box-shadow: var(--shadow-sm);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  transition: var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.variant-select-box {
  transition: var(--transition-fast);
  background: var(--surface-bg);
}

.variant-select-box.active {
  border-color: var(--primary) !important;
  background-color: rgba(45, 106, 79, 0.08);
}
/* ==========================================================================
   ENTERPRISE HEAVY STOREFRONT & MODERN UI UPGRADES
   ========================================================================== */

.storefront-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f6f8f7;
}

.brand-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.gradient-text-gold {
  background: linear-gradient(90deg, #e9c46a 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 1. Mandi Ticker */
.mandi-ticker-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}
.ticker-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ticker-items {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  color: #e2e8f0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Glass Navigation */
.storefront-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.brand-symbol {
  width: 44px;
  height: 44px;
  background: #1b4332;
  color: #e9c46a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.brand-subtext {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-login-glass {
  background: rgba(45, 106, 79, 0.08);
  color: #1b4332;
  font-weight: 700;
  border: 1px solid rgba(45, 106, 79, 0.2);
}
.btn-agri-glow {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(27, 67, 50, 0.25);
  border: none;
}

/* 3. Heavy Hero Section */
.heavy-hero-section {
  background: radial-gradient(circle at top right, #1b4332 0%, #081c15 100%);
  min-height: 85vh;
}
.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 196, 106, 0.15) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-meta-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.pulse-indicator {
  width: 8px;
  height: 8px;
  background: #2ec4b6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.2);
}
.hero-lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
}
.btn-agri-hero-primary {
  background: #e9c46a;
  color: #081c15;
  border: none;
}
.btn-agri-hero-primary:hover {
  background: #f4a261;
  color: #000;
  transform: translateY(-2px);
}
.btn-agri-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.glass-feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.glass-feature-box:hover {
  transform: translateX(-5px);
  border-color: #e9c46a;
}
.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 4. Timeline Cards */
.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.step-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.step-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-step {
  border-color: #1b4332 !important;
  background: #f0fdf4 !important;
}

/* 5. Heavy Product Cards */
.heavy-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.heavy-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #2d6a4f !important;
}
.card-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}
.product-visual-stage {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
  padding-top: 3.5rem !important;
}
.grain-icon-halo {
  width: 90px;
  height: 90px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}
.category-pill-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
}
.btn-agri-buy {
  background: #1b4332;
  color: #fff;
  border: none;
  transition: all 0.2s ease;
}
.btn-agri-buy:hover {
  background: #2d6a4f;
  color: #fff;
}

/* 6. Lab Testing & Footer */
.lab-check-icon {
  flex-shrink: 0;
}
.progress-dark {
  background-color: #334155;
  height: 6px;
  border-radius: 10px;
}
.farmer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.bg-white-5 { background: rgba(255, 255, 255, 0.05); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
/* ==========================================================================
   HD VISUALS, BILINGUAL TRANSLATOR & COLORFUL UI UPGRADES
   ========================================================================== */

/* Top Announcement Strip */
.top-announcement-strip {
  background: #081c15;
  color: #fff;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-live-tag {
  background: #b91c1c;
  color: #fff;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.ticker-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  max-width: 580px;
}
.ticker-marquee-text {
  display: inline-flex;
  gap: 25px;
  animation: tickerScroll 20s linear infinite;
}

/* Language Switcher Buttons */
.lang-switch-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lang-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.lang-btn.active {
  color: #e9c46a;
  background: rgba(233, 196, 106, 0.15);
}

/* Navbar */
.modern-glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.brand-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #e9c46a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(27, 67, 50, 0.2);
}
.brand-sub-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.btn-login-pill {
  background: #f1f5f9;
  color: #1e293b;
  font-weight: 700;
  border: 1px solid #e2e8f0;
}
.btn-primary-agri {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  font-weight: 700;
  border: none;
}
.btn-primary-agri:hover {
  background: #081c15;
  color: #fff;
}

/* Colorful Hero Section */
.colorful-hero-section {
  background: radial-gradient(circle at 80% 20%, #2d6a4f 0%, #1b4332 50%, #081c15 100%);
  min-height: 85vh;
}
.hero-backdrop-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(233, 196, 106, 0.2);
  top: -10%;
  right: -5%;
}
.shape-2 {
  width: 450px;
  height: 450px;
  background: rgba(46, 196, 182, 0.15);
  bottom: -10%;
  left: -5%;
}
.hero-trust-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}
.hero-main-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.text-gold-gradient {
  background: linear-gradient(90deg, #e9c46a 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.7;
}
.btn-hero-gold {
  background: linear-gradient(135deg, #e9c46a, #f4a261);
  color: #081c15;
  border: none;
}
.btn-hero-gold:hover {
  background: #e9c46a;
  color: #000;
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.hero-hd-image {
  border: 4px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  height: 480px;
  width: 100%;
}
.floating-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: floatUpDown 4s ease-in-out infinite;
}
.badge-top-right {
  top: 30px;
  right: -20px;
}
.badge-bottom-left {
  bottom: 30px;
  left: -20px;
  animation-delay: 2s;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Calculator Card */
.calculator-card {
  background: #ffffff;
}

/* Product Cards */
.colorful-product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.colorful-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: #2d6a4f !important;
}
.product-img-frame {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}
.product-glow-icon {
  width: 90px;
  height: 90px;
  background: rgba(45, 106, 79, 0.08);
  color: #1b4332;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.btn-buy-glow {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  border: none;
  transition: all 0.2s ease;
}
.btn-buy-glow:hover {
  background: #081c15;
  color: #fff;
}

/* Pipeline Cards */
.pipeline-box {
  background: #ffffff;
  transition: all 0.3s ease;
}
.pipeline-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.pipeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Social & Contact */
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.social-btn:hover {
  background: #e9c46a;
  color: #000;
}
/* ==========================================================================
   GLOBAL FLOATING CONTROLS (LANGUAGE & THEME)
   ========================================================================== */

.floating-global-controls {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-lang-pill {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.global-lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.global-lang-btn.active {
  background: var(--primary);
  color: #fff;
}

.theme-switch-floating {
  position: static !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-switch-floating:hover {
  transform: scale(1.08);
}