/* ==========================================================================
   Evin Essentials - World-Class Dynamic Theme Design System
   ========================================================================== */

:root {
  --font-ui: 'Work Sans', sans-serif;
  --font-display: 'Libre Baskerville', Georgia, serif;
}

/* Theme Variables Definition */
:root[data-theme="light"] {
  --color-bg: #FFF9F1;
  --color-bg-alt: #ffffff;
  --color-primary: #0B2C6B;
  --color-accent-blue: #137AF3;
  --color-accent: #08B000;
  --color-accent-light: #e8f7e6;
  --color-text: #2A2A2A;
  --color-text-light: #555555;
  --color-text-secondary: #4a5568;
  --color-panel: #ffffff;
  --color-border: rgba(11, 44, 107, 0.1);
  --color-card-shadow: rgba(11, 44, 107, 0.06);
  --color-status-success: #08B000;
  --color-status-warning: #d97706;
  --color-status-danger: #dc2626;
  --color-whatsapp: #25D366;
}

:root[data-theme="dark"] {
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-primary: #137AF3;
  --color-accent-blue: #137AF3;
  --color-accent: #08B000;
  --color-accent-light: #053d00;
  --color-text: #FFFFFF;
  --color-text-light: #cbd5e1;
  --color-text-secondary: #94a3b8;
  --color-panel: #161822;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-card-shadow: rgba(0, 0, 0, 0.5);
  --color-status-success: #08B000;
  --color-status-warning: #fbbf24;
  --color-status-danger: #f87171;
  --color-whatsapp: #25D366;
}

/* Base Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
.hidden { display: none !important; }

html { overflow-x: hidden; }

body {
  font-family: var(--font-ui);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.25;
  transition: color 0.3s ease;
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 {
  color: #ffffff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================
   Header Navigation
   ========================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.4s, border-color 0.4s;
}

[data-theme="dark"] .main-header {
  background: rgba(17, 26, 46, 0.85);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}
[data-theme="dark"] .logo a { color: #ffffff; }

.logo-accent {
  color: var(--color-accent);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.desktop-nav a {
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.3s;
  font-size: 0.95rem;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--color-primary);
}
[data-theme="dark"] .desktop-nav a:hover, [data-theme="dark"] .desktop-nav a.active {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.theme-toggle-btn:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.cart-btn {
  color: var(--color-text);
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
[data-theme="light"] .cart-badge {
  color: #ffffff;
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 200;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: var(--color-panel);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay a {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--color-accent); }

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a427d 100%);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(15, 44, 89, 0.15);
}

[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #22c55e 100%);
  color: #090f1d;
  box-shadow: 0 4px 10px rgba(74, 222, 128, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 44, 89, 0.25);
  opacity: 0.95;
}

.btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  font-size: 0.95rem;
}
[data-theme="dark"] .btn-outline {
  border-color: var(--color-text-light);
  color: var(--color-text);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}
[data-theme="dark"] .btn-outline:hover {
  background-color: var(--color-accent);
  color: #090f1d;
  border-color: var(--color-accent);
}

.full-width { width: 100%; }

/* ==========================================
   OFFICIAL EVIN HOMEPAGE DESIGN SYSTEM
   ========================================== */

