/* ═══════════════════════════════════════════════════════════════
   DROPYMART — Premium E-Commerce Storefront
   Theme: Obsidian Electric (Dark + Electric Blue)
   ═══════════════════════════════════════════════════════════════ */

@property --orb-1-color {
  syntax: '<color>';
  inherits: false;
  initial-value: rgba(16, 185, 129, 0.1);
}
@property --orb-2-color {
  syntax: '<color>';
  inherits: false;
  initial-value: rgba(226, 209, 178, 0.08);
}
@property --orb-3-color {
  syntax: '<color>';
  inherits: false;
  initial-value: rgba(5, 150, 105, 0.06);
}

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --orb-1-color: rgba(16, 185, 129, 0.1);
  --orb-2-color: rgba(226, 209, 178, 0.08);
  --orb-3-color: rgba(5, 150, 105, 0.06);
  --bg-dark: #081220;
  --bg-surface: #0d1624;
  --bg-card: rgba(255, 255, 255, 0.03);
  --primary: #fbc02d;
  --primary-glow: rgba(251, 192, 45, 0.15);
  --primary-hover: #f9a825;
  --primary-deep: #f57f17;
  --accent-cyan: #ff9800;
  --accent-gold: #f57f17;
  --accent-green: #fbc02d;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 15px rgba(251, 192, 45, 0.1);
  --shadow-heavy: 0 16px 36px -8px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition: all 0.35s var(--ease);
}

/* ── Resets ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Ambient Background ──────────────────────────────────────── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orb-1-color), transparent 70%);
  top: -10%; left: -5%;
  animation: orbFloat1 20s ease-in-out infinite;
  transition: --orb-1-color 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orb-2-color), transparent 70%);
  bottom: 10%; right: -8%;
  animation: orbFloat2 25s ease-in-out infinite;
  transition: --orb-2-color 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--orb-3-color), transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
  transition: --orb-3-color 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.2); }
}



/* ── Glassmorphism ───────────────────────────────────────────── */
.glass {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
}

/* ── Header / Navigation ─────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  height: 64px;
}

.nav-container {
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}
.logo i { color: var(--primary); }
.logo .dot { color: var(--primary); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.icon-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--primary);
}
.icon-btn .badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signin-btn {
  background: transparent;
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--text-primary);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.signin-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 14px var(--primary-glow);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 24px -4px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}
.hero-scroll-indicator a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.indicator-bounce {
  width: 16px;
  height: 16px;
  animation: bounceIndicator 1.8s infinite ease-in-out;
}
@keyframes bounceIndicator {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Hero Scrolling Slideshow */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.scrolling-slideshow {
  display: flex;
  gap: 20px;
  height: 200%;
  transform: rotate(10deg);
}

.scrolling-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track-down {
  animation: scrollDown 20s linear infinite;
}

.track-up {
  animation: scrollUp 25s linear infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0%); }
}

@keyframes scrollUp {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}

.scroll-card {
  width: 180px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 10px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.scroll-card img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.scroll-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.scroll-card-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
}

/* ── Carousel Section (Flipkart/Amazon Billboard) ────────────── */
.carousel-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px 40px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.carousel-track { position: relative; width: 100%; height: 100%; }

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s var(--ease);
  display: flex;
  align-items: center;
  padding: 0 64px;
}
.carousel-slide.active { opacity: 1; z-index: 2; }

.slide-content {
  max-width: 500px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.7s var(--ease) 0.25s;
}
.carousel-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.slide-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--border-glass);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}
.dot {
  width: 20px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--primary);
  width: 32px;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* ── Explore / Products Section ──────────────────────────────── */
.explore-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-tag {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
}
.categories {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar { display: none; }

.cat-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 7px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cat-btn:hover { color: var(--text-primary); border-color: var(--text-muted); }
.cat-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px -4px rgba(59,130,246,0.35);
}

