﻿/*
Theme Name: Kashmir Gold Harvest Luxury E-Commerce
Theme URI: https://kashmirgoldharvest.com
Author: Kashmir Gold Harvest
Author URI: https://kashmirgoldharvest.com
Description: High-performance, luxury WordPress and WooCommerce theme tailored for authentic Kashmiri Mongra Saffron, pure Himalayan Shilajit, Mamra Almonds, Snow Walnuts, and royal organic harvest.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kashmirgoldharvest
Tags: e-commerce, custom-colors, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/**
 * Kashmir Gold Harvest - Luxury E-Commerce Stylesheet
 * Brand Aesthetic: Deep Himalayan Forest (#081C15), Imperial Saffron Gold (#D4AF37), Crimson Accent (#C83228)
 * 100% Responsive & High-Performance
 */

:root {
  /* Rich Authentic Kashmiri Royal Palette */
  --primary-deep: #0D2818;          /* Deep Kashmiri Pine Evergreen */
  --primary-forest: #04471C;        /* Rich Valley Fir */
  --primary-mid: #058C42;           /* Vivid Meadow Grass */
  --accent-gold: #D4AF37;           /* Imperial Saffron Gold */
  --accent-gold-light: #FDE68A;     /* Warm Gold Tint */
  --accent-gold-dark: #B45309;      /* Rich Amber Saffron */
  --accent-saffron: #9F1239;        /* Royal Mongra Zafran Crimson */
  --accent-saffron-light: #E11D48;  /* Vibrant Scarlet Blossom */
  --chinar-rust: #C2410C;           /* Autumn Chinar Leaf */
  --bg-cream: #FCFAF5;             /* Warm Silk Ivory */
  --bg-parchment: #F8F4EB;         /* Antique Kashmiri Parchment */
  --bg-card: #FFFFFF;
  --text-main: #0F172A;            /* Sharp Crisp Charcoal */
  --text-muted: #334155;           /* Deep Slate - High Contrast */
  --text-light: #64748B;
  --border-light: #E2D9C8;         /* Warm Gold-Tinted Border */
  --border-gold: #D4AF37;
  --shadow-sm: 0 2px 8px rgba(13, 40, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 40, 24, 0.12);
  --shadow-lg: 0 16px 40px rgba(13, 40, 24, 0.18);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #0D2818 0%, #04471C 50%, #0D2818 100%);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid var(--accent-gold);
  position: relative;
  z-index: 101;
}

.top-announcement strong {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.badge-sparkle {
  color: var(--accent-gold);
  display: inline-flex;
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px #D4AF37); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 6px #FDE68A); }
}

.btn-primary-luxury {
  background: linear-gradient(135deg, #0D2818 0%, #04471C 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 8px;
  border: 1.5px solid var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(13, 40, 24, 0.25);
  cursor: pointer;
}

.btn-primary-luxury span {
  color: #FFFFFF;
}

.btn-primary-luxury i {
  color: var(--accent-gold);
}

.btn-primary-luxury:hover {
  background: linear-gradient(135deg, #04471C 0%, #058C42 100%);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-outline-luxury {
  background: #FFFFFF;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn-outline-luxury:hover {
  background: #FEF3C7;
  border-color: var(--accent-gold-dark);
  color: var(--accent-gold-dark);
  transform: translateY(-2px);
}-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.announcement-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.announcement-msg .badge-sparkle {
  color: var(--accent-gold);
}

.top-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tool-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
  font-size: 0.8rem;
  font-weight: 500;
}

.tool-link:hover {
  color: var(--accent-gold);
}

/* Currency Select */
.currency-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-select {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
  font-weight: 600;
}

.currency-select option {
  background: var(--primary-deep);
  color: #FFFFFF;
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 28, 21, 0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-forest) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-deep);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-gold-dark);
  font-weight: 700;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-deep);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-badge-pill {
  background: var(--accent-saffron);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  letter-spacing: 0.5px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-lab-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-forest);
  border: 1px solid var(--accent-gold);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lab-verify:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.cart-trigger-btn {
  position: relative;
  background: var(--primary-deep);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(8, 28, 21, 0.2);
  transition: var(--transition);
}

.cart-trigger-btn:hover {
  background: var(--primary-forest);
  transform: scale(1.05);
}

.cart-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-saffron);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-cream);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(8, 28, 21, 0.78), rgba(8, 28, 21, 0.88)),
              url('https://images.unsplash.com/photo-1599818991751-e1cb07153b8b?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #FFFFFF;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight-gold {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.12rem;
  color: #E2E8F0;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-luxury {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #C5A028 100%);
  color: var(--primary-deep);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
}

