/* ==========================================================================
   SARVIX AURA - LUXURY & TRENDING D2C DESIGN SYSTEM
   Palette inspired by the Official Sarvix Aura Logo:
   - Deep Midnight Navy (#0a1128, #0f1c3f)
   - Royal Champagne Gold (#cba358, #e5c178, #f5df9e)
   - Glowing Aura Teal/Turquoise (#14b8a6, #2dd4bf)
   - Warm Ivory Silk Background (#fcfbfa)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* DeoDap Commercial & Sarvix Aura Palette */
  --aura-navy: #0b2545;
  --aura-navy-light: #133863;
  --aura-navy-surface: #07192f;
  
  --deodap-red: #e62e2d;
  --deodap-red-dark: #c91817;
  --deodap-red-gradient: linear-gradient(135deg, #e62e2d 0%, #ff4757 100%);
  --deodap-red-glow: rgba(230, 46, 45, 0.35);

  --aura-gold: #f59e0b;
  --aura-gold-hover: #d97706;
  --aura-gold-light: #fef3c7;
  --aura-gold-glow: rgba(245, 158, 11, 0.35);

  --aura-teal: #0284c7;
  --aura-teal-hover: #0369a1;
  --aura-teal-light: #f0f9ff;

  --green-save: #059669;
  --green-save-light: #ecfdf5;

  --primary: #e62e2d;
  --primary-hover: #c91817;
  --primary-light: #fef2f2;
  --primary-glow: rgba(230, 46, 45, 0.3);

  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fef3c7;

  --whatsapp: #25d366;
  --whatsapp-hover: #20ba59;

  --dark: #0f172a;
  --dark-surface: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg-page: #f4f6f9;
  --bg-card: #ffffff;
  --bg-subtle: #edf2f7;

  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --border-gold: rgba(245, 158, 11, 0.4);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 5px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 10px 25px -4px rgba(11, 37, 69, 0.12);
  --shadow-xl: 0 18px 36px -6px rgba(11, 37, 69, 0.16);
  --shadow-red: 0 4px 18px rgba(230, 46, 45, 0.35);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  transition: var(--transition);
}

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

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

/* 0. GRAND OPENING SPOTLIGHT (BIG & IMPOSSIBLE TO MISS) */
.grand-opening-spotlight {
  background: radial-gradient(circle at 50% 0%, #172554 0%, #0b2545 45%, #051329 100%);
  color: #ffffff;
  padding: 22px 20px 24px;
  border-bottom: 3.5px solid #f59e0b;
  position: relative;
  z-index: 1002;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.go-spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.go-spotlight-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.go-spotlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.15);
  border: 1.5px solid #22c55e;
  color: #4ade80;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.go-pulse-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: goPulse 1.6s infinite;
}

@keyframes goPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.go-launch-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b2545;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.go-spotlight-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.go-spotlight-title span {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
}