/* 1. MOBILE-FIRST SPLIT HERO SECTION */
.hero-split-section {
  position: relative;
  background-color: var(--color-bg);
  padding: 3rem 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-split-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-split-section {
    padding: 4.5rem 0 3.5rem;
  }
  .hero-split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.brand-badge-kicker {
  color: #137AF3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-main-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
}

[data-theme="dark"] .hero-main-title {
  color: #FFFFFF;
}

.highlight-green {
  color: #08B000;
}

.hero-tagline {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0B2C6B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  min-height: 48px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(11, 44, 107, 0.25);
  text-decoration: none;
  text-align: center;
}

.btn-hero-primary:hover {
  background-color: #137AF3;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19, 122, 243, 0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0B2C6B;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  min-height: 48px;
  border: 2px solid #0B2C6B;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

[data-theme="dark"] .btn-hero-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero-secondary:hover {
  background-color: rgba(11, 44, 107, 0.08);
  transform: translateY(-2px);
}

.hero-micro-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.micro-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.icon-green {
  color: #08B000;
  font-size: 20px;
}

/* HERO RIGHT IMAGE */
.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.hero-pack-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* 2. THIN PREMIUM TRUST STRIP (5 ITEMS) */
.trust-strip-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

[data-theme="dark"] .trust-strip-bar {
  background-color: #161822;
}

.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

[data-theme="dark"] .strip-item {
  color: #FFFFFF;
}

.strip-icon {
  color: #08B000;
  font-size: 20px;
}

/* SECTION HEADING TYPOGRAPHY */
.section-heading {
  margin-bottom: 2rem;
}

.section-heading.text-center {
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

[data-theme="dark"] .section-heading h2 {
  color: #FFFFFF;
}

.section-heading p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 620px;
}

.section-heading.text-center p {
  margin: 0 auto;
}

/* 3. CHOOSE YOUR JOURNEY (CLICKABLE CARDS) */
.journey-section {
  padding: 3.5rem 0;
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .journey-section {
  background-color: #1a1d2a;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.journey-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

[data-theme="dark"] .journey-card {
  background-color: #161822;
}

.journey-card:hover, .journey-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 44, 107, 0.12);
  border-color: #137AF3;
  outline: 3px solid rgba(19, 122, 243, 0.4);
}

.journey-home {
  border-left: 5px solid #08B000;
}

.journey-business {
  border-left: 5px solid #137AF3;
}

.journey-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.journey-mat-icon {
  font-size: 2.2rem;
  color: #137AF3;
}

.journey-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #137AF3;
  text-transform: uppercase;
}

.journey-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

[data-theme="dark"] .journey-card h3 {
  color: #FFFFFF;
}

.journey-card p {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.journey-link {
  font-weight: 700;
  font-size: 1rem;
  color: #0B2C6B;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

[data-theme="dark"] .journey-link {
  color: #137AF3;
}

.journey-card:hover .journey-link {
  color: #137AF3;
}

/* 4. FEATURED CATEGORIES */
.categories-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
}

[data-theme="dark"] .categories-section {
  background-color: #0c0d12;
}

.categories-large-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .categories-large-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-large-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.cat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

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

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

.cat-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.cat-card-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cat-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

/* 5. BEST SELLERS */
.bestsellers-section {
  padding: 3.5rem 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.bestsellers-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .bestsellers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bestsellers-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.bestseller-item-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .bestseller-item-card {
  background-color: #161822;
}

.bestseller-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 44, 107, 0.12);
}

.bestseller-img-box {
  height: 190px;
  overflow: hidden;
  background-color: #f8fafc;
}

.bestseller-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestseller-item-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bestseller-item-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

[data-theme="dark"] .bestseller-item-body h3 {
  color: #FFFFFF;
}

.gujarati-subtitle {
  font-size: 0.82rem;
  color: #08B000;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.price-pack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 1rem;
}

.pack-size-badge {
  background: var(--color-bg);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.item-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0B2C6B;
}

[data-theme="dark"] .item-price {
  color: #137AF3;
}

.btn-add-cart {
  width: 100%;
  min-height: 44px;
  background-color: #0B2C6B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.2s;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-add-cart:hover {
  background-color: #137AF3;
}

/* 6. OUR BRANDS ARCHITECTURE SECTION */
.brands-architecture-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .brands-architecture-section {
  background-color: #0c0d12;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.brand-arch-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .brand-arch-card {
  background-color: #161822;
}

.brand-arch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.brand-arch-evin {
  border-top: 4px solid #0B2C6B;
}

.brand-arch-puryog {
  border-top: 4px solid #137AF3;
}

.brand-arch-salts {
  border-top: 4px solid #08B000;
}

.brand-badge-top {
  align-self: flex-start;
  background-color: rgba(19, 122, 243, 0.12);
  color: #137AF3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.brand-arch-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

[data-theme="dark"] .brand-arch-card h3 {
  color: #FFFFFF;
}

.brand-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: #08B000;
  margin-bottom: 0.85rem;
}

.brand-desc {
  font-size: 0.94rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* 7. VISUAL TIMELINE */
.timeline-section {
  padding: 4rem 0;
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .timeline-section {
  background-color: #1a1d2a;
}

.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .timeline-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.timeline-step {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .timeline-step {
  background: #161822;
}

.timeline-step:hover {
  transform: translateY(-4px);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #0B2C6B;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 0.9rem;
}

.step-mat-icon {
  font-size: 2.2rem;
  color: #137AF3;
  margin-bottom: 0.75rem;
}

.timeline-step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

[data-theme="dark"] .timeline-step h3 {
  color: #FFFFFF;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.timeline-arrow {
  display: none;
  font-size: 1.6rem;
  color: #137AF3;
  margin-top: 3.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .timeline-arrow {
    display: block;
  }
}

/* 8. KNOWLEDGE HUB WITH EDITORIAL QUOTES */
.knowledge-section {
  padding: 4rem 0;
  background-color: var(--color-bg);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .knowledge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.knowledge-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .knowledge-card {
  background-color: #161822;
}

.know-badge {
  background-color: rgba(19, 122, 243, 0.12);
  color: #137AF3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.knowledge-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

[data-theme="dark"] .knowledge-card h3 {
  color: #FFFFFF;
}

.knowledge-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.editorial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--color-primary);
  border-left: 3px solid #08B000;
  padding-left: 0.85rem;
  margin-top: 1.25rem;
  line-height: 1.5;
}

[data-theme="dark"] .editorial-quote {
  color: #137AF3;
}

/* 9. DEDICATED B2B WHOLESALE SECTION */
.wholesale-banner-section {
  padding: 4rem 0;
}

.wholesale-banner-box {
  background: linear-gradient(135deg, #0B2C6B 0%, #07193c 100%);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(11, 44, 107, 0.25);
}

@media (min-width: 768px) {
  .wholesale-banner-box {
    padding: 3.5rem;
  }
}

.wholesale-tag-badge {
  background-color: #137AF3;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}

.wholesale-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.wholesale-content p {
  font-size: 1.05rem;
  color: #FFF9F1;
  max-width: 650px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.wholesale-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 650px;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .wholesale-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.w-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFF9F1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w-icon {
  color: #08B000;
  font-size: 20px;
}

.wholesale-action-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .wholesale-action-row {
    flex-direction: row;
    align-items: center;
  }
}

.btn-wholesale-primary {
  background-color: #08B000;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  min-height: 48px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-wholesale-primary:hover {
  background-color: #069000;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(8, 176, 0, 0.35);
}

.btn-wholesale-outline {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  min-height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-wholesale-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

/* 10. REVIEWS & STORE */
.reviews-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

[data-theme="dark"] .reviews-section {
  background-color: #161822;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.review-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .review-card {
  background-color: #0c0d12;
}

.review-card .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-card p {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

[data-theme="dark"] .reviewer-info strong {
  color: #FFFFFF;
}

.reviewer-info span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.visit-store-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

[data-theme="dark"] .visit-store-section {
  background-color: #161822;
}

.visit-store-card {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}

[data-theme="dark"] .visit-store-card {
  background-color: #0c0d12;
}

@media (min-width: 1024px) {
  .visit-store-card {
    grid-template-columns: 1fr 1fr;
  }
}

.store-info-side {
  padding: 2.25rem 1.75rem;
}

@media (min-width: 768px) {
  .store-info-side {
    padding: 3.5rem;
  }
}

.store-badge {
  color: #137AF3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.store-info-side h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--color-primary);
}

[data-theme="dark"] .store-info-side h2 {
  color: #FFFFFF;
}

.store-info-side p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.store-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.store-mat-icon {
  font-size: 1.5rem;
  color: #137AF3;
  flex-shrink: 0;
}

.detail-row strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

[data-theme="dark"] .detail-row strong {
  color: #FFFFFF;
}

.detail-row p {
  margin: 0;
  font-size: 0.9rem;
}

.btn-directions {
  background-color: #0B2C6B;
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-height: 48px;
  transition: background-color 0.2s;
}

.btn-directions:hover {
  background-color: #137AF3;
}

.btn-mat-icon {
  font-size: 20px;
}

.store-map-side {
  min-height: 320px;
}

/* ==========================================
   MAIN FOOTER HUB
   ========================================== */
.main-footer {
  background-color: #0B2C6B;
  color: #FFF9F1;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #ffffff;
  padding: 2px;
}

.footer-logo-row h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #137AF3;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-accreditations {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.acc-badge {
  font-size: 0.8rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.acc-badge.fssai-verify-link:hover {
  opacity: 0.85;
}

.acc-label {
  font-weight: 500;
  color: #94a3b8;
}

.acc-val {
  font-weight: 400;
  color: #cbd5e1;
}

.fssai-icon {
  height: 16px;
  width: auto;
  filter: brightness(1.2);
}

.fssai-open-icon {
  font-size: 14px;
  color: #137AF3;
  vertical-align: middle;
}

.contact-label {
  font-weight: 500;
  color: #94a3b8;
}

.contact-val {
  font-weight: 400;
  color: #cbd5e1;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: 0.02em;
}

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

.footer-col a {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.contact-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.footer-mat-icon {
  font-size: 18px;
  color: #137AF3;
  vertical-align: middle;
  margin-right: 0.3rem;
}

.address-item {
  display: flex;
  gap: 0.4rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.payment-methods-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 400;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.footer-bottom-bar {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================
   Trust Bar
   ========================================== */
.trust-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.trust-item-icon {
  font-size: 1.2rem;
}

/* ==========================================
   Section Shared Styles
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-pad {
  padding: 5rem 0;
}

/* ==========================================
   Featured Categories
   ========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.category-card-overlay h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-ui);
  font-weight: 700;
}

/* ==========================================
   Brand Story
   ========================================== */
.brand-story-section {
  background: var(--color-panel);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.4s;
}

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

.story-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.story-lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.story-text p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ==========================================
   Why Choose Section
   ========================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-panel);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 20px var(--color-card-shadow);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-block {
  text-align: center;
}
.stat-block .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-display);
}
.stat-block .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ==========================================
   Best Sellers
   ========================================== */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.bestseller-card {
  background: var(--color-panel);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-card-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bestseller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--color-card-shadow);
}

.bestseller-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bestseller-info {
  padding: 1.25rem;
}
.bestseller-info h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bestseller-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
}
.bestseller-unit {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.bestseller-bulk {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 0.25rem;
}
.bestseller-cta {
  margin-top: 0.75rem;
}

/* ==========================================
   Sourcing Matrix Table
   ========================================== */
.sourcing-index-section {
  padding: 5rem 1.5rem;
  text-align: center;
}
.sourcing-index-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
}
.sourcing-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-card-shadow);
  max-width: 1200px;
  margin: 0 auto;
}
.sourcing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.sourcing-table th, .sourcing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.sourcing-table th {
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.sourcing-table td {
  font-size: 0.95rem;
}
.sourcing-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================
   Quality Assurance
   ========================================== */
.quality-assurance-section {
  background: var(--color-bg-alt);
  padding: 5rem 1.5rem;
  transition: background 0.4s;
}

.qa-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.qa-content { flex: 1.5; }
.qa-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.qa-content p { color: var(--color-text-light); margin-bottom: 1.5rem; }

.specs-list { list-style: none; }
.specs-list li { margin-bottom: 0.75rem; position: relative; padding-left: 1.5rem; }
.specs-list li::before { content: '✓'; color: var(--color-accent); position: absolute; left: 0; font-weight: 700; }

.qa-badges { display: flex; gap: 1.5rem; flex: 1; flex-wrap: wrap; }
.qa-badge {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  flex: 1;
  min-width: 120px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px var(--color-card-shadow);
}
.qa-badge .badge-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  font-family: var(--font-display);
}
.qa-badge .badge-lbl { font-size: 0.85rem; color: var(--color-text-light); font-weight: 500; }

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-section {
  padding: 5rem 0;
  text-align: center;
}
.testimonials-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 10px 20px var(--color-card-shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card p { font-style: italic; color: var(--color-text-light); margin-bottom: 1.5rem; line-height: 1.7; padding-top: 1rem; }
.testimonial-card .reviewer { font-weight: 700; color: var(--color-primary); }
[data-theme="dark"] .testimonial-card .reviewer { color: var(--color-accent); }

/* ==========================================
   FAQ Accordion
   ========================================== */
.faq-section {
  padding: 5rem 0;
  text-align: center;
}
.faq-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--color-bg-alt); }
.faq-question h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
}
.faq-toggle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ==========================================
   Product Catalog View
   ========================================== */
.page-header {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(to bottom, var(--color-bg-alt), var(--color-bg));
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-header p { color: var(--color-text-light); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* Compact Shop Header & Sample Chip */
.shop-header-compact {
  padding-bottom: 1.5rem;
}
.sample-notice-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.85rem;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.sample-notice-chip .notice-icon {
  font-size: 1.1rem;
  color: var(--color-accent);
}
.sample-chip-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
}
.sample-chip-link:hover {
  text-decoration: underline;
}

/* Unified Sticky Shop Controls Toolbar */
.shop-toolbar-wrapper.sticky-toolbar {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: var(--color-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.75rem 0;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.shop-toolbar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toolbar-primary-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.toolbar-primary-row .search-box-wrapper {
  flex: 1;
  min-width: 0;
}

.sort-select-compact {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-panel);
  color: var(--color-text);
  cursor: pointer;
}

.mobile-only-btn {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-panel);
  color: var(--color-text);
  cursor: pointer;
}

/* Quick Search Inline Chips */
.popular-searches-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.1rem;
}
.popular-searches-inline::-webkit-scrollbar { display: none; }
.pop-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  white-space: nowrap;
}
.pop-chip-subtle {
  background: transparent;
  border: none;
  font-size: 0.78rem;
  color: var(--color-text-light);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.pop-chip-subtle:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Horizontal Scrollable Category Pills */
.category-pills-bar {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.category-pills-bar::-webkit-scrollbar { display: none; }

.filter-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--color-border-light);
  background: var(--color-panel);
  color: var(--color-text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.filter-pill.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  font-weight: 700;
}

.filter-pill:hover:not(.active) {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

[data-theme="dark"] .filter-pill.active {
  background: var(--color-accent);
  color: #090f1d;
  border-color: var(--color-accent);
}

@media (max-width: 768px) {
  .toolbar-primary-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .toolbar-primary-row .search-box-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }
  .mobile-only-btn {
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  .sort-select-wrapper {
    flex: 1;
  }
  .sort-select-compact {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  .category-pills-bar {
    display: none;
  }
  .category-pills-bar.active-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border-light);
  }
}

/* Contact / Visit Our Store Responsive Layout & Prominent Location Card */
.contact-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  border-radius: 20px;
}

.prominent-location-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--color-bg-alt);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.prominent-location-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.tap-hint-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-left: auto;
}