.btn-primary-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
}

.btn-outline-luxury {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-luxury:hover {
  background: #FFFFFF;
  color: var(--primary-deep);
  border-color: #FFFFFF;
}

/* Hero Trust Card */
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.hero-badge-gi {
  background: var(--accent-saffron);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-feat-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.hero-feat-desc {
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.4;
}

/* Trust Bar */
.trust-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-deep);
}

.trust-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Category Filter Navigation */
.category-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: 900px;
}

.cat-filter-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cat-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.cat-filter-btn.active {
  background: var(--primary-deep);
  color: #FFFFFF;
  border-color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(8, 28, 21, 0.2);
}

.cat-filter-btn.active .cat-count {
  background: var(--accent-gold);
  color: var(--primary-deep);
}

.cat-count {
  background: #F1F5F9;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  transition: var(--transition);
}

/* Section Common */
.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold-dark);
  background: rgba(212, 175, 55, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.product-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #F1F5F9;
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-thumb-img {
  transform: scale(1.06);
}

.product-badge-group {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-tag-pure {
  background: var(--primary-deep);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-tag-gi {
  background: var(--accent-saffron);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rating-stars {
  color: #F59E0B;
  font-size: 0.8rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-snippet {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Variant Selector */
.variant-selector-wrap {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.variant-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.variant-pills-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.variant-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.variant-btn:hover {
  border-color: var(--accent-gold);
}

.variant-btn.active {
  background: var(--primary-deep);
  color: #FFFFFF;
  border-color: var(--primary-deep);
}

/* Price & Action Row */
.product-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1;
}

.original-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-top: 2px;
}

.product-action-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-add-cart {
  background: var(--primary-deep);
  color: #FFFFFF;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-forest);
  transform: translateY(-1px);
}

.btn-wa-quick {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-wa-quick:hover {
  background: #1EBE5B;
  transform: scale(1.05);
}

/* Lab Verifier Section */
.lab-verifier-section {
  background: var(--primary-deep);
  color: #FFFFFF;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.lab-verifier-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.lab-info-col h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.lab-info-col p {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.lab-cert-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cert-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lab-box-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-gold);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 34px;
}

.verifier-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.verifier-input {
  flex: 1;
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
}

.btn-verify-action {
  background: var(--accent-gold);
  color: var(--primary-deep);
  font-weight: 800;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-verify-action:hover {
  background: #C5A028;
}

.sample-chips-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 20px;
}

.sample-chip-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: none;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.76rem;
  cursor: pointer;
}

.sample-chip-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
}

/* Certificate Result Container */
.cert-result-wrap {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: 10px;
  padding: 20px;
  display: none;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cert-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.cert-status-pass {
  background: #DCFCE7;
  color: #16A34A;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cert-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 0.84rem;
}

.cert-data-item {
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: 6px;
}

.cert-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

.cert-val {
  font-weight: 800;
  color: var(--primary-deep);
}

/* Interactive Wellness Quiz Section */
.quiz-section {
  background: var(--bg-sand);
  padding: 90px 0;
}

.quiz-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.quiz-step-indicator {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.quiz-step-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 24px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.quiz-option-btn {
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.quiz-option-btn:hover,
.quiz-option-btn.selected {
  border-color: var(--accent-gold);
  background: #FFFDF7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quiz-opt-icon {
  font-size: 1.6rem;
}

.quiz-opt-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-deep);
}

.quiz-opt-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quiz-result-box {
  background: #FFFDF7;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 24px;
  display: none;
}

/* Reviews Carousel */
.reviews-section {
  background: #FFFFFF;
  padding: 90px 0;
}

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

.review-card {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--primary-deep);
}

.reviewer-loc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.verified-badge {
  color: #16A34A;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.review-product-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-top: auto;
}

/* Slide-Out Cart Drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 28, 21, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-deep);
  color: #FFFFFF;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Free Shipping Meter */
.shipping-meter-wrap {
  background: #F8FAFC;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-light);
}

.shipping-meter-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.shipping-progress-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}

.shipping-progress-bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #10B981 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Cart Items Container */
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  background: #F1F5F9;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-val {
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-item-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-deep);
}

.cart-remove-btn {
  color: #EF4444;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: #F8FAFC;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.subtotal-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.subtotal-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.cart-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-checkout-express {
  background: var(--primary-deep);
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-checkout-express:hover {
  background: var(--primary-forest);
}

.btn-wa-checkout {
  background: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-wa-checkout:hover {
  background: #1EBE5B;
}

/* Site Footer */
.site-footer {
  background: var(--primary-deep);
  color: #CBD5E1;
  padding: 80px 0 30px;
  border-top: 2px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Quick Action */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9990;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .single-product-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .quiz-options-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    max-width: 100%;
  }
  .sticky-mobile-buy-bar {
    display: flex !important;
  }
  .single-product-actions {
    flex-direction: column !important;
  }
}

/* ===================================================
   SINGLE PRODUCT PAGE STYLES
   =================================================== */
.breadcrumb-nav {
  padding: 20px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--text-muted);
}

.breadcrumb-nav a:hover {
  color: var(--accent-gold-dark);
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #CBD5E1;
}

.breadcrumb-current {
  color: var(--primary-deep);
  font-weight: 700;
}

/* Single Product Section */
.single-product-section {
  padding-bottom: 80px;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.product-gallery-sticky {
  position: sticky;
  top: 100px;
}

.gallery-main-view {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main-view:hover .gallery-main-img {
  transform: scale(1.04);
}

.gallery-thumbs-row {
  display: flex;
  gap: 12px;
}

.gallery-thumb-btn {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid var(--border-light);
  background: #FFFFFF;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.gallery-thumb-btn:hover,
.gallery-thumb-btn.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.single-product-info {
  display: flex;
  flex-direction: column;
}

.single-prod-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold-dark);
  margin-bottom: 6px;
}

.single-prod-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-deep);
  line-height: 1.2;
  margin-bottom: 12px;
}