.go-spotlight-desc {
  max-width: 920px;
  margin: 0 auto 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.go-spotlight-desc strong {
  color: #fef08a;
}

.go-spotlight-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.go-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.go-chip.highlight {
  background: rgba(37, 211, 102, 0.16);
  border-color: #25d366;
  color: #4ade80;
}

/* FLOATING LAUNCH BADGE (PERSISTENT ON SCREEN) */
.floating-launch-badge {
  position: fixed;
  bottom: 82px;
  left: 18px;
  z-index: 9999;
  background: linear-gradient(135deg, #07192f 0%, #0b2545 100%);
  color: #ffffff;
  border: 2px solid #f59e0b;
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 158, 11, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.floating-launch-badge:hover {
  transform: scale(1.05);
}

.flb-icon {
  font-size: 1.3rem;
}

.flb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.flb-title {
  font-size: 0.82rem;
  font-weight: 900;
  color: #fef08a;
  letter-spacing: 0.3px;
}

.flb-sub {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
}

.flb-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: goPulse 1.6s infinite;
}

@media (max-width: 768px) {
  .grand-opening-spotlight {
    padding: 16px 14px;
  }
  .go-spotlight-title {
    font-size: 1.25rem;
  }
  .go-spotlight-desc {
    font-size: 0.84rem;
  }
  .go-chip {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
  .floating-launch-badge {
    bottom: 74px;
    left: 10px;
    padding: 6px 12px 6px 10px;
  }
}

/* 1. TOP ANNOUNCEMENT BAR (DeoDap Multi-Feature Notice Strip) */
.announcement-bar {
  background: #07192f;
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1260px;
  margin: 0 auto;
}

.announcement-items-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
}

.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-tag {
  background: var(--deodap-red);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 2. DEODAP-STYLE MAIN NAVBAR (Solid Deep Navy) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--aura-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

/* Official Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--aura-gold);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  flex-shrink: 0;
  background: #ffffff;
}

.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--aura-gold);
}

.brand-subtitle {
  font-size: 0.68rem;
  color: #93c5fd;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* DeoDap Wide Search Box (Center) */
.search-container {
  flex: 1;
  max-width: 540px;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .search-container {
    display: block;
  }
}

.search-box-deodap {
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.search-box-deodap input {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-main);
  background: transparent;
}

.search-box-deodap input::placeholder {
  color: #94a3b8;
}

.search-btn-deodap {
  background: var(--deodap-red);
  color: #ffffff;
  padding: 0 18px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.search-btn-deodap:hover {
  background: var(--deodap-red-dark);
}

/* Nav Actions (Right) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-item {
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

@media (min-width: 960px) {
  .nav-link-item {
    display: inline-flex;
  }
}

.nav-link-item:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--aura-gold);
}

/* Cart Trigger with Pill */
.btn-cart-deodap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--deodap-red);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(230, 46, 45, 0.35);
  position: relative;
}

.btn-cart-deodap:hover {
  background: var(--deodap-red-dark);
  transform: translateY(-1px);
}

.cart-count-pill {
  background: #ffffff;
  color: var(--deodap-red);
  font-size: 0.72rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.counter-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--deodap-red);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--aura-navy);
}

.btn-admin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--aura-gold);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
}

.btn-admin:hover {
  background: rgba(245, 158, 11, 0.15);
  color: #ffffff;
}

/* DeoDap Sub-Navbar Bar (Horizontal Category Links) */
.sub-navbar {
  background: #07192f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-navbar::-webkit-scrollbar {
  display: none;
}

.subnav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  white-space: nowrap;
}

.subnav-link {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  cursor: pointer;
}

.subnav-link:hover, .subnav-link.active {
  color: var(--aura-gold);
}

.subnav-link.highlight {
  color: #ff6b6b;
  font-weight: 700;
}

