/* ===================================================================
   IKAN ENTERPRISE — Premium E-Commerce Catalog Website
   Core Stylesheet (Bright, Modern, Responsive & High-Performance)
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gujarati:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Surface & Base Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);

  /* Accents & Brand */
  --accent-primary: #2563eb;
  --accent-primary-hover: #1d4ed8;
  --accent-primary-light: #eff6ff;
  --accent-secondary: #7c3aed;
  --accent-secondary-light: #f5f3ff;
  --accent-success: #059669;
  --accent-success-hover: #047857;
  --accent-success-light: #ecfdf5;
  --accent-warm: #f59e0b;
  --accent-warm-light: #fffbeb;
  --accent-coral: #ef4444;
  --accent-coral-light: #fef2f2;
  --accent-gold: #d97706;

  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-gujarati: #090d16;
  --text-white: #ffffff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);

  /* Borders & Shadows */
  --border: #e2e8f0;
  --border-focus: #3b82f6;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 18px 30px -5px rgba(15, 23, 42, 0.1), 0 8px 12px -5px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font-en: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-gu: 'Noto Sans Gujarati', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.16s ease;
  --transition-spring: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Category Specific Vibrant Color Palettes (14 Unique) */
.cat-color-1 { --cat-accent: #2563eb; --cat-bg: #eff6ff; --cat-gradient: linear-gradient(135deg, #2563eb, #3b82f6); }
.cat-color-2 { --cat-accent: #7c3aed; --cat-bg: #f5f3ff; --cat-gradient: linear-gradient(135deg, #7c3aed, #9333ea); }
.cat-color-3 { --cat-accent: #059669; --cat-bg: #ecfdf5; --cat-gradient: linear-gradient(135deg, #059669, #10b981); }
.cat-color-4 { --cat-accent: #d97706; --cat-bg: #fffbeb; --cat-gradient: linear-gradient(135deg, #d97706, #f59e0b); }
.cat-color-5 { --cat-accent: #0284c7; --cat-bg: #f0f9ff; --cat-gradient: linear-gradient(135deg, #0284c7, #38bdf8); }
.cat-color-6 { --cat-accent: #0d9488; --cat-bg: #f0fdfa; --cat-gradient: linear-gradient(135deg, #0d9488, #14b8a6); }
.cat-color-7 { --cat-accent: #e11d48; --cat-bg: #fff1f2; --cat-gradient: linear-gradient(135deg, #e11d48, #f43f5e); }
.cat-color-8 { --cat-accent: #4f46e5; --cat-bg: #eef2ff; --cat-gradient: linear-gradient(135deg, #4f46e5, #6366f1); }
.cat-color-9 { --cat-accent: #ea580c; --cat-bg: #fff7ed; --cat-gradient: linear-gradient(135deg, #ea580c, #f97316); }
.cat-color-10 { --cat-accent: #16a34a; --cat-bg: #f0fdf4; --cat-gradient: linear-gradient(135deg, #16a34a, #22c55e); }
.cat-color-11 { --cat-accent: #db2777; --cat-bg: #fdf2f8; --cat-gradient: linear-gradient(135deg, #db2777, #ec4899); }
.cat-color-12 { --cat-accent: #8b5cf6; --cat-bg: #f5f3ff; --cat-gradient: linear-gradient(135deg, #8b5cf6, #a855f7); }
.cat-color-13 { --cat-accent: #0891b2; --cat-bg: #ecfeff; --cat-gradient: linear-gradient(135deg, #0891b2, #06b6d4); }
.cat-color-14 { --cat-accent: #475569; --cat-bg: #f1f5f9; --cat-gradient: linear-gradient(135deg, #475569, #64748b); }

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-en);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: transparent;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===================================================================
   TOP HEADER STRIP & ANNOUNCEMENT BAR
   =================================================================== */
.top-strip {
  background: #0b1329;
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-strip-left, .top-strip-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.top-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 400;
  white-space: nowrap;
}

.top-strip-item i {
  color: #38bdf8;
  font-size: 0.88rem;
}

.top-strip-badge {
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #93c5fd;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Top Strip Wholesaler Highlight */
.top-strip-wholesaler {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff !important;
  padding: 0.18rem 0.7rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.top-strip-wholesaler:hover {
  transform: scale(1.04);
  color: #ffffff;
}

/* ===================================================================
   STICKY NAVBAR — ONE LINE, COMPACT, NO-WRAP
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  border-bottom-color: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: 1rem;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.18);
  object-fit: cover;
  border: 2px solid #ffffff;
  transition: var(--transition);
}

.brand-logo-wrapper:hover .brand-logo-img {
  transform: scale(1.05) rotate(2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent-primary);
}

.brand-tagline-gu {
  font-family: var(--font-gu);
  font-size: 0.76rem;
  color: var(--accent-secondary);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.1rem;
  flex-wrap: nowrap;
}

.nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.35rem 0.2rem;
  white-space: nowrap;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient-hero);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-primary);
}

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

/* Wholesaler Compact Pill Button in Navbar */
.nav-wholesaler-btn {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px solid #f59e0b;
  color: #b45309 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 0.32rem 0.8rem !important;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-wholesaler-btn::after {
  display: none !important;
}

.nav-wholesaler-btn:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
}

.nav-wholesaler-btn i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.nav-wholesaler-btn:hover i {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.search-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-toggle-btn:hover {
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.cart-nav-btn {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.28);
  padding: 0 0.85rem;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}

.cart-nav-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 5px 16px rgba(37, 99, 235, 0.38);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 8px;
}

.hamburger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================================
   HERO SLIDER (SWIPER) — REAL PHOTOGRAPHIC PANORAMA SCENES
   =================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  background: #0f172a;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 64vh;
  min-height: 460px;
  max-height: 620px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.hero-slide.swiper-slide-active .hero-slide-bg {
  transform: scale(1.04);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 19, 41, 0.88) 0%, rgba(11, 19, 41, 0.65) 45%, rgba(11, 19, 41, 0.15) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  color: #ffffff;
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fde047;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: 0.3px;
}

.hero-title-gu {
  font-family: var(--font-gu);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.hero-title-en {
  font-size: 1.15rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 0.92rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

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

/* Swiper Custom Controls */
.swiper-button-prev-custom, .swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  transition: var(--transition-fast);
}

.swiper-button-prev-custom { left: 20px; }
.swiper-button-next-custom { right: 20px; }

.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover {
  background: var(--accent-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 6px;
  background: #38bdf8;
}

/* ===================================================================
   MARQUEE TICKER
   =================================================================== */
.marquee-wrapper {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.marquee-item i {
  font-size: 1rem;
  color: #fde047;
}

.marquee-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ===================================================================
   SECTION HEADERS & TITLES
   =================================================================== */
.section {
  padding: 3.25rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  letter-spacing: -0.4px;
}

.section-title-gu {
  font-family: var(--font-gu);
  color: var(--accent-primary);
}

.section-subtitle {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===================================================================
   BUTTON STYLES
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-hero);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-success {
  background: var(--gradient-success);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-primary {
  background: #ffffff;
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-primary);
}

.btn-outline-primary:hover {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ===================================================================
   COMPACT CATEGORIES GRID (SLEEK, SMALLER & EFFICIENT)
   =================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.75rem;
}

.category-card {
  position: relative;
  background: var(--cat-bg);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xs);
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: var(--transition-spring);
  cursor: pointer;
  overflow: hidden;
  min-height: 68px;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cat-accent);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  border-color: var(--cat-accent);
  background: #ffffff;
}

.category-card:hover::before {
  width: 6px;
}

.category-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--cat-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: var(--transition-spring);
}

.category-card:hover .category-icon-box {
  transform: rotate(6deg) scale(1.06);
}

.category-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.category-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cat-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.category-arrow {
  display: none;
}

/* ===================================================================
   FEATURED PRODUCTS CAROUSEL
   =================================================================== */
.featured-slider {
  padding: 0.5rem 0 3rem;
}

.featured-slide {
  height: auto;
}

/* ===================================================================
   ALL PRODUCTS SECTION & FILTERS
   =================================================================== */
.products-toolbar {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.8rem 1.1rem 0.8rem 3rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.search-input:focus {
  background: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px var(--accent-primary-light);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1rem;
  pointer-events: none;
}

.search-clear-btn {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
}

.search-clear-btn:hover {
  color: var(--accent-coral);
}

.filter-pills-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.filter-pills-container::-webkit-scrollbar {
  height: 4px;
}

.filter-pills-container::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.filter-pill {
  padding: 0.4rem 0.85rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-pill:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-primary-light);
}

.filter-pill.active {
  background: var(--gradient-hero);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

.filter-count-badge {
  font-size: 0.72rem;
  opacity: 0.85;
}

.catalog-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0 0.2rem;
}

.catalog-stats-count {
  font-weight: 700;
  color: var(--accent-primary);
}

/* ===================================================================
   PRODUCT CARD DESIGN (PREMIUM & BILINGUAL)
   =================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
}

.product-image-box {
  position: relative;
  width: 100%;
  padding-top: 85%;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  transition: transform 0.4s ease;
}

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

/* Product Badges */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-discount {
  background: var(--gradient-warm);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
  letter-spacing: 0.3px;
}

.badge-id {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 0.16rem 0.45rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-quick-view {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: scale(1);
}

.product-quick-view:hover {
  background: var(--accent-primary);
  color: #ffffff;
}

/* Card Body */
.product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

/* Gujarati Name: PRIMARY, Bold, Prominent */
.product-title-gu {
  font-family: var(--font-gu);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-gujarati);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

/* English Name: SECONDARY, Muted */
.product-title-en {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-notes {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  margin-top: auto;
  padding: 0.55rem 0;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.product-price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.product-price-original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-price-contact {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Card Actions */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.btn-card-cart {
  padding: 0.5rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--accent-primary);
  color: var(--accent-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-card-cart:hover {
  background: var(--accent-primary);
  color: #ffffff;
}

.btn-card-buy {
  padding: 0.5rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  background: var(--accent-success);
  color: #ffffff;
  border: 1.5px solid var(--accent-success);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-card-buy:hover {
  background: #047857;
  border-color: #047857;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Out of Stock Card State */
.product-card.out-of-stock {
  opacity: 0.72;
}

.product-card.out-of-stock .product-img {
  filter: grayscale(80%);
}

.badge-stock-out {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(239, 68, 68, 0.95);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.product-card.out-of-stock button {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===================================================================
   CATEGORY PAGE SPECIFIC STYLES
   =================================================================== */
.category-hero-header {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: 3rem 0 2.5rem;
  position: relative;
}

.category-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.1rem;
}

.category-breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.category-hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.category-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  line-height: 1.55;
}

.category-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  padding: 2.5rem 0 4.5rem;
}

.category-sidebar {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.category-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-xs);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.category-nav-item a:hover {
  background: var(--accent-primary-light);
  color: var(--accent-primary);
}

.category-nav-item.active a {
  background: var(--gradient-hero);
  color: #ffffff;
}

/* ===================================================================
   MODALS (WHOLESALER INQUIRY, LIGHTBOX, POPUPS)
   =================================================================== */
.admin-modal-backdrop, .modal-backdrop-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 41, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.admin-modal-backdrop.active, .modal-backdrop-custom.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wholesaler-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admin-modal-backdrop.active .wholesaler-modal-card {
  transform: scale(1) translateY(0);
}

.wholesaler-modal-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 1.5rem 1.75rem;
  text-align: center;
  position: relative;
}

.wholesaler-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.wholesaler-modal-header p {
  font-size: 0.82rem;
  opacity: 0.92;
  margin-top: 0.2rem;
}

.wholesaler-modal-body {
  padding: 1.5rem 1.75rem;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-input:focus {
  background: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-primary-light);
}

/* ===================================================================
   WHY CHOOSE US / USP SECTION
   =================================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.usp-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-primary);
}

.usp-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.usp-1 .usp-icon-wrapper { background: #eff6ff; color: #2563eb; }
.usp-2 .usp-icon-wrapper { background: #f5f3ff; color: #7c3aed; }
.usp-3 .usp-icon-wrapper { background: #ecfdf5; color: #059669; }
.usp-4 .usp-icon-wrapper { background: #fffbeb; color: #d97706; }
.usp-5 .usp-icon-wrapper { background: #fdf2f8; color: #db2777; }
.usp-6 .usp-icon-wrapper { background: #f0fdfa; color: #0d9488; }

.usp-counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.usp-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.usp-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===================================================================
   ABOUT & STORE PROFILE
   =================================================================== */
.about-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.about-title-gu {
  font-family: var(--font-gu);
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.about-title-en {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.1rem;
}

.about-tagline {
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
  line-height: 1.55;
}

.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--bg-secondary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.about-info-text strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 0.1rem;
}

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

.about-media-box {
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
}

.about-logo-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 340px;
  position: relative;
  z-index: 2;
}

.about-logo-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  border: 3px solid #ffffff;
}

.about-gem-tag {
  background: var(--accent-success-light);
  color: var(--accent-success);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: #0b1329;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.footer-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94a3b8;
  margin-bottom: 1.35rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-contact-item i {
  color: var(--accent-primary);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

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

.footer-bottom strong {
  color: #94a3b8;
}

/* ===================================================================
   CART DRAWER & BACKDROP
   =================================================================== */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

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

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

.cart-header {
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
}

.cart-header-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  background: var(--accent-coral-light);
  color: var(--accent-coral);
  border-color: rgba(239, 68, 68, 0.3);
}

.cart-body {
  padding: 1.2rem 1.4rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cart-empty-box {
  text-align: center;
  padding: 3.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.cart-empty-icon {
  font-size: 3.2rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  position: relative;
}

.cart-item-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  background: #ffffff;
  border-radius: var(--radius-xs);
  padding: 4px;
  border: 1px solid var(--border);
}

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

.cart-item-title-gu {
  font-family: var(--font-gu);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.cart-item-title-en {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

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

.cart-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: #ffffff;
  overflow: hidden;
}

.cart-qty-btn {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.cart-qty-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
}

.cart-qty-val {
  padding: 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.cart-item-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cart-item-remove-btn:hover {
  color: var(--accent-coral);
}

.cart-footer {
  padding: 1.15rem 1.4rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  padding-top: 0.45rem;
  margin-bottom: 1.15rem;
  border-top: 1px dashed var(--border);
}

/* Customer Checkout Form in Drawer */
.cart-customer-form {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border);
}

.cart-customer-form h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-form-group {
  margin-bottom: 0.55rem;
}

.cart-form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
}

.cart-form-input:focus {
  border-color: var(--accent-primary);
}

/* ===================================================================
   FLOATING BUTTONS & BACK TO TOP
   =================================================================== */
.floating-whatsapp {
  right: 22px;
  position: fixed;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  transition: var(--transition-spring);
}

.floating-whatsapp:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-call {
  left: 22px;
  position: fixed;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  z-index: 1500;
  transition: var(--transition-spring);
}

.floating-call:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
  color: #ffffff;
}

.back-to-top-btn {
  position: fixed;
  bottom: 86px;
  right: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
  border-color: var(--accent-primary);
}

/* ===================================================================
   PRODUCT LIGHTBOX MODAL
   =================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 41, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition-spring);
}

.lightbox-modal.active .lightbox-card {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 5;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--accent-coral);
  color: #ffffff;
}

.lightbox-img-pane {
  background: #ffffff;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.lightbox-img-pane img {
  max-height: 320px;
  object-fit: contain;
}

.lightbox-info-pane {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