.search-box {
  position: relative;
  max-width: 280px;
  width: 100%;
}
.search-box input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 9px 14px 9px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  transition: var(--transition);
}
.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(59,130,246,0.1);
}
.search-box svg, .search-box i {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 14px; height: 14px;
  pointer-events: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .product-card {
    padding: 8px;
  }
  .product-img-wrap {
    height: 150px;
  }
  .product-name {
    font-size: 14px;
  }
  .product-price {
    font-size: 15px;
  }
}

.product-card {
  border-radius: var(--radius-md);
  padding: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(226, 209, 178, 0.4) !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.85), 
              0 0 25px rgba(226, 209, 178, 0.12);
}

.product-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 2;
}

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

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.product-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.product-rating {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.cart-add-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-add-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* No Results */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}
.no-results p { font-size: 15px; }

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  z-index: 200;
  box-shadow: -8px 0 40px rgba(0,0,0,0.85);
  transition: right 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  background: rgba(10, 12, 22, 0.96);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-glass);
}
.cart-drawer.open { right: 0; }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.05); }

.cart-items {
  flex-grow: 1;
  padding: 20px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-glass);
}
.cart-item-img {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-glass);
}
.cart-item-info { flex-grow: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cart-item-price {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.qty-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 20px; height: 20px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.qty-val { font-size: 12px; font-weight: 700; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
}
.cart-item-remove:hover { color: #ef4444; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-glass);
  background: rgba(0,0,0,0.9);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: var(--transition);
}
.checkout-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.checkout-hint {
  font-size: 10px;
  text-align: center;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Modal System ────────────────────────────────────────────── */
.backdrop-dimmer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 150;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.backdrop-dimmer.active { display: block; opacity: 1; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 16px;
}
.modal-overlay.active { display: flex; opacity: 1; }

.modal-box {
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: scale(0.92);
  transition: transform 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}
.modal-overlay.active .modal-box { transform: scale(1); }

.modal-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.modal-close-btn:hover { background: var(--primary); border-color: var(--primary); }

.modal-body { padding: 24px; overflow-y: auto; }

/* Product Detail Modal */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}
.pdp-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}
.pdp-info { display: flex; flex-direction: column; }
.pdp-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.pdp-desc {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.pdp-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* Sign-In Modal */
.login-modal-inner {
  padding: 36px;
  text-align: center;
}
.login-modal-inner .logo {
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.login-modal-inner h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.login-modal-inner .subtitle {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
}

.login-field {
  text-align: left;
  margin-bottom: 14px;
}
.login-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.login-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.login-field input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.05);
}

.login-error {
  display: none;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Blog/Article Modal */
.article-hero {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(5,5,8,0.98) 100%);
  z-index: 1;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-hero-text {
  position: absolute;
  bottom: 14px; left: 24px; right: 24px;
  z-index: 2;
}
.article-hero-text h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.article-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 14px;
}
.article-body {
  padding: 24px;
  background: rgba(5,5,8,0.98);
}
.article-body .lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.article-body .content {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Mobile Bottom Navigation ────────────────────────────────── */
.mobile-nav {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 60px;
  z-index: 150;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  display: none;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.7);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  gap: 3px;
  transition: var(--transition);
  padding: 6px 12px;
}
.mobile-nav-item i { width: 20px; height: 20px; }
.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--primary); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 56px 32px 28px;
  background: rgba(3, 4, 8, 0.95);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-socials { display: flex; gap: 8px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 3px; }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}


