/* ==========================================================================
   INDIAN KITCHEN SPICES - REFINED PREMIUM DESIGN SYSTEM & STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Warm Indian Spice Theme */
  --gold-primary: #D4AF37;
  --gold-light: #F7D070;
  --gold-glow: rgba(212, 175, 55, 0.4);
  
  --saffron-orange: #E67E22;
  --saffron-bright: #F39C12;
  
  --chili-red: #C0392B;
  --chili-crimson: #E74C3C;
  
  --cardamom-green: #27AE60;
  --turmeric-yellow: #F1C40F;
  
  /* Dark Mode Surfaces */
  --bg-dark: #0A0D12;
  --bg-surface: #121720;
  --bg-card: rgba(22, 28, 38, 0.75);
  --bg-glass: rgba(14, 18, 25, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.035);
  
  /* Borders & Highlights */
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-highlight: rgba(243, 156, 18, 0.6);
  
  /* Typography Colors */
  --text-main: #F8FAFC;
  --text-muted: #A0AEC0;
  --text-gold: #F7D070;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 12px 35px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.25);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 12% 15%, rgba(212, 175, 55, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 55%, rgba(230, 126, 34, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 88%, rgba(192, 57, 43, 0.05) 0%, transparent 50%);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.font-serif {
  font-family: var(--font-serif);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--saffron-bright) 50%, #FFE066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-chili {
  background: linear-gradient(135deg, #FF6B6B 0%, var(--chili-crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(10, 13, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.site-header.scrolled {
  background: rgba(10, 13, 18, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
  z-index: 1002;
}

.brand-logo .logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-primary), var(--saffron-orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-fast);
}

.brand-logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.05);
}

.brand-logo .brand-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1002;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--chili-crimson);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1003;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--saffron-orange) 100%);
  color: #0B0E11;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0.85rem 1.85rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, var(--gold-light) 0%, #F39C12 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 65% 45%, rgba(18, 23, 30, 0.35) 0%, var(--bg-dark) 85%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Media Showcase */
.hero-media {
  position: relative;
}

.hero-card-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  border: 1px solid var(--border-gold);
}

.hero-card-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-card-frame:hover img {
  transform: scale(1.05);
}

.floating-glass-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 1.35rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.badge-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(39, 174, 96, 0.2);
  border: 1px solid var(--cardamom-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cardamom-green);
  font-size: 1.6rem;
}

.badge-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
}

.badge-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust Features Bar */
.trust-bar {
  padding: 3.5rem 0;
  background: rgba(14, 18, 25, 0.5);
  border-y: 1px solid var(--border-glass);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  padding: 1.85rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  font-size: 2.2rem;
  background: rgba(212, 175, 55, 0.12);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.75rem auto;
}

.section-tag {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/* Products Catalog Section */
.products-section {
  padding: 6.5rem 0;
}

.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0A0D12;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.product-image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #0D1117;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
}

.heat-meter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--border-glass);
}

.product-details {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-origin {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-glass);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-main);
}

.product-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-add-cart {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.55rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--gold-primary);
  color: #0A0D12;
  transform: scale(1.05);
}

/* Interactive Spice Customizer Studio */
.customizer-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 23, 30, 0.85) 50%, var(--bg-dark) 100%);
  position: relative;
}

.customizer-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.customizer-controls h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.customizer-controls p {
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
}

.slider-group {
  margin-bottom: 1.65rem;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.slider-header label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-value {
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-heading);
}

.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--gold-primary);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 0 12px var(--gold-glow);
}

.customizer-preview {
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blend-visualizer {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.blend-bowl {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--border-gold);
  background: conic-gradient(
    var(--chili-crimson) 0% 30%,
    var(--turmeric-yellow) 30% 55%,
    var(--saffron-orange) 55% 80%,
    var(--cardamom-green) 80% 100%
  );
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.85), var(--shadow-glow);
  transition: transform 0.5s ease;
}