/* Mobile Search Bar */
.mobile-search-bar {
  padding: 8px 14px;
  background: var(--aura-navy);
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-search-bar {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-search-bar {
    display: none;
  }
}

/* 3. HERO SECTION */
.hero-section {
  padding: 24px 0 16px;
}

.hero-banner {
  background: linear-gradient(135deg, #091224 0%, #101d3a 45%, #18284e 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: white;
  padding: 40px 32px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 880px) {
  .hero-banner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 54px 58px;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 163, 88, 0.15);
  border: 1px solid rgba(203, 163, 88, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--aura-gold);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

.hero-title span {
  background: linear-gradient(90deg, #cba358, #f5df9e, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #d1d5db;
  max-width: 520px;
  margin-bottom: 26px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aura-gold), #b88e42);
  color: #091224;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(203, 163, 88, 0.45);
}

.btn-whatsapp-outline {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}

.btn-whatsapp-outline:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: white;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-showcase {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid var(--aura-gold);
  box-shadow: 0 0 35px rgba(203, 163, 88, 0.45), 0 0 60px rgba(20, 184, 166, 0.25);
  overflow: hidden;
  background: var(--aura-navy);
  transition: var(--transition);
}

.hero-logo-showcase:hover {
  transform: scale(1.04);
}

.hero-logo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4. TRUST BADGES STRIP */
.trust-strip {
  padding: 18px 0;
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.trust-item {
  background: white;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-item:hover {
  border-color: var(--aura-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--aura-gold-light);
  color: var(--aura-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

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

/* 5. COMPANY DETAILS & LOCATIONS SECTION */
.section-company {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 30px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 880px) {
  .company-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.company-card {
  background: var(--bg-subtle);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.company-badge-header {
  color: var(--aura-teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.company-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aura-navy);
  margin-bottom: 12px;
}

.company-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aura-gold);
  flex-shrink: 0;
}

.detail-content h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.detail-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Shipping Coverage Box */
.coverage-card {
  background: linear-gradient(135deg, #091224, #101d3a);
  color: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.coverage-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #f5df9e;
  border: 1px solid rgba(203, 163, 88, 0.25);
}

/* 6. DEODAP-STYLE CIRCULAR CATEGORIES QUICK BROWSE */
.section-circle-cats {
  padding: 18px 0 10px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.circle-cat-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: none;
}

@media (min-width: 992px) {
  .circle-cat-scroll {
    justify-content: center;
  }
}

.circle-cat-scroll::-webkit-scrollbar {
  display: none;
}

.circle-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  background: transparent;
}

.circle-cat-thumb-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  padding: 2px;
  background: #ffffff;
  border: 2px solid var(--border-light);
  box-shadow: 0 3px 10px rgba(11, 37, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.circle-cat-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.circle-cat-item:hover .circle-cat-thumb-wrap,
.circle-cat-item.active .circle-cat-thumb-wrap {
  border-color: var(--deodap-red);
  box-shadow: 0 4px 14px rgba(230, 46, 45, 0.35);
  transform: translateY(-2px);
}

.circle-cat-item:hover .circle-cat-thumb-wrap img {
  transform: scale(1.08);
}

.circle-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
  max-width: 82px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.circle-cat-item:hover .circle-cat-label,
.circle-cat-item.active .circle-cat-label {
  color: var(--deodap-red);
}

/* Category Filter Chips Bar (Secondary) */
.section-categories {
  padding: 14px 0 10px;
}

.category-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-chip {
  padding: 8px 16px;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.category-chip:hover {
  border-color: var(--deodap-red);
  color: var(--deodap-red);
}

.category-chip.active {
  background: var(--aura-navy);
  color: #ffffff;
  border-color: var(--aura-navy);
  box-shadow: var(--shadow-sm);
}

/* 6.5. DEODAP ⚡ DEAL OF THE DAY / FLASH SALE SECTION WITH COUNTDOWN TIMER */
.section-flash-sale {
  margin: 10px 0 28px;
}

.flash-sale-banner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #fecdd3;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(230, 46, 45, 0.1);
}

.flash-sale-header {
  background: var(--deodap-red-gradient);
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.flash-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-badge-pulse {
  background: #ffffff;
  color: var(--deodap-red);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-badge 1.8s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.flash-title-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.flash-timer-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.timer-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fef2f2;
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.timer-digit {
  background: #07192f;
  color: #ffffff;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.timer-colon {
  font-weight: 800;
  color: #ffffff;
}

/* Flash Deal Highlight Card Body */
.flash-sale-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .flash-sale-body {
    grid-template-columns: 160px 1fr auto;
    padding: 22px 28px;
  }
}

.flash-deal-thumb {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-subtle);
  margin: 0 auto;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

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

.flash-deal-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flash-deal-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deal-pill-red {
  background: #fee2e2;
  color: var(--deodap-red);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.flash-deal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

/* Scarcity Bar */
.scarcity-wrap {
  margin: 8px 0 4px;
  max-width: 380px;
}

.scarcity-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--deodap-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.scarcity-bar-track {
  width: 100%;
  height: 7px;
  background: #fecdd3;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.scarcity-bar-fill {
  height: 100%;
  width: 86%;
  background: linear-gradient(90deg, #f59e0b, #e62e2d);
  border-radius: var(--radius-full);
  animation: pulse-fill 2s infinite ease-in-out;
}

@keyframes pulse-fill {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 0.75; }
}

.flash-deal-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.flash-selling-price {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--deodap-red);
  font-family: var(--font-heading);
}

.flash-mrp-price {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.flash-save-pill {
  background: var(--green-save-light);
  color: var(--green-save);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.flash-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.btn-flash-buy {
  background: var(--deodap-red-gradient);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(230, 46, 45, 0.4);
  transition: var(--transition);
}

.btn-flash-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 46, 45, 0.55);
}

/* 7. PRODUCTS SECTION */
.section-products {
  padding: 10px 0 48px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sort-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-select {
  padding: 8px 14px;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 680px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

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

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.12);
  border-color: #cbd5e1;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
  cursor: pointer;
}

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

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

.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--deodap-red);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(230, 46, 45, 0.3);
  z-index: 2;
}

.tag-bestseller {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--aura-gold);
  color: #07192f;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  z-index: 2;
}

.wishlist-btn:hover, .wishlist-btn.active {
  color: #ef4444;
  background: white;
  transform: scale(1.1);
}

.card-content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
  cursor: pointer;
}

.card-title:hover {
  color: var(--deodap-red);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.stars {
  display: inline-flex;
  color: var(--aura-gold);
  font-size: 0.82rem;
}

.rating-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Fast Dispatch Badge in Card */
.card-dispatch-line {
  font-size: 0.72rem;
  color: var(--green-save);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 10px;
}

.selling-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  font-family: var(--font-heading);
}

.mrp-price {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.savings-tag {
  background: var(--green-save-light);
  color: var(--green-save);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6px;
}

.btn-add-cart {
  width: 100%;
  padding: 9px 6px;
  background: var(--aura-navy);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--aura-navy-light);
}

.btn-buy-now {
  width: 100%;
  padding: 9px 6px;
  background: var(--deodap-red-gradient);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(230, 46, 45, 0.3);
  transition: var(--transition);
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, var(--deodap-red-dark) 0%, #e62e2d 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 46, 45, 0.45);
}

/* 8. CART DRAWER */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 36, 0.65);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: white;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.btn-close:hover {
  background: var(--border-light);
  color: var(--dark);
}

.shipping-progress {
  padding: 12px 22px;
  background: var(--aura-gold-light);
  border-bottom: 1px solid #fae6b8;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7b5917;
}

.progress-track {
  height: 6px;
  width: 100%;
  background: #fae6b8;
  border-radius: var(--radius-full);
  margin-top: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--aura-gold);
  width: 70%;
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 14px;
  color: var(--text-muted);
}

.cart-empty-state svg {
  width: 64px;
  height: 64px;
  color: #cbd5e1;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-subtle);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--aura-navy);
  margin-top: 2px;
}

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

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
}

.qty-btn:hover {
  background: white;
}

.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-remove-item {
  background: transparent;
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 600;
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-light);
  background: #fafafa;
}