.single-prod-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.86rem;
}

.stock-pill {
  background: #DCFCE7;
  color: #16A34A;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.single-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.single-current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.single-original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.single-discount-pill {
  background: var(--accent-saffron);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.single-prod-snippet {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Weight Selector */
.single-variant-section {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.single-variant-heading {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.single-variant-heading span strong {
  color: var(--accent-gold-dark);
}

.single-variant-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-variant-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.single-variant-btn:hover {
  border-color: var(--accent-gold);
}

.single-variant-btn.active {
  background: var(--primary-deep);
  color: #FFFFFF;
  border-color: var(--primary-deep);
  box-shadow: 0 4px 12px rgba(8, 28, 21, 0.15);
}

/* Single Product Actions */
.single-product-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-single-add-cart {
  flex: 1;
  background: var(--primary-deep);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(8, 28, 21, 0.2);
  transition: var(--transition);
}

.btn-single-add-cart:hover {
  background: var(--primary-forest);
  transform: translateY(-2px);
}

.btn-single-wa-order {
  flex: 1;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 16px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-single-wa-order:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
}

/* Product Perks Grid */
.product-perks-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.perk-item i {
  color: var(--accent-gold-dark);
  font-size: 1rem;
}

/* Tabs System */
.product-tabs-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.product-tabs-header {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 36px;
  overflow-x: auto;
}

.product-tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.product-tab-btn:hover {
  color: var(--primary-deep);
}

.product-tab-btn.active {
  color: var(--primary-deep);
}

.product-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
}

.product-tab-pane {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.3s ease;
}

.product-tab-pane.active {
  display: block;
}

/* Lab Certificate Table */
.lab-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 20px 0;
}

.lab-table th, .lab-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.lab-table th {
  background: #F8FAFC;
  font-weight: 800;
  color: var(--primary-deep);
}

.lab-table td.pass-col {
  color: #16A34A;
  font-weight: 800;
}

/* Usage Steps */
.usage-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.usage-card {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.usage-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary-deep);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 12px;
}

/* Sticky Mobile Buy Bar */
.sticky-mobile-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9980;
}

.sticky-bar-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.sticky-bar-btn {
  background: var(--primary-deep);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}


/* ==========================================================================
   INDIAMART-STYLE B2B WHOLESALE & EXPORT MANDI MARKETPLACE ENGINE
   ========================================================================== */

/* B2B Top Utility Bar */
.b2b-top-bar {
  background: #0A1E12;
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
}

.b2b-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.b2b-credentials-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.b2b-cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #FDE68A;
  font-weight: 700;
}

.b2b-hotline-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.b2b-hotline-link {
  color: #FFFFFF;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.b2b-hotline-link:hover {
  color: var(--accent-gold);
}