/* ── Floating WhatsApp Support Button ────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 200;
  transition: var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}
.float-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 12px 28px rgba(37,211,102,0.55);
  transform: scale(1.1);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
}
.float-wa .wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.scroll-reveal {
  opacity: 1;
}
.reveal-left  { transform: none; }
.reveal-right { transform: none; }
.scroll-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Entrance animations */
.anim-fade-up {
  animation: fadeUp 0.8s var(--ease) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ── Responsive: Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { height: 380px; }
  .hero-stage { width: 280px; height: 280px; }
  .hero-float-card { width: 210px; left: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: Mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  body { padding-bottom: 60px; }

  .nav-links, .signin-btn { display: none !important; }
  .mobile-nav { display: flex; }

  .nav-container { padding: 0 14px; }
  .logo { font-size: 20px; }
  header { height: 60px; }
  header.scrolled { height: 56px; }

  .hero { padding-top: 60px; min-height: auto; }
  .hero-container { padding: 28px 14px 16px; gap: 8px; }
  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 13px; margin-bottom: 20px; }
  .hero-visual { display: none; }

  .carousel-section { padding: 12px 14px 24px; }
  .carousel-container { height: 240px; }
  .carousel-slide { padding: 0 24px; }
  .slide-title { font-size: 18px; }
  .slide-desc { font-size: 12px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
  .carousel-btn { width: 32px; height: 32px; }

  .explore-section { padding: 32px 12px 60px; }
  .section-title { font-size: 24px; }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 10px;
  }
  .search-box { max-width: 100%; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-card { padding: 6px; border-radius: 10px; }
  .product-img-wrap { height: 130px; border-radius: 8px; margin-bottom: 8px; }
  .product-name { font-size: 13px; }
  .product-desc { display: none; }
  .product-price { font-size: 14px; }
  .cart-add-btn { width: 28px; height: 28px; }

  .cart-drawer { max-width: 100%; }

  .pdp-grid { grid-template-columns: 1fr; gap: 14px; }
  .pdp-img { height: 180px; }
  .modal-body { padding: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 36px 14px 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 26px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { padding: 11px 18px; font-size: 12px; }
}

/* ── Flipkart/Amazon Styled PDP Custom Enhancements ── */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
}
.pdp-stars {
  color: var(--primary);
  letter-spacing: 1px;
}
.pdp-rating-val {
  background: rgba(226, 209, 178, 0.15);
  color: var(--primary);
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
}
.pdp-reviews-count {
  color: var(--text-secondary);
}
.pdp-price-container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 12px;
}
.pdp-delivery-tag {
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
}
.pdp-urgency-box {
  margin: 10px 0;
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #ef4444;
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pdp-stock-warning {
  color: #f87171;
  font-size: 13px;
  font-weight: 600;
}
.pdp-actions-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.btn-pdp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.btn-pdp-cart {
  background: var(--bg-surface);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-pdp-cart:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}
.btn-pdp-buynow {
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.btn-pdp-buynow:hover {
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .pdp-actions-container {
    flex-direction: column;
  }
}

/* ── Overhauled Premium Storefront Styling overrides & additions ── */

.top-bar {
  background: #020804;
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}
.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-bar-right a {
  transition: var(--transition);
}
.top-bar-right a:hover {
  color: var(--primary);
}
.top-bar-right .divider {
  opacity: 0.2;
}

.premium-header {
  border-bottom: 1px solid var(--border-glass) !important;
  backdrop-filter: blur(20px) !important;
  background: rgba(4, 18, 10, 0.85) !important;
  position: sticky !important;
  top: 0;
  z-index: 100;
}
.header-main-row {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}
.logo .dot {
  color: var(--primary);
}
.logo .verified-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-left: 6px;
}
.logo .verified-badge i {
  width: 8px;
  height: 8px;
}

/* Header Search */
.header-search-wrap {
  display: flex;
  flex: 1;
  max-width: 600px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.header-search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.search-cat-select {
  position: relative;
  border-right: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.01);
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.search-cat-select select {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding-right: 20px;
  cursor: pointer;
  outline: none;
  appearance: none;
}
.dropdown-arrow-icon {
  position: absolute;
  right: 10px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  color: var(--text-secondary);
}
.search-input-wrap {
  flex: 1;
}
.search-input-wrap input {
  width: 100%;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0 16px;
  color: var(--text-primary);
  outline: none;
  font-size: 13px;
}
.search-action-btn {
  background: var(--accent-green);
  border: none;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.search-action-btn:hover {
  background: #059669;
}

/* Action Links */
.nav-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-action-link:hover {
  color: var(--primary);
}
.nav-action-link i {
  width: 16px;
  height: 16px;
}
.icon-btn-cart {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.icon-btn-cart:hover {
  color: var(--primary);
}
.cart-icon-wrap {
  position: relative;
}
.cart-icon-wrap i {
  width: 18px;
  height: 18px;
}
.cart-icon-wrap .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent-green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #04120a;
}
.signin-btn-account {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.signin-btn-account i {
  width: 18px;
  height: 18px;
}
.account-btn-text {
  display: flex;
  flex-direction: column;
}
.account-btn-text .subtext {
  font-size: 10px;
  color: var(--text-secondary);
}
.account-btn-text .maintext {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.account-btn-text .maintext i {
  width: 10px;
  height: 10px;
}

/* Sub-nav */
.sub-nav {
  background: rgba(2, 8, 4, 0.9);
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 0;
}
.sub-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categories-dropdown-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}
.categories-dropdown-btn:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
}
.categories-dropdown-btn i {
  width: 14px;
  height: 14px;
}
.sub-nav-links {
  display: flex;
  gap: 20px;
}
.sub-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.sub-nav-links a:hover, .sub-nav-links a.active {
  color: var(--primary);
}
.deals-marquee {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* Main Grid Layout */
.main-content-layout {
  position: relative;
}
.store-grid-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Sidebar panel */
.side-categories-panel {
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  height: fit-content;
}
.side-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.side-nav-list li a:hover, .side-nav-list li.active a {
  color: var(--primary);
  background: var(--primary-glow);
}
.side-nav-list li a i:not(.arrow-right) {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}
.side-nav-list li a .arrow-right {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* Hero Pedestal Slider */
.hero-pedestal-showcase {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: radial-gradient(circle at right, rgba(16, 185, 129, 0.08) 0%, rgba(4, 18, 10, 0.95) 70%);
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.hero-pedestal-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}
.hero-green-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.hero-green-badge i {
  width: 10px;
  height: 10px;
}
.hero-main-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.hero-main-title span {
  background: linear-gradient(135deg, var(--accent-green) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}
.hero-buttons-row {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.btn-primary-green {
  background: var(--accent-green);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-primary-green:hover {
  background: #059669;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.hero-bottom-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.hero-badge-item i {
  color: var(--accent-green);
  width: 14px;
  height: 14px;
}

.hero-pedestal-graphic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pedestal-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-graphic-image {
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  z-index: 1;
  animation: float3D 6s ease-in-out infinite;
}

/* Circular Category Links */
.circular-categories-container {
  max-width: 1400px;
  margin: 32px auto;
  padding: 0 24px;
}
.circular-categories-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.circular-categories-row::-webkit-scrollbar {
  display: none;
}
.circ-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 80px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.circ-cat-item:hover {
  transform: translateY(-4px);
}
.circ-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.circ-cat-item:hover .circ-icon-wrap {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}
.circ-cat-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Deal of the Day Section */
.deals-day-section {
  max-width: 1352px;
  margin: 32px auto;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
}
.deals-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.deals-day-title-wrap h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}
.deals-day-title-wrap .subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}
.countdown-timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 48px;
}
.countdown-box span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green);
}
.countdown-box p {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.countdown-colon {
  font-weight: 700;
  color: var(--text-secondary);
}
.deals-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) {
  .deals-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .deals-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Promo Banners Grid */
.promo-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1352px;
  margin: 32px auto;
  padding: 0 24px;
}
.promo-banner-card {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  height: 180px;
}
.promo-banner-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.promo-banner-content .subtitle {
  font-size: 14px;
  color: var(--accent-green);
  margin-bottom: 16px;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.2s ease;
}
.promo-btn:hover {
  gap: 10px;
}
.promo-banner-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}

/* Brands section */
.brands-section {
  max-width: 1352px;
  margin: 40px auto;
  padding: 0 24px;
}
.brands-header {
  margin-bottom: 16px;
}
.brands-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.brands-header p {
  font-size: 12px;
  color: var(--text-secondary);
}
.brands-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.brands-row::-webkit-scrollbar {
  display: none;
}
.brand-logo-card {
  flex: 1;
  min-width: 120px;
  height: 56px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
}
.brand-logo-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--primary);
  color: var(--text-primary);
}
.brand-logo-card.view-all {
  background: var(--primary-glow);
  color: var(--primary);
}