.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.coupon-box input {
  flex: 1;
  padding: 9px 12px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.btn-coupon {
  padding: 9px 14px;
  background: var(--aura-navy);
  color: var(--aura-gold);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.cart-summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  border-top: 1px dashed var(--border-light);
  padding-top: 10px;
  margin-top: 8px;
}

.btn-checkout {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--aura-gold), #b88e42);
  color: #091224;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  box-shadow: var(--shadow-gold);
}

.btn-checkout:hover {
  transform: translateY(-1px);
}

/* 9. MODALS & CHECKOUT */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 36, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.modal-body {
  padding: 24px;
}

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

@media (min-width: 600px) {
  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: white;
  border-color: var(--aura-gold);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.payment-option {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover {
  border-color: var(--aura-gold);
}

.payment-option.selected {
  border-color: var(--aura-gold);
  background: var(--aura-gold-light);
}

.payment-opt-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-opt-left input[type="radio"] {
  accent-color: var(--aura-navy);
  width: 18px;
  height: 18px;
}

.payment-opt-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.payment-opt-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.upi-qr-card {
  background: #fdfbf7;
  border: 1px dashed var(--aura-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.upi-qr-img {
  width: 170px;
  height: 170px;
  border-radius: var(--radius-sm);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.quickview-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 650px) {
  .quickview-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.qv-image {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.pincode-box {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.pincode-box input {
  max-width: 160px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.pincode-status {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 10. MOBILE BOTTOM NAVIGATION */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-around;
  padding: 8px 6px;
  z-index: 900;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  position: relative;
  background: transparent;
  padding: 4px 8px;
}

.mob-nav-item.active, .mob-nav-item:hover {
  color: var(--aura-gold);
}

.mob-nav-item svg {
  width: 22px;
  height: 22px;
}

/* 11. TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .toast-container {
    bottom: 24px;
  }
}

.toast {
  background: var(--aura-navy);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  pointer-events: auto;
  animation: slideToast 0.3s ease forwards;
  max-width: 320px;
  border: 1px solid var(--border-gold);
}

.toast.success {
  border-left: 4px solid var(--aura-teal);
}

.toast.info {
  border-left: 4px solid var(--aura-gold);
}

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

/* 12. FOOTER */
.site-footer {
  background: var(--aura-navy);
  color: #94a3b8;
  padding: 54px 0 30px;
  margin-top: 60px;
  border-top: 2px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  }
}

.footer-col h4 {
  color: #f5df9e;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

.footer-links a:hover {
  color: var(--aura-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(203, 163, 88, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   13. LIVE VISUAL EDITOR (CLICK-TO-EDIT & IMAGE REPLACEMENT)
   ========================================================================== */

/* Persistent Edit Mode Toggle Button */
.editor-floating-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--aura-navy);
  color: #f5df9e;
  border: 1.5px solid var(--aura-gold);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(9, 18, 36, 0.35), 0 0 15px rgba(203, 163, 88, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.editor-floating-toggle:hover {
  background: var(--aura-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(9, 18, 36, 0.45), 0 0 20px rgba(203, 163, 88, 0.4);
}

.editor-floating-toggle.active {
  background: var(--aura-gold);
  color: var(--aura-navy);
  border-color: #ffffff;
}

/* Floating Bottom Action Toolbar when Edit Mode is ON */
.visual-editor-toolbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 1200;
  background: rgba(9, 18, 36, 0.96);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--aura-gold);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(203, 163, 88, 0.3);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
}

.visual-editor-toolbar.show {
  transform: translateX(-50%) translateY(0);
}

.toolbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f5df9e;
}

.toolbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.btn-editor-save {
  background: linear-gradient(135deg, var(--aura-gold), #b88e42);
  color: #091224;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(203, 163, 88, 0.35);
}

.btn-editor-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(203, 163, 88, 0.5);
}

.btn-editor-exit {
  background: rgba(255, 255, 255, 0.12);
  color: #d1d5db;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
}

.btn-editor-exit:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Edit Mode Highlighting on the Page */
body.edit-mode-active [data-editable="text"] {
  outline: 2px dashed rgba(203, 163, 88, 0.75) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
  cursor: text !important;
  position: relative;
  transition: outline 0.2s ease, background 0.2s ease;
}

body.edit-mode-active [data-editable="text"]:hover,
body.edit-mode-active [data-editable="text"]:focus {
  outline: 2.5px solid var(--aura-gold) !important;
  background: rgba(203, 163, 88, 0.1) !important;
}

/* Editable Images */
body.edit-mode-active [data-editable="image"] {
  outline: 2.5px dashed var(--aura-teal) !important;
  outline-offset: 3px !important;
  cursor: pointer !important;
  position: relative !important;
  transition: transform 0.2s ease, outline 0.2s ease;
}

body.edit-mode-active [data-editable="image"]:hover {
  outline: 3px solid var(--aura-teal) !important;
  transform: scale(1.02);
}

/* Image Edit Modal */
.image-editor-modal-card {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-gold);
}

/* 17. DEODAP WHOLESALE / RESELLER INQUIRY BANNER */
.section-wholesale-banner {
  margin: 24px 0;
}

.wholesale-banner-card {
  background: linear-gradient(135deg, #07192f 0%, #0b2545 60%, #133863 100%);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 24px rgba(7, 25, 47, 0.18);
}

.wholesale-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.wholesale-banner-text h3 span {
  color: var(--aura-gold);
}

.wholesale-banner-text p {
  font-size: 0.88rem;
  color: #cbd5e1;
  max-width: 600px;
}

.wholesale-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-wholesale-wa {
  background: var(--whatsapp);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-wholesale-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* 18. TRACK ORDER MODAL STYLES */
.track-result-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 16px;
}

.track-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
  position: relative;
  padding-left: 24px;
}

.track-step-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #cbd5e1;
}

.timeline-node {
  position: relative;
  font-size: 0.85rem;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #94a3b8;
  border: 2px solid #ffffff;
}

.timeline-node.done::before {
  background: var(--green-save);
}

.timeline-node.active::before {
  background: var(--deodap-red);
  box-shadow: 0 0 8px var(--deodap-red);
}

.timeline-title {
  font-weight: 700;
  color: var(--dark);
}

.timeline-time {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================
   PRODUCT DETAIL PAGE / EXPANDED VIEW (PDP)
   ========================================== */
.product-detail-modal-card {
  max-width: 1040px !important;
  max-height: 94vh !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  box-shadow: 0 25px 60px -15px rgba(11, 37, 69, 0.35) !important;
}

.pdp-modal-header {
  padding: 14px 22px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}

.pdp-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.pdp-header-badge {
  background: var(--aura-gold-light);
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pdp-modal-body {
  padding: 24px 28px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(94vh - 65px);
  -webkit-overflow-scrolling: touch;
}

/* 2-Col Hero on Desktop */
.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
  align-items: start;
}

@media (min-width: 820px) {
  .pdp-hero-grid {
    grid-template-columns: 440px 1fr;
    gap: 36px;
  }
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 10px;
}

.pdp-main-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.pdp-main-img-container:hover img {
  transform: scale(1.03);
}

.pdp-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.pdp-badge-deal {
  background: var(--deodap-red);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(230, 46, 45, 0.3);
}

.pdp-badge-feature {
  background: #0f172a;
  color: #fcd34d;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Thumbnails */
.pdp-thumbnails-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumb-item {
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  transition: all 0.2s ease;
  padding: 0;
}

.pdp-thumb-item:hover {
  border-color: #cbd5e1;
}

.pdp-thumb-item.active {
  border-color: var(--aura-gold);
  box-shadow: 0 0 0 2px rgba(184, 142, 66, 0.35);
  transform: translateY(-2px);
}

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

/* PDP Meta Column */
.pdp-meta-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pdp-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.pdp-rating-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pdp-verified-badge {
  background: #ecfdf5;
  color: #059669;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Price Box */
.pdp-price-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.pdp-price-flex {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pdp-selling-price {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--deodap-red);
  font-family: var(--font-heading);
}

.pdp-mrp-price {
  font-size: 1.15rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.pdp-save-badge {
  background: var(--green-save-light);
  color: var(--green-save);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.pdp-tax-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pdp-short-desc {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.55;
}

/* Quantity & Action Buttons */
.pdp-actions-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.pdp-qty-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
}

.pdp-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  font-weight: 800;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

.pdp-qty-btn:hover {
  background: #e2e8f0;
}

.pdp-qty-val {
  width: 44px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.pdp-buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 500px) {
  .pdp-buttons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-pdp-buy-now {
  background: var(--deodap-red-gradient);
  color: white;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(230, 46, 45, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-pdp-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 46, 45, 0.55);
}

.btn-pdp-add-cart {
  background: var(--aura-navy);
  color: white;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-pdp-add-cart:hover {
  background: #123460;
  transform: translateY(-2px);
}

.btn-pdp-wa {
  background: #25d366;
  color: white;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  grid-column: 1 / -1;
  transition: var(--transition);
  cursor: pointer;
}

.btn-pdp-wa:hover {
  background: #1ebd59;
}

/* Trust Badges Strip */
.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

@media (min-width: 500px) {
  .pdp-trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 8px 6px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
}

.pdp-trust-icon {
  font-size: 1.25rem;
}

.pdp-trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

/* Deep Content Sections (Scrollable Area) */
.pdp-deep-content {
  border-top: 2px solid #f1f5f9;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pdp-section-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 4px solid var(--aura-gold);
  padding-left: 10px;
}

/* Highlights Grid */
.pdp-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .pdp-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
}

/* Editorial Description */
.pdp-editorial-desc {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.7;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.pdp-editorial-desc p {
  margin-bottom: 12px;
}

.pdp-editorial-desc p:last-child {
  margin-bottom: 0;
}

/* Specifications Table */
.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
}

.pdp-specs-table th {
  background: #0b2545;
  color: white;
  padding: 10px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdp-specs-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
}

.pdp-specs-table tr:nth-child(even) {
  background: #f8fafc;
}

.pdp-specs-table tr:hover {
  background: #f1f5f9;
}

.pdp-spec-key {
  font-weight: 700;
  color: var(--dark);
  width: 38%;
}

.pdp-spec-val {
  color: var(--text-main);
}

/* Pills and Badges */
.pdp-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-tag-pill {
  background: #eef2ff;
  color: #3730a3;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Benefits List */
.pdp-benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 600px) {
  .pdp-benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}

.pdp-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  background: #f0fdf4;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #dcfce7;
}

/* Safety & Care */
.pdp-alert-box {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.6;
}

.pdp-alert-safety {
  background: #fffbeb;
  border: 1.5px solid #fef3c7;
  color: #92400e;
}

.pdp-alert-care {
  background: #ecfeff;
  border: 1.5px solid #cffafe;
  color: #155e75;
}

/* Suggested & Recently Viewed Grid */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.pdp-mini-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pdp-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--aura-gold);
}

.pdp-mini-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.pdp-mini-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pdp-mini-cat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--aura-teal);
  text-transform: uppercase;
}

.pdp-mini-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdp-mini-price {
  font-weight: 800;
  color: var(--deodap-red);
  font-size: 0.95rem;
  margin-top: auto;
}

/* ==========================================
   OWNER-ONLY PRIVACY & ACCESS PROTECTION
   ========================================== */
body:not(.owner-unlocked) .editor-floating-toggle,
body:not(.owner-unlocked) #headerEditToggle,
body:not(.owner-unlocked) .btn-admin,
body:not(.owner-unlocked) .mobile-bottom-nav a[href="admin.html"],
body:not(.owner-unlocked) #visualEditorToolbar {
  display: none !important;
}

body.owner-unlocked .editor-floating-toggle {
  display: flex !important;
}

body.owner-unlocked #headerEditToggle {
  display: flex !important;
}

body.owner-unlocked .btn-admin {
  display: flex !important;
}

body.owner-unlocked .mobile-bottom-nav a[href="admin.html"] {
  display: flex !important;
}

/* ==========================================
   PDP VARIANT SELECTOR - AMAZON VISUAL SWATCHES
   ========================================== */
.amazon-swatch-section {
  margin: 14px 0 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 14px 16px;
}

.amazon-swatch-header {
  font-size: 0.92rem;
  color: #0f1111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amazon-swatch-label {
  font-weight: 500;
  color: #565959;
}

.amazon-swatch-selected-name {
  font-weight: 800;
  color: #0f1111;
  background: #fff8eb;
  color: #b45309;
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid #fde68a;
  font-size: 0.88rem;
}

.amazon-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.amazon-swatch-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 86px;
  padding: 8px 6px 10px;
  background: #ffffff;
  border: 1.5px solid #d5d9d9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  position: relative;
  user-select: none;
}

.amazon-swatch-box:hover {
  border-color: #0f1111;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.amazon-swatch-box.active {
  border: 2.5px solid #e77600 !important;
  background-color: #fffbf2 !important;
  box-shadow: 0 0 0 1px #e77600, 0 3px 10px rgba(231, 118, 0, 0.2) !important;
}

.amazon-swatch-thumb {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafc;
}

.amazon-swatch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.amazon-swatch-box:hover .amazon-swatch-thumb img {
  transform: scale(1.06);
}

.swatch-var-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f1111;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 76px;
}

.swatch-var-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: #b12704;
  margin-top: 4px;
  line-height: 1;
}

.swatch-var-mrp {
  font-size: 0.68rem;
  color: #565959;
  text-decoration: line-through;
  margin-top: 2px;
  line-height: 1;
}

/* Legacy pill fallback if needed */
.pdp-variant-section {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 4px;
}

.pdp-variant-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pdp-variant-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}

.pdp-variant-current {
  font-size: 0.82rem;
  font-weight: 800;
  color: #92400e;
  background: white;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--aura-gold);
}