/* IndiaMART Search & Trade Header */
.b2b-main-header {
  background: #FFFFFF;
  border-bottom: 2px solid #E2D9C8;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.b2b-header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* IndiaMART-Style Search Bar */
.b2b-search-box {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid var(--primary-deep);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.b2b-location-select {
  background: #F8FAFC;
  border: none;
  border-right: 1px solid #CBD5E1;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

.b2b-search-input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
}

.b2b-search-btn {
  background: var(--primary-deep);
  color: #FFFFFF;
  border: none;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.b2b-search-btn:hover {
  background: var(--primary-forest);
}

/* Post Buy Requirement Button (IndiaMART Golden Yellow) */
.btn-post-requirement {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A !important;
  border: 1px solid #B45309;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-post-requirement:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

/* Category Quick Navigation Strip */
.b2b-cat-strip {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 8px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.b2b-cat-list {
  display: flex;
  gap: 16px;
  list-style: none;
}

.b2b-cat-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.b2b-cat-link:hover, .b2b-cat-link.active {
  color: var(--primary-deep);
  background: #FEF3C7;
  font-weight: 700;
}

/* IndiaMART Hero Section: RFQ Card + Live Mandi Board */
.b2b-hero {
  background: linear-gradient(135deg, #0D2818 0%, #064E3B 100%);
  color: #FFFFFF;
  padding: 36px 0 48px;
  position: relative;
}

.b2b-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

/* RFQ Multi-Step Form Card */
.rfq-hero-card {
  background: #FFFFFF;
  color: var(--text-main);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border: 2px solid var(--accent-gold);
}

.rfq-header {
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rfq-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.rfq-badge {
  background: #FEF3C7;
  color: #B45309;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #FDE68A;
}

.rfq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.rfq-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rfq-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

.rfq-input, .rfq-select {
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.rfq-input:focus, .rfq-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.btn-rfq-submit {
  width: 100%;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A;
  border: none;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-rfq-submit:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF;
}

/* Right Column: Live Mandi Board */
.mandi-board-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mandi-ticker-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FDE68A;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mandi-rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.mandi-rates-table th {
  text-align: left;
  padding: 8px;
  color: #94A3B8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.mandi-rates-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rate-up {
  color: #4ADE80;
  font-weight: 700;
}

/* B2B Commodity Product Card */
.b2b-product-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.b2b-product-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.b2b-card-media {
  position: relative;
  height: 220px;
  background: #F8FAFC;
  overflow: hidden;
}

.b2b-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.b2b-product-card:hover .b2b-card-img {
  transform: scale(1.05);
}

.b2b-moq-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0D2818;
  color: #FDE68A;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--accent-gold);
  z-index: 2;
}

.b2b-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.b2b-commodity-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 8px;
}

.b2b-price-headline {
  font-size: 1.35rem;
  font-weight: 800;
  color: #9F1239;
  margin-bottom: 4px;
}

.b2b-unit-subtext {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 600;
}

.b2b-mini-specs {
  background: #F8FAFC;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 12px 0 16px;
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid #E2E8F0;
}

.b2b-spec-item strong {
  color: #0F172A;
}

.b2b-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
}

.btn-get-best-price {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-get-best-price:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF;
}

.btn-wa-b2b {
  background: #16A34A;
  color: #FFFFFF;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-wa-b2b:hover {
  background: #15803D;
}

/* Technical Specification Table on Product Detail */
.b2b-spec-matrix {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.b2b-spec-matrix th, .b2b-spec-matrix td {
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
}

.b2b-spec-matrix tr:nth-child(even) {
  background: #F8FAFC;
}

.b2b-spec-matrix td:first-child {
  font-weight: 700;
  color: #334155;
  width: 35%;
  border-right: 1px solid #F1F5F9;
}

/* Tiered Volume Slabs Table */
.b2b-volume-slabs {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
}

.b2b-volume-slabs th {
  background: #0D2818;
  color: #FFFFFF;
  padding: 10px 14px;
  font-size: 0.85rem;
  text-align: left;
}

.b2b-volume-slabs td {
  padding: 12px 14px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.9rem;
}

.b2b-slab-price {
  color: #9F1239;
  font-weight: 800;
}

/* Exporter Trust Profile Card */
.b2b-trust-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.trust-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.trust-badge-pill {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Universal RFQ Popup Modal */
.rfq-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rfq-modal-overlay.active {
  display: flex;
}

.rfq-modal-box {
  background: #FFFFFF;
  width: 100%;
  max-width: 620px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--accent-gold);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.rfq-modal-header {
  background: linear-gradient(135deg, #0D2818 0%, #064E3B 100%);
  color: #FFFFFF;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rfq-modal-body {
  padding: 24px;
}

.rfq-modal-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .b2b-header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .b2b-hero-grid {
    grid-template-columns: 1fr;
  }
}