/* Features Strip */
.features-strip {
  max-width: 1352px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-strip-item i {
  color: var(--accent-green);
  width: 28px;
  height: 28px;
}
.feature-strip-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.feature-strip-item p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Newsletter Column */
.newsletter-col h4 {
  margin-bottom: 12px;
}
.newsletter-col p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  outline: none;
  font-size: 13px;
}
.newsletter-form button {
  background: var(--accent-green);
  border: none;
  padding: 0 16px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: #059669;
}

.payment-badges-row {
  display: flex;
  gap: 8px;
}
.pay-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .sub-nav-links, .deals-marquee {
    display: none;
  }
  .sub-nav-container {
    justify-content: center;
  }
  .categories-dropdown-btn {
    width: 100%;
    justify-content: center;
  }
  .store-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  .side-categories-panel {
    display: none;
  }
  .hero-pedestal-showcase {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }
  .hero-pedestal-content {
    max-width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons-row {
    justify-content: center;
  }
  .hero-bottom-badges {
    justify-items: center;
  }
  .hero-pedestal-graphic img {
    max-width: 240px;
  }
  .features-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header, .premium-header {
    height: auto !important;
    position: sticky !important;
    background: #04120a !important; /* Solid dark green background to block underlying text elements */
    border-bottom: 1px solid var(--border-glass) !important;
  }
  .top-bar {
    display: none;
  }
  .header-main-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px !important;
  }
  .header-search-wrap {
    display: flex !important;
    max-width: 100%;
    width: 100%;
  }
  .search-cat-select {
    display: none; /* Hide category select on mobile search bar to save width space */
  }
  .logo {
    justify-content: flex-start !important;
    gap: 8px !important;
    width: auto !important;
  }
  .nav-actions {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--border-glass);
    padding-top: 10px;
    gap: 8px;
  }
  .nav-action-link span {
    display: inline-block;
    font-size: 11px;
  }
  .icon-btn-cart .cart-label {
    display: inline-block;
    font-size: 11px;
  }
  .signin-btn-account .account-btn-text {
    display: flex;
  }
  .signin-btn-account .account-btn-text .subtext {
    display: none;
  }
  .signin-btn-account .account-btn-text .maintext {
    font-size: 11px;
  }
  .promo-banners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
}
@media (max-width: 576px) {
  .features-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Premium Mockup Light Theme Overrides ───────────────────────── */

/* Header & Sub Nav Navy theme */
.premium-header {
  background: rgba(8, 18, 32, 0.65) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(25px) -webkit-backdrop-filter: blur(25px) !important;
  transition: background 0.8s ease, border-color 0.8s ease !important;
}
.premium-header .logo {
  color: #ffffff !important;
}
.premium-header .logo .dot {
  color: #ffc72c !important;
}
.premium-header .logo .verified-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}
.premium-header .nav-action-link,
.premium-header .icon-btn-cart,
.premium-header .signin-btn-account {
  color: rgba(255, 255, 255, 0.9) !important;
}
.premium-header .nav-action-link:hover,
.premium-header .icon-btn-cart:hover,
.premium-header .signin-btn-account:hover {
  color: #ffc72c !important;
}
.premium-header .search-action-btn {
  background: #ffc72c !important;
  color: #0b1e36 !important;
}
.premium-header .search-action-btn:hover {
  background: #fbc02d !important;
}
.sub-nav {
  background: rgba(5, 12, 22, 0.55) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(25px) -webkit-backdrop-filter: blur(25px) !important;
  transition: background 0.8s ease, border-color 0.8s ease !important;
}
.sub-nav-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.sub-nav-links a.active,
.sub-nav-links a:hover {
  color: #ffc72c !important;
}
.sub-nav-links a::after {
  background: #ffc72c !important;
}
.deals-marquee {
  color: #ffc72c !important;
}