.blend-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.1rem;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.metric-item .metric-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.metric-item .metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Recipes Section */
.recipes-section {
  padding: 6.5rem 0;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
}

.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.recipe-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.7);
}

.recipe-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.recipe-time {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.recipe-body {
  padding: 1.85rem;
}

.recipe-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.recipe-spices-used {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.1rem 0;
}

.spice-chip {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 14px;
}

/* Wholesale Inquiry Section */
.wholesale-section {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, rgba(18, 23, 30, 0.95) 0%, rgba(10, 13, 18, 0.98) 100%);
  border-y: 1px solid var(--border-glass);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wholesale-info h2 {
  font-size: 3rem;
  margin-bottom: 1.35rem;
}

.wholesale-info p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.inquiry-form {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2.75rem;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  background: rgba(10, 13, 18, 0.75);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 0.9rem 1.15rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Shopping Cart Slide-over Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-glass);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.85);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.65rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.4rem;
}

.cart-items-list {
  padding: 1.65rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.98rem;
}

.cart-item-price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.92rem;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.45rem;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.cart-footer {
  padding: 1.65rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(10, 13, 18, 0.95);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
}

.btn-checkout {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
}

/* Footer */
.site-footer {
  background: #06080B;
  padding-top: 5.5rem;
  padding-bottom: 2.75rem;
  border-top: 1px solid var(--border-glass);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.desktop-only {
  display: inline-flex;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid,
  .customizer-box,
  .wholesale-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }

  .desktop-only {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: rgba(10, 13, 18, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s ease;
    z-index: 1001;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.35rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .customizer-box {
    padding: 2rem;
  }
}

/* ==========================================================================
   ADDITIONAL STYLES FOR ABOUT US, FOUNDERS, AWARDS, CONTACT & INQUIRY
   ========================================================================== */

/* Page Hero Banner (for about, founders, contact pages) */
.page-banner {
  padding: 10rem 0 5rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--border-glass);
}

.page-banner .section-title {
  font-size: 3.4rem;
  margin-top: 0.5rem;
}

.page-banner .section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* Homepage About Preview Section */
.about-preview-section {
  padding: 6.5rem 0;
  position: relative;
  background: rgba(18, 23, 32, 0.45);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.about-media-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-media-box:hover img {
  transform: scale(1.05);
}

.about-badge-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.about-badge-floating .exp-year {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge-floating .exp-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.about-content-block .lead-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-content-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-glass);
  padding: 1.1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition-fast);
}

.pillar-item:hover {
  border-color: var(--border-gold);
  background: rgba(212, 175, 55, 0.08);
}

.pillar-icon {
  font-size: 1.6rem;
}

.pillar-text h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.pillar-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Product Card Non-Ecommerce Upgrades */
.product-pack-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px dashed var(--border-gold);
  margin-bottom: 0.5rem;
}

.btn-inquire-product {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--saffron-orange) 100%);
  color: #0A0D12;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.btn-inquire-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.1);
}