.store-address-text {
  margin-top: 0.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

.get-directions-btn {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.store-map-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}

@media (max-width: 900px) {
  .contact-grid-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.25rem;
  }
  .store-map-wrapper {
    min-height: 300px;
    height: 320px;
  }
}

.sort-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--color-accent); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.glass-panel {
  background: var(--color-panel);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px var(--color-card-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--color-card-shadow);
}

.product-image-container { height: 200px; position: relative; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.glass-panel:hover .product-img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; font-family: var(--font-ui); font-weight: 700; color: var(--color-text); }
.product-desc { font-size: 0.82rem; color: var(--color-text-light); margin-bottom: 0.75rem; height: 3.2rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; }

.product-specs { display: flex; gap: 0.4rem; margin-bottom: 1rem; flex-wrap: wrap; }
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-bg-alt);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-text-light);
}
.spec-chip .material-symbols-outlined {
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-purchase-controls { border-top: 1px solid var(--color-border); padding-top: 0.75rem; }

.price-display { margin-bottom: 0.75rem; }
.price-display .base-price { font-size: 1.35rem; font-weight: 700; color: var(--color-primary); }
[data-theme="dark"] .price-display .base-price { color: var(--color-accent); }
.price-display .base-unit { font-size: 0.85rem; color: var(--color-text-light); }

/* Custom +/- Quantity Selector */
.qty-selector-group { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.qty-selector-group label { font-weight: 600; font-size: 0.85rem; }
.qty-control { display: flex; align-items: center; background: var(--color-bg-alt); border-radius: 6px; border: 1px solid var(--color-border); overflow: hidden; }
.qty-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.2s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.qty-btn:hover { background: rgba(0, 0, 0, 0.05); }
[data-theme="dark"] .qty-btn:hover { background: rgba(255, 255, 255, 0.05); }

/* Cart quantity controls */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.5rem;
}
.qty-controls .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 1rem;
  padding: 0;
  border-radius: 4px;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.qty-controls .qty-input {
  width: 48px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.9rem;
  padding: 2px;
}
.remove-btn {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  border-radius: 4px;
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  transition: background 0.2s;
}
.remove-btn:hover { background: rgba(239,68,68,0.2); }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  z-index: 3000;
  animation: fadeInOut 3s forwards;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

.qty-control .weight-input { width: 50px; border: none; background: transparent; color: var(--color-text); font-weight: 700; text-align: center; font-size: 1rem; padding: 0; }
.qty-control input[type=number]::-webkit-inner-spin-button, 
.qty-control input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.unit-suffix { font-size: 0.85rem; font-weight: 600; color: var(--color-text-light); min-width: 55px; text-align: right; }

/* ==========================================
   Checkout Modal & Sidebar Cart
   ========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  transition: opacity 0.3s;
}
.cart-overlay.hidden { opacity: 0; pointer-events: none; }

.cart-sidebar {
  width: 400px;
  max-width: 100%;
  background: var(--color-panel);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-overlay.hidden .cart-sidebar { transform: translateX(100%); }

.cart-header { padding: 1.25rem; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-item { display: flex; justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); margin-bottom: 1.25rem; gap: 0.75rem; }

.cart-item-info h4 { font-family: var(--font-ui); font-size: 0.9rem; margin-bottom: 0.2rem; }
.cart-item-price { font-weight: 700; color: var(--color-accent); }

.cart-footer { padding: 1.25rem; background: var(--color-bg-alt); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }

/* Dynamic Discount Alerts */
.cart-discount-alert {
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-accent);
  animation: pulse 2s infinite;
}
.cart-discount-alert.hidden { display: none; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Modal Content and Structure */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.modal.hidden { opacity: 0; pointer-events: none; }

.modal-content {
  width: 90%;
  max-width: 500px;
  background: var(--color-panel);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-header {
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close-btn {
  background: var(--color-bg);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.close-btn {
  font-size: 1.5rem;
  color: var(--color-text);
  cursor: pointer;
}

.checkout-stepper { display: flex; padding: 1rem; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.step { flex: 1; text-align: center; font-size: 0.8rem; font-weight: 600; color: var(--color-text-light); }
.step.active { color: var(--color-accent); }

.checkout-step { padding: 1.5rem; }
.checkout-step.hidden { display: none; }

.payment-summary { text-align: center; margin-bottom: 2rem; }
.payment-summary h3 { font-size: 2.5rem; color: var(--color-accent); font-family: var(--font-ui); font-weight: 700; }

.savings-celebration {
  background: var(--color-accent-light);
  color: var(--color-status-success);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.savings-celebration.hidden { display: none; }

/* Progress Bars */
.progress-bar-container {
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.progress-bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
  transition: width 0.4s ease-out;
}

/* Wholesale Savings Panel */
.wholesale-savings-panel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(8, 176, 0, 0.05);
  border: 1px dashed rgba(8, 176, 0, 0.3);
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  margin-top: 0.85rem;
}
.wholesale-savings-panel .material-symbols-outlined {
  color: #08B000;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ws-info { display: flex; flex-direction: column; gap: 0.1rem; }
.ws-info strong { color: #08B000; font-size: 0.85rem; font-weight: 700; }
.ws-info span { font-size: 0.78rem; color: var(--color-text-secondary); }

.payment-actions { display: flex; flex-direction: column; gap: 1rem; }

/* Premium Selectable Cards */
.payment-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.payment-method-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.payment-method-card:hover { border-color: rgba(19, 122, 243, 0.4); }
.payment-method-card.active {
  border-color: var(--color-accent-blue);
  background: rgba(19, 122, 243, 0.03);
}
.payment-method-card .hidden-radio { display: none; }
.payment-method-card .pay-icon { font-size: 2rem; color: var(--color-text-light); transition: color 0.2s; }
.payment-method-card.active .pay-icon { color: var(--color-accent-blue); }
.pay-info { display: flex; flex-direction: column; gap: 0.2rem; }
.pay-info strong { font-size: 1rem; color: var(--color-text); }
.pay-info span { font-size: 0.85rem; color: var(--color-text-light); }
.pay-info .pay-caption { font-size: 0.75rem; color: var(--color-status-success); font-weight: 600; margin-top: 0.25rem; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: var(--color-panel);
  color: var(--color-text);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--color-card-shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: auto;
  animation: toastFadeIn 0.3s ease forwards;
  border-left: 4px solid var(--color-primary);
}
.toast.success { border-left-color: var(--color-status-success); }
.toast.error { border-left-color: var(--color-status-danger); }
.toast.warning { border-left-color: var(--color-status-warning); }
.toast.closing { animation: toastFadeOut 0.3s ease forwards; }

@keyframes toastFadeIn {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(1rem); }
}
/* Form Elements */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-light);
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* ==========================================
   Contact / Visit Us
   ========================================== */
.contact-layout {
  margin: 3rem auto 5rem auto;
}
.store-details {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--color-panel);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--color-card-shadow);
  border: 1px solid var(--color-border);
}
.store-info-content {
  padding: 3rem;
}
.store-info-content h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.store-desc {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.info-block {
  margin-bottom: 1.5rem;
}
.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.info-block p, .info-block ul {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.info-block ul {
  list-style: none;
}
.store-map {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  border-left: 1px solid var(--color-border);
}
.map-placeholder {
  text-align: center;
  color: var(--color-text-light);
  padding: 2rem;
}
.map-placeholder svg {
  margin: 0 auto 1.5rem auto;
  display: block;
}
.map-placeholder h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.map-placeholder p {
  font-size: 0.9rem;
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
  background: #090f1d;
  color: #ffffff;
  padding: 4rem 1.5rem 2.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 { color: #ffffff; font-size: 1.6rem; margin-bottom: 0.75rem; }
.footer-brand p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.7; }

.badge-tag {
  background: #1e293b;
  color: #cbd5e1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.footer-links h4 { color: #ffffff; margin-bottom: 1.25rem; font-family: var(--font-ui); font-size: 1rem; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; color: #94a3b8; font-size: 0.85rem; }
.footer-links a { color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-accent); }

.trust-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.trust-logo-card {
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90px;
  height: 50px;
}
.footer-logo-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-link { color: #475569; }
.admin-link:hover { color: #94a3b8; }

/* ==========================================
   Mobile Responsive Layouts
   ========================================== */
@media (max-width: 1024px) {
  .hero-content { margin-left: 1.5rem; }
  .qa-container { flex-direction: column; gap: 2rem; }
  .qa-badges { width: 100%; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger-btn { display: flex; }
  .desktop-nav { display: none; }

  /* Hero */
  .hero-section { min-height: 70vh; }
  .hero-content { margin: 0; padding: 3rem 1.5rem; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; }

  /* Trust Bar */
  .trust-bar-inner { gap: 1rem; }
  .trust-item { font-size: 0.75rem; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-image { order: -1; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stats-row { gap: 1.5rem; }

  /* Best Sellers */
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Sourcing Table */
  .sourcing-table th, .sourcing-table td { padding: 0.75rem; font-size: 0.8rem; }

  /* Testimonials, FAQ */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Catalog */
  .catalog-grid { grid-template-columns: 1fr; }
  .shop-controls { flex-direction: column; padding: 0 1rem; }
  .search-box { min-width: 100%; }

  /* Contact */
  .store-details { grid-template-columns: 1fr; }
  .store-map { min-height: 250px; border-left: none; border-top: 1px solid var(--color-border); }
  .store-info-content { padding: 2rem 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Cart */
  .cart-sidebar { width: 100%; }

  /* Section padding */
  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .bestsellers-grid { grid-template-columns: 1fr; }
  .header-container { padding: 0.8rem 1rem; }
  .logo a { font-size: 1.3rem; }
  .section-pad { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }
  .hero-content { padding: 2.5rem 1rem; }
}

/* ==========================================
   REFINED SINGLE-COLOR NAVBAR BRANDING
   ========================================== */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--color-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

[data-theme="dark"] .brand-wordmark {
  color: #FFFFFF;
}

/* ==========================================
   DEDICATED BRANDS PAGE
   ========================================== */
.brands-hero-section {
  padding: 4rem 0 3rem;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.brand-kicker {
  color: #137AF3;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.brands-page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

[data-theme="dark"] .brands-page-title { color: #FFFFFF; }

.brands-page-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.brand-detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.brand-detail-evin { background-color: #ffffff; }
[data-theme="dark"] .brand-detail-evin { background-color: #0c0d12; }

.brand-detail-puryog { background-color: #F8FAFC; }
[data-theme="dark"] .brand-detail-puryog { background-color: #161822; }

.brand-detail-salts { background-color: var(--color-bg); }

.brand-detail-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .brand-detail-container {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background-color: rgba(11, 44, 107, 0.1);
  color: #0B2C6B;
  margin-bottom: 1rem;
}

.brand-badge-pill.accent-blue {
  background-color: rgba(19, 122, 243, 0.12);
  color: #137AF3;
}

.brand-badge-pill.accent-green {
  background-color: rgba(8, 176, 0, 0.12);
  color: #08B000;
}

.brand-detail-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.brand-short-story {
  font-size: 1.02rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.brand-focus-box {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.brand-focus-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.brand-focus-box ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.brand-focus-box li {
  margin-bottom: 0.4rem;
}

.brand-card-preview {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.brand-logo-preview {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.brand-pack-preview {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.brand-card-preview h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.brand-card-preview span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ==========================================
   OVERHAULED PREMIUM CART EXPERIENCE
   ========================================== */
.cart-sidebar {
  width: 100%;
  max-width: 440px;
  background-color: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.cart-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.cart-free-shipping-bar {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
}

.free-shipping-msg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.free-shipping-msg.unlocked {
  color: #08B000;
}

.free-shipping-msg .material-symbols-outlined {
  font-size: 18px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #ffffff;
  flex-shrink: 0;
}

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

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

[data-theme="dark"] .cart-item-name { color: #FFFFFF; }

.cart-remove-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
}

.cart-remove-btn:hover { color: #dc2626; }

.cart-item-gujarati {
  font-size: 0.8rem;
  color: #08B000;
  font-weight: 600;
  margin-top: 0.15rem;
}

.cart-item-pack-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
}

.cart-item-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.qty-step-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-step-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.qty-step-input {
  width: 36px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: transparent;
  color: var(--color-text);
  -moz-appearance: textfield;
}

.qty-step-input::-webkit-outer-spin-button,
.qty-step-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

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

[data-theme="dark"] .cart-item-total-price { color: #137AF3; }

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
}

.cart-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.summary-row.savings-row {
  color: #08B000;
  font-weight: 600;
}

.summary-row.summary-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding-top: 0.65rem;
  margin-top: 0.25rem;
}

[data-theme="dark"] .summary-row.summary-total { color: #FFFFFF; }

.text-green { color: #08B000; font-weight: 700; }

.empty-cart-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

.empty-cart-icon {
  font-size: 3.5rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.empty-cart-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-cart-state p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* ==========================================
   IMMERSIVE EDITORIAL INGREDIENT FEATURE SECTIONS
   ========================================== */
.editorial-feature-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-bg-main { background-color: #ffffff; }
[data-theme="dark"] .feature-bg-main { background-color: #0c0d12; }

.feature-bg-alt { background-color: var(--color-bg); }
[data-theme="dark"] .feature-bg-alt { background-color: #161822; }

.editorial-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .editorial-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.editorial-feature-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  background-color: var(--color-bg-alt);
}

.feature-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.editorial-kicker {
  color: #137AF3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.editorial-feature-content h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

[data-theme="dark"] .editorial-feature-content h2 { color: #FFFFFF; }

.editorial-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.margin-top-sm {
  margin-top: 1.25rem;
}

/* EDITORIAL PROOF SECTION */
.editorial-proof-section {
  padding: 4.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

[data-theme="dark"] .editorial-proof-section { background-color: #0c0d12; }

.proof-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .proof-editorial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-block {
  padding: 1.5rem 0;
}

.proof-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #08B000;
  margin-bottom: 0.5rem;
}

.proof-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--color-primary);
}

[data-theme="dark"] .proof-block h3 { color: #FFFFFF; }

.proof-block p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================
   REDESIGNED PRODUCT DETAIL PAGE
   ========================================== */
.breadcrumb-nav {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.breadcrumb-nav a {
  color: var(--color-primary);
  text-decoration: none;
}

.active-crumb {
  color: var(--color-text);
  font-weight: 600;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.main-image-box {
  position: relative;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-image-box img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.origin-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(11, 44, 107, 0.88);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
}

.gallery-thumbs {
  display: flex;
  gap: 0.85rem;
}

.thumb-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 0.35rem;
  cursor: pointer;
  background-color: var(--color-bg-alt);
  transition: border-color 0.2s;
}

.thumb-img.active, .thumb-img:hover {
  border-color: #137AF3;
}

.product-info-side {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.product-gujarati-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #08B000;
  margin-bottom: 0.75rem;
}

.product-origin-chip {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.product-price-block {
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.main-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

[data-theme="dark"] .main-price { color: #137AF3; }

.price-unit {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

.tax-note {
  font-size: 0.85rem;
  color: #08B000;
  font-weight: 600;
  margin-top: 0.4rem;
}

.product-summary-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.purchase-box {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.qty-label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.purchase-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.qty-stepper-lg {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.qty-btn-lg {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input-lg {
  width: 50px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  background: transparent;
  color: var(--color-text);
}

.stock-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
}

.stock-badge.in-stock {
  background-color: rgba(8, 176, 0, 0.12);
  color: #08B000;
}

.stock-badge.out-of-stock {
  background-color: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}

.factual-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-fact-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.fact-icon {
  font-size: 1.4rem;
  color: #137AF3;
  flex-shrink: 0;
}

.trust-fact-row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

[data-theme="dark"] .trust-fact-row strong { color: #FFFFFF; }

.trust-fact-row p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* PRODUCT KNOWLEDGE TABS & FAQ */
.product-knowledge-tabs {
  margin-bottom: 4rem;
}

.p-tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .p-tab-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-tab-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.tab-icon {
  font-size: 2rem;
  color: #137AF3;
  margin-bottom: 0.75rem;
}

.p-tab-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

[data-theme="dark"] .p-tab-card h3 { color: #FFFFFF; }

.p-tab-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.p-tab-card li {
  margin-bottom: 0.4rem;
}

.product-faq-section {
  margin-bottom: 4rem;
}

.product-faq-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.p-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-faq-item {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.p-faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.p-faq-question h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.p-faq-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #137AF3;
}

.p-faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.p-faq-item.active .p-faq-answer {
  display: block;
}

.p-faq-item.active .p-faq-toggle {
  transform: rotate(45deg);
}

.related-products-section {
  margin-bottom: 4rem;
}

.related-products-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* ==========================================
   SEARCH ASSISTANT & ORDER NOTES
   ========================================== */
.search-box-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0.2rem 0.5rem 0.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  background: var(--color-bg);
}

.search-box .search-icon {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-right: 0.5rem;
  transition: color 0.2s ease;
}

.search-box:focus-within .search-icon {
  color: var(--color-primary);
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.55rem 0.25rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--color-text);
  outline: none;
  font-weight: 500;
}

.search-box input::placeholder {
  color: var(--color-text-light);
  opacity: 0.75;
  font-weight: 400;
}

.popular-searches-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.pop-search-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}

.pop-chip {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.2s;
}

[data-theme="dark"] .pop-chip { color: #137AF3; }

.pop-chip:hover {
  background-color: #137AF3;
  color: #ffffff;
  border-color: #137AF3;
}

.cart-notes-wrapper {
  margin-bottom: 1.25rem;
}

.cart-notes-wrapper label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}

.note-icon {
  font-size: 18px;
  color: #137AF3;
}

.cart-order-notes-input {
  width: 100%;
  min-height: 56px;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.85rem;
  resize: vertical;
}

/* ==========================================
   MASTER PRICE LIST & PRINTABLE PDF STYLES
   ========================================== */
.pricelist-wrapper {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.pricelist-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pricelist-search-box {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 280px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.pricelist-search-box input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  outline: none;
}

.pricelist-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.effective-date-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(19, 122, 243, 0.08);
  color: var(--color-accent-blue);
  padding: 0.5rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.btn-print-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.pricelist-table-container {
  border-radius: 14px;
  overflow-x: auto;
  padding: 0;
}

.pricelist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricelist-table th {
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
}

.pricelist-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}

.pricelist-table tr:hover {
  background: rgba(19, 122, 243, 0.02);
}

.category-header-row td {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.25rem;
  border-bottom: 2px solid var(--color-border);
}

[data-theme="dark"] .category-header-row td {
  color: #137AF3;
}

.cat-icon {
  font-size: 1.1rem;
  vertical-align: middle;
  margin-right: 0.35rem;
  color: var(--color-accent-blue);
}

.sku-cell {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.product-title-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-name {
  color: var(--color-text);
  font-size: 0.95rem;
}

.gujarati-inline {
  color: var(--color-text-accent-gold);
  font-weight: 700;
  font-size: 0.88rem;
}

.spec-inline {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  margin-top: 0.2rem;
}

.unit-cell {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.mrp-cell {
  color: var(--color-text-secondary);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.price-cell {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}

[data-theme="dark"] .price-cell {
  color: #ffffff;
}

.tier-cell {
  min-width: 200px;
}

.tier-pills {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tier-pill {
  display: inline-block;
  background: rgba(8, 176, 0, 0.06);
  border: 1px solid rgba(8, 176, 0, 0.2);
  color: #08B000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

.tier-pill strong {
  color: #08B000;
}

.standard-wholesale {
  color: #08B000;
  font-weight: 700;
  font-size: 0.88rem;
}

.print-pdf-header {
  display: none;
}

/* ==========================================
   PRINTABLE PDF EXPORT STYLES (@media print)
   ========================================== */
@media print {
  .main-header, .main-footer, .pricelist-controls, .page-header, .cart-overlay, .modal, #whatsapp-float, #mobile-nav-overlay, .theme-toggle-btn {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #111827 !important;
    font-family: var(--font-ui), sans-serif !important;
    font-size: 9.5pt !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .pricelist-wrapper {
    margin: 0 !important;
  }

  .print-pdf-header {
    display: block !important;
    border-bottom: 2px solid #0B2C6B !important;
    padding-bottom: 12pt !important;
    margin-bottom: 15pt !important;
  }

  .print-header-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 10pt !important;
  }

  .print-logo-box {
    display: flex !important;
    align-items: center !important;
    gap: 10pt !important;
  }

  .print-logo-img {
    height: 44pt !important;
    width: auto !important;
  }

  .print-company-name {
    font-family: var(--font-display), serif !important;
    font-size: 18pt !important;
    font-weight: 700 !important;
    color: #0B2C6B !important;
    margin: 0 !important;
    letter-spacing: 0.5pt !important;
  }

  .print-company-tagline {
    font-size: 8pt !important;
    color: #4b5563 !important;
    margin: 2pt 0 0 0 !important;
  }

  .print-doc-meta {
    text-align: right !important;
  }

  .print-doc-title {
    font-size: 12pt !important;
    font-weight: 800 !important;
    color: #0B2C6B !important;
    letter-spacing: 1pt !important;
  }

  .print-date {
    font-size: 8.5pt !important;
    color: #6b7280 !important;
    margin-top: 3pt !important;
  }

  .print-info-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 4pt 12pt !important;
    font-size: 8pt !important;
    background: #f8fafc !important;
    padding: 6pt 10pt !important;
    border-radius: 4pt !important;
    border: 1px solid #e2e8f0 !important;
  }

  .print-info-grid span {
    font-weight: 700 !important;
    color: #374151 !important;
  }

  .pricelist-table-container {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .pricelist-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 8.5pt !important;
  }

  .pricelist-table th {
    background: #0B2C6B !important;
    color: #ffffff !important;
    font-size: 8pt !important;
    font-weight: 700 !important;
    padding: 6pt 8pt !important;
    border: 1px solid #0B2C6B !important;
    text-transform: uppercase !important;
  }

  .pricelist-table td {
    padding: 5pt 8pt !important;
    border: 1px solid #e5e7eb !important;
    color: #1f2937 !important;
  }

  .category-header-row td {
    background: #f1f5f9 !important;
    color: #0B2C6B !important;
    font-weight: 800 !important;
    font-size: 9pt !important;
    padding: 6pt 8pt !important;
    border-top: 2px solid #cbd5e1 !important;
    border-bottom: 2px solid #cbd5e1 !important;
  }

  .pricelist-row {
    page-break-inside: avoid !important;
  }

  .product-name {
    color: #111827 !important;
    font-weight: 700 !important;
  }

  .tier-pill {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    font-size: 7.5pt !important;
    padding: 1pt 4pt !important;
  }

  @page {
    size: A4 portrait;
    margin: 1.2cm 1cm 1.2cm 1cm;
  }
}