/* Sidebar Category Panel Custom styling */
.side-categories-panel {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.side-nav-list li a {
  color: #374151 !important;
}
.side-nav-list li.active a,
.side-nav-list li a:hover {
  background: #fffcf0 !important;
  color: #b8860b !important;
}
.side-nav-list li.active::before {
  background: #ffc72c !important;
}

/* Hero Showcase Navy Panel gradient */
.hero-pedestal-showcase {
  background: radial-gradient(circle at right, rgba(0, 74, 150, 0.25) 0%, #08172c 70%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}
.hero-green-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffc72c !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.hero-main-title {
  color: #ffffff !important;
}
.hero-main-title span {
  background: linear-gradient(135deg, #ffc72c 30%, #fbc02d 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}
.btn-primary-green {
  background: #ffc72c !important;
  color: #0b1e36 !important;
}
.btn-primary-green:hover {
  background: #fbc02d !important;
}
.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.hero-badge-item {
  color: rgba(255, 255, 255, 0.7) !important;
}
.hero-badge-item i {
  color: #ffc72c !important;
}

/* Circular quick links premium gold/yellow translucent theme */
.circular-categories-container {
  background: rgba(251, 192, 45, 0.06) !important;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251, 192, 45, 0.2) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px) -webkit-backdrop-filter: blur(12px) !important;
  padding: 16px 24px !important;
}
.circ-icon-wrap {
  background: rgba(251, 192, 45, 0.08) !important;
  border: 1px solid rgba(251, 192, 45, 0.25) !important;
}
.circ-cat-item span {
  color: #e2e8f0 !important;
  font-weight: 600 !important;
  transition: color 0.3s ease !important;
}
.circ-cat-item:hover span {
  color: #fbc02d !important;
}
.circ-cat-item:hover .circ-icon-wrap {
  background: rgba(251, 192, 45, 0.22) !important;
  border-color: #fbc02d !important;
}

/* Deal of the day section */
.deals-day-section {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--shadow-card);
}
.deals-day-title-wrap h2 {
  color: #1f2937 !important;
}
.deals-day-title-wrap .subtitle {
  color: #4b5563 !important;
}
.countdown-box {
  background: #f3f4f6 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.countdown-box span {
  color: #d32f2f !important;
}
.countdown-box p {
  color: #4b5563 !important;
}
.countdown-colon {
  color: #1f2937 !important;
}
.deals-day-section .btn-outline-white {
  border-color: #1f2937 !important;
  color: #1f2937 !important;
}
.deals-day-section .btn-outline-white:hover {
  background: #1f2937 !important;
  color: #ffffff !important;
}

/* General product catalog grids card style */
.product-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08) !important;
  border-color: #ffc72c !important;
}
.product-name {
  color: #1f2937 !important;
}
.product-desc {
  color: #4b5563 !important;
}
.product-price {
  color: #111827 !important;
}
.cart-add-btn {
  background: #ffc72c !important;
  color: #0b1e36 !important;
  border: none !important;
}
.cart-add-btn:hover {
  background: #fbc02d !important;
}
.filter-bar {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.cat-btn {
  background: #f3f4f6 !important;
  color: #374151 !important;
}
.cat-btn.active {
  background: #ffc72c !important;
  color: #0b1e36 !important;
}
.search-box input {
  background: #f3f4f6 !important;
  color: #1f2937 !important;
}

/* Footer Section Overrides */
footer {
  background: #08172c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.footer-col h4 {
  color: #ffffff !important;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.footer-col a:hover {
  color: #ffc72c !important;
}
.footer-brand-desc {
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ═══ Scroll Progress Indicator ═══ */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), #ffffff);
  z-index: 9999;
  transition: width 0.05s ease-out;
}