/* Founders Section & Page */
.founder-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-card);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.founder-name {
  font-size: 2.8rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.founder-title-sub {
  font-size: 1.05rem;
  color: var(--saffron-bright);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-quote-box {
  background: rgba(212, 175, 55, 0.06);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem 1.8rem;
  border-radius: 0 16px 16px 0;
  margin-top: 2rem;
}

.founder-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.founder-quote-box span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Timeline Milestones */
.milestones-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 2.2rem;
  border-radius: 20px;
}

.milestones-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.85rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.85rem;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A0D12;
  background: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.timeline-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Awards 3x2 Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.award-card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.award-card-dark:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.award-icon-large {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.award-year-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.award-card-dark h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.award-org-name {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.award-card-dark p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Spice Map Showcase Container */
.map-showcase-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.map-showcase-container img {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Contact Page Grid & Form */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  padding: 5rem 0;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

.contact-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.85rem;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-fast);
}

.contact-channel-card:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
}

.channel-icon {
  font-size: 2rem;
  background: rgba(212, 175, 55, 0.12);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.channel-details p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.contact-form-box h3 {
  font-size: 1.85rem;
  margin-bottom: 1.75rem;
}

/* Modal Popup for Inquiries */
.inquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 8, 11, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.inquiry-modal-card {
  background: #121720;
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  padding: 2.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--chili-crimson);
  border-color: var(--chili-crimson);
}

/* Media Queries for New Pages */
@media (max-width: 992px) {
  .about-preview-grid,
  .founder-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-pillars {
    grid-template-columns: 1fr;
  }
  
  .page-banner .section-title {
    font-size: 2.6rem;
  }
  
  .founder-profile-card {
    padding: 2.2rem;
  }
  
  .contact-form-box {
    padding: 2rem;
  }
}

/* ==========================================================================
   PREMIUM ENTERPRISE ABOUT & LEADERSHIP SHOWCASE STYLES
   ========================================================================== */

/* Certification Strip */
.cert-badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  margin: 2.5rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.cert-pill {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.cert-pill:hover {
  background: var(--gold-primary);
  color: #0A0D12;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Enhanced Leadership Grid (3 Columns) */
.leadership-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.6) 0%, rgba(18, 23, 32, 0.7) 100%);
  position: relative;
  border-top: 1px solid var(--border-glass);
}

.leadership-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.leader-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.leader-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--saffron-orange));
  opacity: 0;
  transition: var(--transition-fast);
}

.leader-card-premium:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.leader-card-premium:hover::before {
  opacity: 1;
}

.leader-card-featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(26, 34, 48, 0.85) 0%, rgba(18, 23, 32, 0.95) 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.leader-avatar-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.leader-avatar-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(230, 126, 34, 0.2) 100%);
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.leader-meta h3 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.leader-role-tag {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leader-bio {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-glass);
}

.leader-skill-tag {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

/* Quality Policy Box */
.quality-pledge-card {
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, rgba(14, 18, 25, 0.95) 70%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-card);
}

.quality-pledge-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
}

.quality-pledge-title h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.quality-pledge-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.quality-pledge-text {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.75;
}

.quality-pledge-text p {
  margin-bottom: 1rem;
}

.quality-pledge-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .leadership-grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quality-pledge-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   B2B PRODUCT CATALOG & PACKING SPECIFICATIONS STYLES
   ========================================================================== */

.catalog-search-section {
  margin-bottom: 2.5rem;
}

.catalog-search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.catalog-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold-light);
  pointer-events: none;
}

.catalog-search-input {
  width: 100%;
  padding: 1.1rem 1.25rem 1.1rem 3.4rem;
  background: rgba(18, 24, 34, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 40px;
  color: var(--text-main);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 25px var(--gold-glow);
  background: rgba(22, 30, 42, 0.95);
}

.catalog-search-input::placeholder {
  color: #718096;
}

.catalog-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalog-count-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.88rem;
}

/* Category Filter Pills */
.category-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.category-pill-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.category-pill-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #0A0D12;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.category-pill-btn .pill-count {
  font-size: 0.75rem;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
}

.category-pill-btn.active .pill-count {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* B2B Product Card Specifications */
.product-card .brand-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(8px);
  color: var(--saffron-bright);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(243, 156, 18, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pack-spec-box {
  background: rgba(10, 13, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.pack-spec-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pack-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pack-spec-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border-left: 2px solid var(--gold-primary);
  font-weight: 500;
}

.pack-spec-item .pack-icon {
  font-size: 0.85rem;
  opacity: 0.85;
}

.btn-inquire-product {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: auto;
}

.btn-inquire-product:hover {
  background: var(--gold-primary);
  color: #0A0D12;
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

.no-products-msg {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.no-products-msg h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