.pdp-variants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 480px) {
  .pdp-variants-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdp-variant-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.pdp-variant-btn:hover {
  border-color: var(--aura-gold);
  transform: translateY(-1px);
}

.pdp-variant-btn.active {
  border-color: var(--aura-gold);
  background: var(--aura-gold-light);
  color: #92400e;
  box-shadow: 0 0 0 1.5px var(--aura-gold);
}

.pdp-var-icon {
  font-size: 1.15rem;
}

.pdp-var-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================
   OWNER VARIANT PHOTO MANAGEMENT STYLES
   ========================================== */
.pdp-owner-gallery-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-owner-add-photo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  border: 1.5px dashed #22c55e;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-owner-add-photo:hover {
  background: #dcfce7;
  border-color: #16a34a;
  transform: translateY(-1px);
}

.pdp-thumb-wrap {
  position: relative;
  display: inline-block;
}

.pdp-thumb-delete-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  border: 2px solid white;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  z-index: 50 !important;
  pointer-events: auto !important;
  line-height: 1;
  padding: 0;
  transition: all 0.15s ease;
}

.pdp-thumb-delete-btn:hover {
  background: #b91c1c;
  transform: scale(1.2);
}

/* Strict Double Protection: Hide owner edit elements when not edit-mode-active */
body:not(.edit-mode-active) .pdp-owner-gallery-actions,
body:not(.edit-mode-active) .pdp-thumb-delete-btn,
body:not(.owner-unlocked) .pdp-owner-gallery-actions,
body:not(.owner-unlocked) .pdp-thumb-delete-btn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================
   CUSTOMER AUTH & USER NAVIGATION WIDGET
   ========================================== */