/* ═══ 3D Logo Animation ═══ */
#main-header .logo {
  perspective: 1000px;
  transform-style: preserve-3d;
}
#main-header .logo img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
  transform-style: preserve-3d;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
#main-header .logo:hover img {
  transform: scale(1.15) rotateY(360deg);
  box-shadow: 0 10px 25px rgba(251, 192, 45, 0.4), 0 0 15px rgba(251, 192, 45, 0.2);
}
#main-header .logo .verified-badge {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
}
#main-header .logo:hover .verified-badge {
  transform: translateZ(20px) rotateX(10deg);
  background-color: var(--primary) !important;
  color: #0b1e36 !important;
  border-color: var(--primary) !important;
}

/* ═══ Dynamic Scroll background overrides ═══ */
body.theme-dark-scroll {
  --bg-dark: #081220;
  --bg-surface: #0d1624;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  color: #f8fafc !important;
}
body.theme-dark-scroll .section-title,
body.theme-dark-scroll .pdp-title,
body.theme-dark-scroll h1,
body.theme-dark-scroll h2,
body.theme-dark-scroll h3,
body.theme-dark-scroll h4 {
  color: #ffffff !important;
}
body.theme-dark-scroll p,
body.theme-dark-scroll .testimonial-review {
  color: #e2e8f0 !important;
}
body.theme-dark-scroll .section-desc {
  color: #94a3b8 !important;
}
body.theme-dark-scroll .glass {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
body.theme-dark-scroll .product-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}
body.theme-dark-scroll .product-name {
  color: #ffffff !important;
}
body.theme-dark-scroll .product-price {
  color: var(--primary) !important;
}
body.theme-dark-scroll .cart-add-btn {
  color: #ffffff !important;
}
body.theme-dark-scroll .product-cat {
  color: var(--primary) !important;
}
body.theme-dark-scroll .filter-bar {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}
body.theme-dark-scroll .cat-btn {
  color: #94a3b8 !important;
}
body.theme-dark-scroll .cat-btn.active {
  color: #0b1e36 !important;
  background: var(--primary) !important;
}
body.theme-dark-scroll .testimonial-author {
  color: #ffffff !important;
}
body.theme-dark-scroll .testimonial-role {
  color: var(--primary) !important;
}

