/* ==========================================================================
   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;
  }
}