.nav-user-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-user-btn {
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--aura-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-user-btn:hover {
  border-color: var(--aura-gold);
  background: rgba(203, 163, 88, 0.08);
  color: var(--aura-gold);
}

.nav-user-wrap.logged-in .nav-user-btn {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 1200;
  animation: fadeIn 0.2s ease;
}

.nav-user-dropdown.open {
  display: flex;
}

.nav-user-dropdown .dropdown-header {
  padding: 10px 16px 8px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4px;
}

.nav-user-dropdown a {
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.nav-user-dropdown a:hover {
  background: var(--bg-subtle);
  color: var(--aura-gold);
}

/* ==========================================
   PRODUCT CARD DELETE & ADD PRODUCT IN EDIT MODE
   ========================================== */
.btn-card-delete {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: white;
  border: 1.5px solid white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-card-delete:hover {
  background: #b91c1c;
  transform: scale(1.08);
}

.card-add-product-new {
  border: 2.5px dashed #cbd5e1 !important;
  background: #f8fafc !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 380px !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  border-radius: var(--radius-md) !important;
}

.card-add-product-new:hover {
  border-color: var(--aura-gold) !important;
  background: #fffbeb !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(203, 163, 88, 0.15) !important;
}

.add-product-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
}

.add-product-plus-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aura-gold), #b38938);
  color: var(--aura-navy);
  font-size: 2.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(203, 163, 88, 0.35);
  transition: transform 0.2s ease;
}