/* ═══ 3D Logo Spin Load Animation ═══ */
@keyframes logoSpinLoad {
  0% {
    transform: rotateY(0deg) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: rotateY(360deg) scale(1.15);
  }
  100% {
    transform: rotateY(720deg) scale(1);
    opacity: 1;
  }
}
.logo-spin-load {
  animation: logoSpinLoad 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

/* ═══ Section-Specific Scroll Class Overrides ═══ */
body.active-sec-hero {
  background-color: #081220 !important;
  --orb-1-color: rgba(16, 185, 129, 0.15);
  --orb-2-color: rgba(251, 192, 45, 0.1);
  --orb-3-color: rgba(5, 150, 105, 0.08);
}
body.active-sec-categories {
  background-color: #0b0d1b !important;
  --orb-1-color: rgba(99, 102, 241, 0.15);
  --orb-2-color: rgba(236, 72, 153, 0.1);
  --orb-3-color: rgba(59, 130, 246, 0.08);
}
body.active-sec-deals {
  background-color: #180822 !important;
  --orb-1-color: rgba(192, 132, 252, 0.18);
  --orb-2-color: rgba(244, 63, 94, 0.12);
  --orb-3-color: rgba(139, 92, 246, 0.1);
}
body.active-sec-explore {
  background-color: #0d1117 !important;
  --orb-1-color: rgba(59, 130, 246, 0.15);
  --orb-2-color: rgba(236, 72, 153, 0.1);
  --orb-3-color: rgba(147, 51, 234, 0.08);
}
body.active-sec-testimonials {
  background-color: #021810 !important;
  --orb-1-color: rgba(16, 185, 129, 0.22);
  --orb-2-color: rgba(251, 192, 45, 0.15);
  --orb-3-color: rgba(52, 211, 153, 0.12);
}
body.active-sec-brands {
  background-color: #03141a !important;
  --orb-1-color: rgba(20, 184, 166, 0.2);
  --orb-2-color: rgba(59, 130, 246, 0.15);
  --orb-3-color: rgba(251, 192, 45, 0.1);
}
body.active-sec-footer {
  background-color: #000000 !important;
  --orb-1-color: rgba(31, 41, 55, 0.2);
  --orb-2-color: rgba(17, 24, 39, 0.15);
  --orb-3-color: rgba(75, 85, 99, 0.1);
}