.card-add-product-new:hover .add-product-plus-icon {
  transform: scale(1.12) rotate(90deg);
}

.add-product-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--aura-navy);
  margin: 0;
}

.add-product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 220px;
}

.btn-create-product-cta {
  background: var(--aura-navy);
  color: var(--aura-gold);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.card-add-product-new:hover .btn-create-product-cta {
  background: var(--aura-gold);
  color: var(--aura-navy);
}

/* ==========================================
   ADD PRODUCT MODAL (OWNER)
   ========================================== */
.modal-add-product {
  max-width: 620px !important;
  width: 95% !important;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.add-product-form {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.product-image-upload-zone {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg-subtle);
  padding: 14px;
  border-radius: 10px;
  border: 1px dashed var(--border-light);
}

.product-image-upload-zone .preview-box {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-image-upload-zone .preview-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================
   CUSTOMER AUTHENTICATION MODAL & OTP BANNER
   ========================================== */
.auth-modal-card {
  max-width: 460px !important;
  width: 92% !important;
  border-radius: 20px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.auth-modal-header {
  background: linear-gradient(135deg, var(--aura-navy) 0%, #1a2238 100%);
  color: white;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-notice-banner {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  border-bottom: 1px solid #bfdbfe;
  text-align: center;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  background: #f8fafc;
}

.auth-tab-btn {
  flex: 1;
  padding: 13px 8px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn:hover {
  color: var(--aura-gold);
}

.auth-tab-btn.active {
  color: var(--aura-navy);
  background: white;
  border-bottom-color: var(--aura-gold);
  font-weight: 800;
}

.auth-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--aura-navy);
  margin: 0 0 4px;
}

.auth-form-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0 0 10px;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 8px;
  margin-top: 4px;
}

.auth-switch-prompt {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.auth-switch-prompt a {
  color: var(--aura-navy);
  font-weight: 700;
  text-decoration: underline;
}

.auth-link-forgot {
  font-size: 0.78rem;
  color: var(--aura-navy);
  font-weight: 700;
  text-decoration: underline;
}

.auth-error-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.phone-prefix {
  background: #f1f5f9;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.otp-interactive-banner {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 400px;
  background: white;
  border-left: 5px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99999;
  animation: slideInDown 0.3s ease;
}

.btn-copy-otp {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.btn-copy-otp:hover {
  background: #f59e0b;
  color: white;
}







