/* ===== PREMIUM PAGES: AUTH, CART, CHECKOUT ===== */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: var(--tm-pearl-canvas, #F8FAFC);
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 40%),
              radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.08), transparent 40%);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.8);
  padding: 3rem 2.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.auth-card .logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  color: white;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.auth-card .btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
}

/* ===== CART PAGE ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  margin: 2.5rem auto;
  max-width: 1280px;
}

.cart-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.cart-item:hover {
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  border-color: #4F46E5;
  transform: translateX(4px);
}

.cart-summary {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.cart-trust-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed #E2E8F0;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}
.checkout-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #E2E8F0;
  z-index: 1;
}

.checkout-step {
  background: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  z-index: 2;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #64748B;
  border: 2px solid #E2E8F0;
  transition: all 0.3s;
}
.checkout-step.active {
  background: #4F46E5;
  color: #fff;
  border-color: #4F46E5;
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.35);
}

.payment-method-card {
  padding: 1.5rem;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
}
.payment-method-card:hover, .payment-method-card.selected {
  border-color: #4F46E5;
  background: rgba(79, 70, 229, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.08);
}

@media (max-width: 991px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BELIBELI.COM MASTER AESTHETIC & DESIGN SYSTEM
   ========================================================================== */

/* 1. Global Baseline & Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #F8FAFC !important;
  color: #1E293B !important;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #0F172A !important;
  letter-spacing: -0.02em;
}

/* 2. Top Announcement Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #1E1B4B 0%, #312E81 50%, #1E1B4B 100%) !important;
  color: #F8FAFC !important;
  font-size: 0.85rem !important;
  padding: 0.6rem 1rem !important;
  text-align: center !important;
  font-weight: 500 !important;
}

/* 3. Sticky Glass Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03) !important;
}

.navbar .navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}
.navbar-logo .logo-trust { color: #4F46E5 !important; }
.navbar-logo .logo-mall { color: #0F172A !important; }

/* Rounded Search Bar */
.navbar-search .search-input-wrap {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 9999px !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
  display: flex;
  align-items: center;
  padding: 0.25rem 0.35rem 0.25rem 1rem !important;
  transition: all 0.25s ease;
}
.navbar-search .search-input-wrap:focus-within {
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12) !important;
}
.navbar-search .search-cat-select {
  border: none !important;
  background: transparent !important;
  color: #475569 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  outline: none !important;
  padding-right: 0.5rem !important;
  cursor: pointer;
  border-right: 1px solid #E2E8F0 !important;
}
.navbar-search .search-input {
  border: none !important;
  background: transparent !important;
  color: #0F172A !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.95rem !important;
  outline: none !important;
  flex: 1;
}
.navbar-search .search-btn {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
}
.navbar-search .search-btn:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

/* Navbar Actions & Controls (High-Visibility High-Contrast) */
.navbar-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
}

/* Theme Toggle */
.theme-toggle-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #334155 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.theme-toggle-btn:hover {
  background: #EEF2FF !important;
  border-color: #C7D2FE !important;
  color: #4F46E5 !important;
  transform: scale(1.05) !important;
}

/* Notifications & Wishlist Icons */
.nav-icon-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #334155 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.nav-icon-btn:hover {
  background: #EEF2FF !important;
  border-color: #C7D2FE !important;
  color: #4F46E5 !important;
  transform: translateY(-2px) !important;
}
.nav-icon-btn svg {
  color: #334155 !important;
  stroke: currentColor !important;
}
.nav-icon-btn:hover svg {
  color: #4F46E5 !important;
}
.nav-badge {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  background: #EF4444 !important;
  color: #FFFFFF !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  min-width: 19px !important;
  height: 19px !important;
  padding: 0 4px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.35) !important;
}

/* Guest Sign-In Button (Ultra-Visible High-Contrast Pill) */
.nav-signin-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.45rem 1rem !important;
  border-radius: 12px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  text-decoration: none !important;
  color: #0F172A !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.nav-signin-btn:hover {
  background: #EEF2FF !important;
  border-color: #C7D2FE !important;
  color: #4F46E5 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1) !important;
}
.nav-signin-btn svg {
  color: #4F46E5 !important;
  stroke: #4F46E5 !important;
  width: 22px !important;
  height: 22px !important;
  stroke-width: 2.2 !important;
  flex-shrink: 0 !important;
}
.nav-signin-btn .nav-greeting {
  display: block !important;
  font-size: 0.72rem !important;
  color: #64748B !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  line-height: 1.1 !important;
}
.nav-signin-btn .nav-account-label {
  display: block !important;
  font-size: 0.9rem !important;
  color: #0F172A !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Logged-in Account Button */
.nav-account-wrap {
  position: relative !important;
}
.nav-account-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 12px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.nav-account-btn:hover {
  background: #EEF2FF !important;
  border-color: #C7D2FE !important;
}
.nav-avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3) !important;
}
.nav-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.nav-account-text .nav-greeting {
  display: block !important;
  font-size: 0.72rem !important;
  color: #64748B !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}
.nav-account-text .nav-account-label {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  font-size: 0.88rem !important;
  color: #0F172A !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Cart Button (Vibrant Indigo Pill with High Contrast) */
.nav-cart-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 9999px !important;
  background: #4F46E5 !important;
  border: 1.5px solid #4F46E5 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28) !important;
  cursor: pointer !important;
}
.nav-cart-btn:hover {
  background: #4338CA !important;
  border-color: #4338CA !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4) !important;
  color: #FFFFFF !important;
}
.nav-cart-btn .cart-icon-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.nav-cart-btn .cart-icon-wrap svg {
  stroke: #FFFFFF !important;
  width: 22px !important;
  height: 22px !important;
  stroke-width: 2.2 !important;
}
.nav-cart-btn .cart-badge {
  position: absolute !important;
  top: -9px !important;
  right: -12px !important;
  background: #EF4444 !important;
  color: #FFFFFF !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 4px !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}
.nav-cart-btn .cart-label {
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  letter-spacing: -0.01em !important;
}

/* Category Strip */
.cat-strip {
  background: #FFFFFF !important;
  border-top: 1px solid #F1F5F9 !important;
  padding: 0.6rem 1.5rem !important;
}
.cat-strip .cat-pill {
  background: #F8FAFC !important;
  color: #475569 !important;
  border: 1px solid #E2E8F0 !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cat-strip .cat-pill:hover,
.cat-strip .cat-pill.active {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2) !important;
}

/* Dark Mode Overrides for Navbar */
[data-theme="dark"] .navbar {
  background: rgba(15, 23, 42, 0.96) !important;
  border-bottom-color: #1E293B !important;
}
[data-theme="dark"] .navbar-logo .logo-mall {
  color: #FFFFFF !important;
}
[data-theme="dark"] .theme-toggle-btn,
[data-theme="dark"] .nav-icon-btn,
[data-theme="dark"] .nav-signin-btn,
[data-theme="dark"] .nav-account-btn {
  background: #1E293B !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}
[data-theme="dark"] .nav-icon-btn svg,
[data-theme="dark"] .theme-toggle-btn svg {
  color: #94A3B8 !important;
}
[data-theme="dark"] .nav-signin-btn .nav-greeting,
[data-theme="dark"] .nav-account-btn .nav-greeting {
  color: #94A3B8 !important;
}
[data-theme="dark"] .nav-signin-btn .nav-account-label,
[data-theme="dark"] .nav-account-btn .nav-account-label {
  color: #F8FAFC !important;
}
[data-theme="dark"] .cat-strip {
  background: #0F172A !important;
  border-top-color: #1E293B !important;
}
[data-theme="dark"] .cat-strip .cat-pill {
  background: #1E293B !important;
  color: #94A3B8 !important;
  border-color: #334155 !important;
}
[data-theme="dark"] .cat-strip .cat-pill:hover,
[data-theme="dark"] .cat-strip .cat-pill.active {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  border-color: #4F46E5 !important;
}

/* 4. BELIBELI HERO SECTION */
.belibeli-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #EEF2FF 100%);
  border-bottom: 1px solid #E2E8F0;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.12);
}
.hero-glow-2 {
  bottom: -10%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: rgba(236, 72, 153, 0.08);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.08);
  color: #4F46E5;
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(79, 70, 229, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: #0F172A !important;
}
.gradient-text {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: #475569 !important;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: #FFFFFF !important;
  padding: 1rem 2.2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.35);
  transition: all 0.3s ease;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(79, 70, 229, 0.5);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #E2E8F0;
  padding: 1rem 1.8rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}
.hero-btn-secondary:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
  transform: translateY(-2px);
}

.hero-stats-pill {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid #E2E8F0;
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}
.stat-item { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A !important;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748B !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: #E2E8F0;
}

/* Hero Showcase Card */
.hero-showcase-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(226, 232, 240, 0.8);
  transition: transform 0.4s ease;
}
.hero-showcase-card:hover {
  transform: translateY(-6px);
}
.showcase-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #F8FAFC;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-showcase-card:hover .showcase-img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.12);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.discount-floating {
  top: 1.5rem;
  left: 1.5rem;
  color: #EF4444;
  background: #FEF2F2;
  border-color: #FEE2E2;
}
.review-floating {
  bottom: 5.5rem;
  right: 1.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FEF3C7;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
}
.review-sub {
  font-size: 0.75rem;
  color: #64748B;
}

.showcase-bottom-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}
.showcase-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4F46E5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.showcase-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A !important;
  margin: 0;
}
.showcase-cta {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4F46E5;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}
.showcase-cta:hover {
  transform: scale(1.1);
}

/* 5. TRUST FEATURES SECTION */
.trust-features-section {
  padding: 3rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
}
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.trust-feature-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  transition: all 0.25s ease;
}
.trust-feature-card:hover {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A !important;
  margin: 0 0 0.25rem 0;
}
.feature-desc {
  font-size: 0.85rem;
  color: #64748B !important;
  margin: 0;
}

/* 6. CATEGORIES SHOWCASE */
.categories-section {
  padding: 5rem 0;
  background: #F8FAFC;
}
.section-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4F46E5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.section-main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A !important;
  margin: 0;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4F46E5 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-view-all:hover {
  transform: translateX(4px);
}

.categories-belibeli-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.category-belibeli-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  border: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-belibeli-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border-color: #CBD5E1;
}
.cat-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F1F5F9;
}
.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-belibeli-card:hover .cat-card-img {
  transform: scale(1.08);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cat-card-content {
  padding: 1.25rem;
  text-align: center;
  background: #FFFFFF;
}
.cat-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A !important;
  margin: 0 0 0.35rem 0;
}
.cat-card-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  background: #F1F5F9;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* 7. FLASH DEALS SECTION */
.flash-deals-section {
  padding: 5rem 0;
  background: #FFF8F8;
  border-top: 1px solid #FEE2E2;
  border-bottom: 1px solid #FEE2E2;
}
.deals-header-box {
  background: #FFFFFF;
  border: 1px solid #FEE2E2;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.deals-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #EF4444;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulseDot 1.5s infinite;
}
.deals-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A !important;
  margin: 0 0 0.35rem 0;
}
.deals-sub {
  color: #64748B !important;
  font-size: 1rem;
  margin: 0;
}

.deals-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.countdown-label {
  font-weight: 700;
  color: #64748B;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.countdown-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.time-box {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  text-align: center;
  min-width: 60px;
}
.time-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #EF4444;
  line-height: 1;
}
.time-unit {
  font-size: 0.68rem;
  font-weight: 700;
  color: #991B1B;
  text-transform: uppercase;
}
.time-sep {
  font-size: 1.5rem;
  font-weight: 800;
  color: #EF4444;
}

/* 8. BELIBELI PRODUCT GRIDS & CARDS */
.featured-catalog-section,
.new-arrivals-section {
  padding: 5rem 0;
  background: #FFFFFF;
}
.new-arrivals-section {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.belibeli-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.belibeli-product-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.belibeli-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border-color: #CBD5E1;
}

.card-media {
  position: relative;
  background: #F8FAFC;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #F1F5F9;
}
.card-media-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.belibeli-product-card:hover .product-thumb {
  transform: scale(1.08);
}

.badge-discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: #EF4444;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}
.badge-new {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: #3B82F6;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.card-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  transition: all 0.2s ease;
}
.card-wishlist-btn:hover {
  color: #EF4444;
  transform: scale(1.1);
  background: #FFFFFF;
}
.card-wishlist-btn.active {
  color: #EF4444;
  background: #FEF2F2;
  border-color: #FEE2E2;
}

.quick-hover-actions {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}
.belibeli-product-card:hover .quick-hover-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.quick-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0F172A;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  transition: all 0.2s ease;
}
.quick-action-btn:hover {
  background: #4F46E5;
  color: #FFFFFF;
  border-color: #4F46E5;
}

.card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem 0;
}
.card-name a {
  color: #0F172A !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.card-name a:hover {
  color: #4F46E5 !important;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.rating-stars {
  color: #F59E0B;
  font-size: 0.85rem;
}
.rating-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
}

.card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  margin-top: auto;
}
.price-current {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A !important;
}
.price-old {
  font-size: 0.9rem;
  font-weight: 500;
  color: #94A3B8 !important;
  text-decoration: line-through;
}

.btn-add-cart-belibeli {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #F1F5F9;
  color: #0F172A;
  border: 1.5px solid #E2E8F0;
  padding: 0.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-add-cart-belibeli:hover {
  background: #4F46E5;
  color: #FFFFFF;
  border-color: #4F46E5;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
  transform: translateY(-2px);
}
.btn-add-cart-belibeli:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #F1F5F9;
  color: #94A3B8;
  border-color: #E2E8F0;
  transform: none;
  box-shadow: none;
}

/* 9. SITE FOOTER (SLEEK MIDNIGHT SLATE) */
.site-footer {
  background: #0F172A !important;
  color: #94A3B8 !important;
  border-top: 1px solid #1E293B !important;
  padding: 4.5rem 0 2rem !important;
}
.site-footer .footer-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 1.25rem !important;
}
.site-footer .footer-logo .logo-trust {
  color: #818CF8 !important;
}
.site-footer .footer-logo .logo-mall {
  color: #FFFFFF !important;
}
.site-footer .footer-brand-tagline {
  color: #94A3B8 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin-top: 0.75rem !important;
}
.site-footer .footer-col-heading {
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: -0.01em !important;
}
.site-footer .footer-links a {
  color: #94A3B8 !important;
  font-size: 0.9rem !important;
  transition: all 0.2s ease !important;
}
.site-footer .footer-links a:hover {
  color: #FFFFFF !important;
  transform: translateX(4px) !important;
}
.footer-newsletter.vip-newsletter-card {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
}
.footer-newsletter .newsletter-label {
  color: #FFFFFF !important;
}
.footer-newsletter .newsletter-input {
  background: #0F172A !important;
  border: 1px solid #334155 !important;
  color: #FFFFFF !important;
}
.footer-newsletter .newsletter-btn {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}
.footer-newsletter .newsletter-btn:hover {
  background: #4338CA !important;
}
.footer-socials .social-link {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #94A3B8 !important;
}
.footer-socials .social-link:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  border-color: #4F46E5 !important;
}
.footer-trust-badges .trust-badge {
  background: #1E293B !important;
  border: 1px solid #334155 !important;
  color: #FFFFFF !important;
}
.footer-trust-badges .trust-badge span {
  color: #94A3B8 !important;
}
.footer-bottom {
  background: #0B0F19 !important;
  border-top: 1px solid #1E293B !important;
  padding: 1.5rem 0 !important;
  color: #64748B !important;
  font-size: 0.88rem !important;
}
.footer-bottom strong {
  color: #FFFFFF !important;
}

/* Floating Scroll to Top */
.back-to-top-btn {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3) !important;
  transition: all 0.2s ease !important;
}
.back-to-top-btn:hover {
  background: #4338CA !important;
  transform: translateY(-2px) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .deals-header-box { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .deals-countdown-wrap { width: 100%; justify-content: space-between; }
  .section-header-wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cart-layout { grid-template-columns: 1fr !important; }
  .checkout-container { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   10. BELIBELI HIGH-CONTRAST CART & CHECKOUT REDESIGN
   ========================================================================== */

/* Cart & Checkout Page Container */
.cart-page, .checkout-container {
  padding-top: 2rem !important;
  padding-bottom: 4rem !important;
}

/* 1. CHECKOUT STEPS TRACKER */
.checkout-steps-tracker, .checkout-steps-panel {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 1.5rem 2rem !important;
  margin-bottom: 2.5rem !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.checkout-steps-tracker {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: relative !important;
}

.checkout-step-node, .checkout-steps .step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
}

.checkout-step-circle, .checkout-steps .step .step-circle {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: #F1F5F9 !important;
  border: 2px solid #E2E8F0 !important;
  color: #64748B !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.checkout-step-node.active .checkout-step-circle,
.checkout-steps .step.active .step-circle {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%) !important;
  border-color: #4F46E5 !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35) !important;
  transform: translateY(-2px) !important;
}

.checkout-step-node.completed .checkout-step-circle,
.checkout-steps .step.completed .step-circle {
  background: #10B981 !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.checkout-step-label, .checkout-steps .step span {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  transition: all 0.2s ease !important;
}

.checkout-step-node.active .checkout-step-label,
.checkout-steps .step.active span {
  color: #0F172A !important;
}

/* 2. CART MAIN & ITEMS */
.cart-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 2.5rem !important;
  align-items: start !important;
}

.btn-continue-shopping {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #4F46E5 !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  text-decoration: none !important;
  margin-bottom: 1.25rem !important;
  transition: all 0.2s ease !important;
}
.btn-continue-shopping:hover {
  transform: translateX(-4px) !important;
  color: #4338CA !important;
}

.cart-main-heading {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.02em !important;
}

.cart-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
}

.cart-item {
  display: grid !important;
  grid-template-columns: 100px minmax(0, 1fr) auto !important;
  gap: 1.5rem !important;
  align-items: center !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03) !important;
  transition: all 0.25s ease !important;
}

.cart-item:hover {
  border-color: #CBD5E1 !important;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08) !important;
}

.cart-item-img-link {
  width: 100px !important;
  height: 100px !important;
  border-radius: 14px !important;
  background: #F8FAFC !important;
  border: 1px solid #F1F5F9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.cart-item-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0.5rem !important;
}

.cart-item-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
}

.cart-item-details .item-cat {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #4F46E5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.cart-item-name {
  margin: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.cart-item-name a {
  color: #0F172A !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.cart-item-name a:hover {
  color: #4F46E5 !important;
}

.cart-item-details .item-price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0.15rem 0 !important;
}

.cart-item-details .item-stock {
  color: #10B981 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.cart-item-details .item-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-top: 0.75rem !important;
  flex-wrap: wrap !important;
}

/* HIGH-VISIBILITY QUANTITY STEPPER */
.qty-stepper {
  display: inline-flex !important;
  align-items: center !important;
  background: #F1F5F9 !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  padding: 2px !important;
  overflow: hidden !important;
}

.qty-stepper .qty-btn {
  width: 34px !important;
  height: 34px !important;
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 10px !important;
  color: #0F172A !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.15s ease !important;
}

.qty-stepper .qty-btn:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}

.qty-stepper .qty-input {
  width: 42px !important;
  height: 34px !important;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  outline: none !important;
}

.cart-action-btn {
  background: transparent !important;
  border: none !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0.4rem 0.6rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.cart-action-remove {
  color: #EF4444 !important;
}
.cart-action-remove:hover {
  background: #FEF2F2 !important;
  text-decoration: none !important;
}

.cart-action-save {
  color: #4F46E5 !important;
}
.cart-action-save:hover {
  background: #EEF2FF !important;
  text-decoration: none !important;
}

.cart-item-total {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-align: right !important;
}

.cart-footer {
  text-align: right !important;
  margin-top: 2rem !important;
  font-size: 1.15rem !important;
  color: #64748B !important;
  font-weight: 600 !important;
}
.cart-footer strong {
  color: #0F172A !important;
  font-size: 1.4rem !important;
  font-family: 'Outfit', sans-serif !important;
}

/* 3. ORDER SUMMARY CARD (BeliBeli Style) */
.cart-summary, .order-summary-sticky {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.cart-summary-heading {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 1.5rem 0 !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid #F1F5F9 !important;
  letter-spacing: -0.01em !important;
}

.free-shipping-tracker {
  background: #F0FDF4 !important;
  border: 1.5px solid #DCFCE7 !important;
  border-radius: 16px !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

.free-shipping-msg {
  font-size: 0.88rem !important;
  color: #166534 !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.free-shipping-msg svg {
  stroke: #16A34A !important;
  flex-shrink: 0 !important;
}

.free-shipping-progress-bg {
  height: 8px !important;
  background: #DCFCE7 !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
  margin-top: 0.75rem !important;
}

.free-shipping-progress-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%) !important;
  border-radius: 9999px !important;
  transition: width 0.4s ease !important;
}

.coupon-section {
  display: flex !important;
  gap: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}

.coupon-input, #coupon_code, #coupon-input {
  flex: 1 !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.92rem !important;
  color: #0F172A !important;
  outline: none !important;
  font-family: inherit !important;
  transition: all 0.2s ease !important;
}

.coupon-input:focus, #coupon_code:focus, #coupon-input:focus {
  background: #FFFFFF !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
}

#apply-coupon-btn, .coupon-section button {
  background: #FFFFFF !important;
  border: 1.5px solid #4F46E5 !important;
  color: #4F46E5 !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

#apply-coupon-btn:hover, .coupon-section button:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}

.summary-breakdown {
  border-top: 1px solid #F1F5F9 !important;
  padding-top: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

.summary-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.85rem !important;
  font-size: 0.95rem !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.summary-row span:last-child {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  color: #0F172A !important;
}

.summary-row--discount span:last-child,
.summary-free {
  color: #10B981 !important;
  font-weight: 800 !important;
}

.summary-row--total {
  border-top: 2px dashed #E2E8F0 !important;
  padding-top: 1.25rem !important;
  margin-top: 1.25rem !important;
}

.summary-row--total span {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

.cart-checkout-btn, .place-order-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  padding: 1.05rem 1.5rem !important;
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 14px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  font-family: 'Outfit', sans-serif !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.28) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cart-checkout-btn:hover, .place-order-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.38) !important;
  color: #FFFFFF !important;
}

.cart-trust-badges {
  display: flex !important;
  justify-content: space-around !important;
  border-top: 1px solid #F1F5F9 !important;
  padding-top: 1.25rem !important;
  margin-top: 1.5rem !important;
}

.cart-trust-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.35rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
}

.cart-trust-item svg {
  color: #4F46E5 !important;
}

/* 4. CHECKOUT STEP PANELS (BeliBeli Style) */
.checkout-step-panel {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 2.25rem !important;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.04) !important;
}

.step-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 1.5rem !important;
}

.address-card, .delivery-method-card, .payment-method-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 1.25rem !important;
  transition: all 0.2s ease !important;
}

.address-card:hover, .delivery-method-card:hover, .payment-method-card:hover {
  border-color: #CBD5E1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06) !important;
}

.address-card:has(input[type="radio"]:checked),
.delivery-method-card:has(input[type="radio"]:checked),
.payment-method-card:has(input[type="radio"]:checked) {
  border-color: #4F46E5 !important;
  background: #F5F3FF !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1) !important;
}

.checkout-step-panel .form-control,
.checkout-step-panel input[type="text"],
.checkout-step-panel input[type="password"],
.checkout-step-panel textarea {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.95rem !important;
  color: #0F172A !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.checkout-step-panel .form-control:focus,
.checkout-step-panel input[type="text"]:focus,
.checkout-step-panel input[type="password"]:focus,
.checkout-step-panel textarea:focus {
  background: #FFFFFF !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
}

/* Dark Theme Overrides for Cart & Checkout */
[data-theme="dark"] .checkout-steps-tracker,
[data-theme="dark"] .checkout-steps-panel,
[data-theme="dark"] .cart-item,
[data-theme="dark"] .cart-summary,
[data-theme="dark"] .order-summary-sticky,
[data-theme="dark"] .checkout-step-panel,
[data-theme="dark"] .address-card,
[data-theme="dark"] .delivery-method-card,
[data-theme="dark"] .payment-method-card {
  background: #1E293B !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-main-heading,
[data-theme="dark"] .cart-item-name a,
[data-theme="dark"] .cart-item-details .item-price,
[data-theme="dark"] .cart-item-total,
[data-theme="dark"] .cart-footer strong,
[data-theme="dark"] .cart-summary-heading,
[data-theme="dark"] .step-title,
[data-theme="dark"] .summary-row span:last-child,
[data-theme="dark"] .summary-row--total span {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-item-img-link {
  background: #0F172A !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .qty-stepper {
  background: #0F172A !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .qty-stepper .qty-btn {
  background: #1E293B !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .qty-stepper .qty-input {
  color: #F8FAFC !important;
}

[data-theme="dark"] .coupon-input,
[data-theme="dark"] #coupon_code,
[data-theme="dark"] #coupon-input,
[data-theme="dark"] .checkout-step-panel .form-control,
[data-theme="dark"] .checkout-step-panel input[type="text"],
[data-theme="dark"] .checkout-step-panel input[type="password"],
[data-theme="dark"] .checkout-step-panel textarea {
  background: #0F172A !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .address-card:has(input[type="radio"]:checked),
[data-theme="dark"] .delivery-method-card:has(input[type="radio"]:checked),
[data-theme="dark"] .payment-method-card:has(input[type="radio"]:checked) {
  background: #2E1065 !important;
  border-color: #818CF8 !important;
}

/* ==========================================================================
   11. BELIBELI HIGH-CONTRAST ACCOUNT & NOTIFICATION DROPDOWNS
   ========================================================================== */

/* Account Button Trigger */
.nav-account-wrap {
  position: relative !important;
}

.nav-account-btn {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 14px !important;
  padding: 0.4rem 0.85rem !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.nav-account-btn:hover,
.nav-account-btn[aria-expanded="true"] {
  background: #FFFFFF !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15) !important;
  transform: translateY(-1px) !important;
}

.nav-avatar {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  font-family: 'Outfit', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.nav-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.nav-account-text {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

.nav-greeting {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #64748B !important;
  letter-spacing: 0.02em !important;
}

.nav-account-label {
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  font-family: 'Outfit', sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
}

/* User Account Dropdown (Solid High-Contrast Card) */
.nav-dropdown {
  position: absolute !important;
  top: calc(100% + 0.65rem) !important;
  right: 0 !important;
  width: 290px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 0.75rem 0.5rem !important;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.04) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) scale(0.97) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 9999 !important;
  pointer-events: none !important;
}

.nav-dropdown.dropdown-open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

/* Dropdown Header Box */
.dropdown-header {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 0.85rem 1rem !important;
  background: #F8FAFC !important;
  border: 1px solid #F1F5F9 !important;
  border-radius: 14px !important;
  margin: 0.2rem 0.35rem 0.5rem 0.35rem !important;
}

.dropdown-avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  font-family: 'Outfit', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.dropdown-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.dropdown-avatar span {
  color: #FFFFFF !important;
}

.dropdown-header > div:last-child {
  min-width: 0 !important;
  flex: 1 !important;
}

.dropdown-name {
  margin: 0 0 0.15rem 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: -0.01em !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
}

.dropdown-email {
  margin: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #64748B !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* Dropdown Dividers */
.dropdown-divider {
  height: 1px !important;
  background: #F1F5F9 !important;
  margin: 0.4rem 0.5rem !important;
}

/* Dropdown Menu Items */
.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 0.75rem 1rem !important;
  margin: 0.15rem 0.35rem !important;
  border-radius: 12px !important;
  color: #1E293B !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dropdown-item svg {
  color: #4F46E5 !important;
  stroke: #4F46E5 !important;
  stroke-width: 2.2 !important;
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.2s ease !important;
}

.dropdown-item:hover {
  background: #EEF2FF !important;
  color: #4F46E5 !important;
  transform: translateX(3px) !important;
}

.dropdown-item:hover svg {
  transform: scale(1.1) !important;
}

.dropdown-item--admin {
  color: #7C3AED !important;
}
.dropdown-item--admin svg {
  color: #7C3AED !important;
  stroke: #7C3AED !important;
}
.dropdown-item--admin:hover {
  background: #F5F3FF !important;
  color: #6D28D9 !important;
}

.dropdown-item--danger {
  color: #EF4444 !important;
}
.dropdown-item--danger svg {
  color: #EF4444 !important;
  stroke: #EF4444 !important;
}
.dropdown-item--danger:hover {
  background: #FEF2F2 !important;
  color: #DC2626 !important;
}

.dropdown-badge {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 0.15rem 0.55rem !important;
  border-radius: 9999px !important;
  margin-left: auto !important;
}

/* Notification Dropdown Container & Elements (Solid High-Contrast Card) */
.nav-notif-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.notif-dropdown {
  position: absolute !important;
  top: calc(100% + 0.65rem) !important;
  right: -10px !important;
  width: 380px !important;
  max-width: 90vw !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.04) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
  animation: slideDownMenu 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.notif-dropdown-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 1.25rem !important;
  border-bottom: 1px solid #F1F5F9 !important;
  background: #F8FAFC !important;
}

.notif-header-title {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.notif-header-title svg {
  color: #4F46E5 !important;
}

.notif-header-title h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 !important;
}

.notif-badge-pill {
  background: #EEF2FF !important;
  color: #4F46E5 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 0.15rem 0.55rem !important;
  border-radius: 9999px !important;
  letter-spacing: 0.02em !important;
}

.notif-mark-read {
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #4F46E5 !important;
  padding: 0.3rem 0.6rem !important;
  border-radius: 8px !important;
  transition: all 0.15s ease !important;
}

.notif-mark-read:hover {
  background: #EEF2FF !important;
  color: #4338CA !important;
  text-decoration: none !important;
}

.notif-list {
  max-height: 340px !important;
  overflow-y: auto !important;
}

.notif-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.85rem !important;
  padding: 0.95rem 1.25rem !important;
  border-bottom: 1px solid #F1F5F9 !important;
  text-decoration: none !important;
  color: #1E293B !important;
  transition: all 0.15s ease !important;
  position: relative !important;
}

.notif-item:hover {
  background: #F8FAFC !important;
}

.notif-item--unread {
  background: #F5F3FF !important;
}

.notif-item--unread:hover {
  background: #EEF2FF !important;
}

.notif-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: #EEF2FF !important;
  color: #4F46E5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.15) !important;
}

.notif-icon--order {
  background: #ECFDF5 !important;
  color: #059669 !important;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.15) !important;
}

.notif-icon--promo {
  background: #FFFBEB !important;
  color: #D97706 !important;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.15) !important;
}

.notif-content {
  flex: 1 !important;
  min-width: 0 !important;
}

.notif-msg {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  margin: 0 0 0.25rem 0 !important;
  line-height: 1.35 !important;
  word-break: break-word !important;
}

.notif-time {
  font-size: 0.75rem !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.notif-unread-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #4F46E5 !important;
  flex-shrink: 0 !important;
  margin-top: 0.4rem !important;
  box-shadow: 0 0 0 2px #FFFFFF !important;
}

.notif-empty {
  padding: 2.5rem 1.5rem !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.notif-empty svg {
  color: #94A3B8 !important;
  margin-bottom: 0.35rem !important;
}

.notif-empty p {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  margin: 0 !important;
}

.notif-empty span {
  font-size: 0.8rem !important;
  color: #64748B !important;
}

.notif-dropdown-footer {
  padding: 0.85rem 1.25rem !important;
  text-align: center !important;
  background: #F8FAFC !important;
  border-top: 1px solid #F1F5F9 !important;
}

.notif-dropdown-footer a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #4F46E5 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.notif-dropdown-footer a:hover {
  gap: 0.6rem !important;
  color: #4338CA !important;
}

/* ==========================================================================
   DARK MODE ADAPTATIONS FOR DROPDOWNS
   ========================================================================== */
[data-theme="dark"] .nav-account-btn {
  background: #1E293B !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .nav-greeting {
  color: #94A3B8 !important;
}

[data-theme="dark"] .nav-account-label {
  color: #F8FAFC !important;
}

[data-theme="dark"] .nav-dropdown,
[data-theme="dark"] .notif-dropdown {
  background: #0F172A !important;
  border-color: #334155 !important;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px #334155 !important;
}

[data-theme="dark"] .dropdown-header,
[data-theme="dark"] .notif-dropdown-header,
[data-theme="dark"] .notif-dropdown-footer {
  background: #1E293B !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .dropdown-name,
[data-theme="dark"] .notif-dropdown-header h4,
[data-theme="dark"] .notif-msg {
  color: #F8FAFC !important;
}

[data-theme="dark"] .dropdown-email,
[data-theme="dark"] .notif-time {
  color: #94A3B8 !important;
}

[data-theme="dark"] .dropdown-divider,
[data-theme="dark"] .notif-item {
  background: #334155 !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .dropdown-item {
  color: #F1F5F9 !important;
}

[data-theme="dark"] .dropdown-item svg {
  color: #818CF8 !important;
  stroke: #818CF8 !important;
}

[data-theme="dark"] .dropdown-item:hover {
  background: #1E293B !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .dropdown-item--admin {
  color: #A78BFA !important;
}
[data-theme="dark"] .dropdown-item--admin svg {
  color: #A78BFA !important;
  stroke: #A78BFA !important;
}
[data-theme="dark"] .dropdown-item--admin:hover {
  background: #2E1065 !important;
  color: #DDD6FE !important;
}

[data-theme="dark"] .dropdown-item--danger {
  color: #F87171 !important;
}
[data-theme="dark"] .dropdown-item--danger svg {
  color: #F87171 !important;
  stroke: #F87171 !important;
}
[data-theme="dark"] .dropdown-item--danger:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #FCA5A5 !important;
}

[data-theme="dark"] .notif-item:hover {
  background: #1E293B !important;
}

[data-theme="dark"] .notif-item--unread {
  background: rgba(79, 70, 229, 0.15) !important;
}

[data-theme="dark"] .notif-item--unread:hover {
  background: rgba(79, 70, 229, 0.25) !important;
}

[data-theme="dark"] .notif-badge-pill {
  background: #312E81 !important;
  color: #C7D2FE !important;
}

[data-theme="dark"] .notif-mark-read {
  color: #818CF8 !important;
}

[data-theme="dark"] .notif-mark-read:hover {
  background: #1E293B !important;
  color: #A5B4FC !important;
}

[data-theme="dark"] .notif-empty p {
  color: #F8FAFC !important;
}

[data-theme="dark"] .notif-empty span {
  color: #94A3B8 !important;
}

[data-theme="dark"] .notif-dropdown-footer a {
  color: #818CF8 !important;
}

[data-theme="dark"] .notif-dropdown-footer a:hover {
  color: #A5B4FC !important;
}

/* ==========================================================================
   12. BELIBELI SHOP & CATALOG DESIGN ENHANCEMENTS
   ========================================================================== */

/* 1. Filter Sidebar & Sections (High Contrast Card) */
.filter-sidebar {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  color: #0F172A !important;
}

.filter-section {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 1.75rem !important;
  box-shadow: none !important;
}

.filter-section h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  padding: 0 !important;
}

.filter-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
}

.filter-list li {
  margin: 0 !important;
  padding: 0 !important;
}

.filter-list label,
.filter-section label {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.filter-list label:hover,
.filter-section label:hover {
  color: #4F46E5 !important;
}

.filter-list input[type="radio"],
.filter-list input[type="checkbox"],
.filter-section input[type="radio"],
.filter-section input[type="checkbox"] {
  accent-color: #4F46E5 !important;
  width: 17px !important;
  height: 17px !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.filter-section input[type="range"],
.range-slider {
  width: 100% !important;
  accent-color: #4F46E5 !important;
  cursor: pointer !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: #E2E8F0 !important;
  outline: none !important;
}

.price-labels {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  margin-top: 0.6rem !important;
  font-family: 'Outfit', sans-serif !important;
}

/* 2. Shop Toolbar & Controls */
.shop-toolbar {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 1.25rem 1.75rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.75rem !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02) !important;
  color: #0F172A !important;
}

.results-count {
  font-size: 0.95rem !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.results-count strong {
  color: #0F172A !important;
  font-weight: 800 !important;
}

.sort-select,
select.sort-select,
.shop-toolbar select {
  background-color: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  padding: 0.55rem 1.2rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: #0F172A !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  min-height: 42px !important;
}

.sort-select:focus,
select.sort-select:focus {
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15) !important;
  background-color: #FFFFFF !important;
}

/* Active Filters */
.active-filters-container .filter-chip {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  padding: 0.45rem 1rem !important;
  border-radius: 100px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
  transition: all 0.2s ease !important;
}

.active-filters-container .filter-chip a {
  color: #94A3B8 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  transition: color 0.2s ease !important;
}

.active-filters-container .filter-chip a:hover {
  color: #EF4444 !important;
}

/* 3. Product Cards in Shop */
.belibeli-products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 2rem !important;
}

/* 4. Dark Mode Shop Adaptations */
[data-theme="dark"] .filter-sidebar {
  background: #0F172A !important;
  border-color: #334155 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .sidebar-header {
  border-color: #334155 !important;
}

[data-theme="dark"] .sidebar-header h3 {
  color: #F8FAFC !important;
}

[data-theme="dark"] .filter-section {
  background: transparent !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .filter-section h4 {
  color: #F8FAFC !important;
}

[data-theme="dark"] .filter-list label,
[data-theme="dark"] .filter-section label {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .filter-list label:hover,
[data-theme="dark"] .filter-section label:hover {
  color: #818CF8 !important;
}

[data-theme="dark"] .price-labels {
  color: #F8FAFC !important;
}

[data-theme="dark"] .filter-section input[type="range"],
[data-theme="dark"] .range-slider {
  background: #334155 !important;
}

[data-theme="dark"] .shop-toolbar {
  background: #0F172A !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .results-count {
  color: #94A3B8 !important;
}

[data-theme="dark"] .results-count strong {
  color: #F8FAFC !important;
}

[data-theme="dark"] .sort-select,
[data-theme="dark"] select.sort-select,
[data-theme="dark"] .shop-toolbar select {
  background-color: #1E293B !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .sort-select:focus,
[data-theme="dark"] select.sort-select:focus {
  border-color: #818CF8 !important;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2) !important;
  background-color: #0F172A !important;
}

[data-theme="dark"] .active-filters-container .filter-chip {
  background: #1E293B !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .belibeli-product-card {
  background: #0F172A !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .card-media {
  background: #1E293B !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .card-info .card-name a {
  color: #F8FAFC !important;
}

[data-theme="dark"] .card-info .card-name a:hover {
  color: #818CF8 !important;
}

[data-theme="dark"] .card-pricing .price-current {
  color: #F8FAFC !important;
}

[data-theme="dark"] .btn-add-cart-belibeli {
  background: #1E293B !important;
  color: #F8FAFC !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .btn-add-cart-belibeli:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
  border-color: #4F46E5 !important;
}

[data-theme="dark"] .pagination a.btn-outline {
  background: #1E293B !important;
  border-color: #334155 !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .pagination a.btn-outline:hover {
  border-color: #818CF8 !important;
  color: #818CF8 !important;
}

/* ==========================================================================
   MASTER BELIBELI SHOPPING CART & CHECKOUT REFINEMENT
   ========================================================================== */
.cart-page-wrapper {
  max-width: 1280px !important;
  margin: 2rem auto 4rem !important;
}

/* Stepper Tracker */
.cart-stepper-tracker {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 1.25rem 2.25rem !important;
  margin-bottom: 2.25rem !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.cart-step-node {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
}

.cart-step-num {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: #F1F5F9 !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #64748B !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  transition: all 0.3s ease !important;
}

.cart-step-node.active .cart-step-num {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%) !important;
  border-color: #4F46E5 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35) !important;
  transform: translateY(-1px) !important;
}

.cart-step-title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
}

.cart-step-subtitle {
  font-size: 0.78rem !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.cart-step-line {
  flex: 1 !important;
  height: 2px !important;
  background: #E2E8F0 !important;
  margin: 0 1.5rem !important;
}

/* Cart Items Card & Rows */
.cart-items-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

.cart-items-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 !important;
}

.cart-item-row {
  display: grid !important;
  grid-template-columns: 110px 1fr auto !important;
  gap: 1.5rem !important;
  align-items: center !important;
  padding: 1.25rem !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  transition: all 0.25s ease !important;
}

.cart-item-row:hover {
  border-color: #CBD5E1 !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05) !important;
}

.cart-item-thumb {
  width: 110px !important;
  height: 110px !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 0.5rem !important;
}

.cart-item-thumb img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.cart-item-cat-tag {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #4F46E5 !important;
}

.cart-item-title a {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.cart-item-title a:hover {
  color: #4F46E5 !important;
}

.cart-item-unit-price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

.cart-stepper-control {
  display: inline-flex !important;
  align-items: center !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  padding: 2px !important;
}

.cart-stepper-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  border: none !important;
  background: #F1F5F9 !important;
  color: #0F172A !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.15s ease !important;
}

.cart-stepper-btn:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}

.cart-stepper-input {
  width: 42px !important;
  height: 32px !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  outline: none !important;
}

.cart-item-btn-action {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: transparent !important;
  border: none !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #4F46E5 !important;
  cursor: pointer !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.cart-item-btn-action:hover {
  background: rgba(79, 70, 229, 0.08) !important;
}

.cart-item-btn-remove {
  color: #EF4444 !important;
}

.cart-item-btn-remove:hover {
  background: rgba(239, 68, 68, 0.08) !important;
}

.cart-item-line-total .line-total-amount {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

/* Order Summary */
.cart-summary-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
}

.cart-summary-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 0 1.5rem 0 !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid #F1F5F9 !important;
}

.cart-proceed-checkout-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  width: 100% !important;
  background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%) !important;
  color: #FFFFFF !important;
  padding: 1.05rem 1.5rem !important;
  border-radius: 16px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

.cart-proceed-checkout-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4) !important;
}

/* ==========================================================================
   CART DARK THEME OVERRIDES
   ========================================================================== */
[data-theme="dark"] .cart-stepper-tracker {
  background: #131E2F !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .cart-step-num {
  background: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #94A3B8 !important;
}

[data-theme="dark"] .cart-step-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-step-line {
  background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .cart-items-card {
  background: #131E2F !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .cart-items-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-item-row {
  background: #0B1320 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .cart-item-thumb {
  background: #131E2F !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .cart-item-cat-tag {
  color: #818CF8 !important;
}

[data-theme="dark"] .cart-item-title a {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-item-title a:hover {
  color: #818CF8 !important;
}

[data-theme="dark"] .cart-item-unit-price {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-stepper-control {
  background: #131E2F !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .cart-stepper-btn {
  background: #1E293B !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-stepper-btn:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .cart-stepper-input {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-item-btn-action {
  color: #818CF8 !important;
}

[data-theme="dark"] .cart-item-line-total .line-total-amount {
  color: #F8FAFC !important;
}

[data-theme="dark"] .subtotal-amount-display {
  color: #F8FAFC !important;
}

[data-theme="dark"] .cart-summary-card {
  background: #131E2F !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .cart-summary-title {
  color: #F8FAFC !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .line-value {
  color: #F8FAFC !important;
}

[data-theme="dark"] .total-line .total-title {
  color: #F8FAFC !important;
}

[data-theme="dark"] .total-line .total-price {
  color: #818CF8 !important;
}

[data-theme="dark"] .coupon-text-input {
  background: #0B1320 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .coupon-apply-btn {
  background: #1E293B !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #F8FAFC !important;
}

[data-theme="dark"] .coupon-apply-btn:hover {
  background: #4F46E5 !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .summary-divider-dash {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   PREMIUM HEADER 2024/2025 REDESIGN
   ========================================================================== */

/* Promo Top Bar */
.promo-top-bar {
    background: linear-gradient(90deg, #1E1B4B 0%, #4338CA 100%);
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-badge {
    background: #FBBF24;
    color: #78350F;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.promo-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.promo-close:hover {
    color: #FFFFFF;
}

/* Main Premium Header */
.premium-glass-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-glass-header.is-scrolled {
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.premium-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo */
.premium-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon-wrapper {
    background: #EEF2FF;
    color: #4F46E5;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
}

.logo-trust { color: #0F172A; }
.logo-mall { color: #4F46E5; }

/* Enhanced Search Bar */
.premium-search-container {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
}

.premium-search-wrap {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 9999px;
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
    transition: all 0.25s ease;
}

.premium-search-wrap:focus-within {
    background: #FFFFFF;
    border-color: #4F46E5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.search-cat-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.premium-cat-select {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0.5rem 2rem 0.5rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    outline: none;
}

.cat-select-icon {
    position: absolute;
    right: 0.5rem;
    color: #64748B;
    pointer-events: none;
}

.search-divider {
    width: 1px;
    height: 24px;
    background: #E2E8F0;
    margin: 0 0.5rem;
}

.premium-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
    color: #0F172A;
    outline: none;
}

.premium-search-input::placeholder {
    color: #94A3B8;
}

.premium-shortcut-badge {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #64748B;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: monospace;
    margin-right: 0.75rem;
}

.premium-search-btn {
    background: #4F46E5;
    color: #FFFFFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-search-btn:hover {
    background: #4338CA;
    transform: scale(1.05);
}

/* Action Icons */
.premium-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-icon-btn, .premium-account-btn, .premium-cart-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.premium-icon-btn:hover, .premium-account-btn:hover, .premium-cart-btn:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.premium-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    border: 2px solid #FFFFFF;
}

.premium-account-btn {
    gap: 0.75rem;
    padding-left: 0.25rem;
}

.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #475569;
    overflow: hidden;
}

.nav-account-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-greeting {
    font-size: 0.75rem;
    color: #64748B;
}

.nav-account-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.premium-cart-btn {
    gap: 0.75rem;
}

.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #EEF2FF;
    color: #4F46E5;
    border-radius: 12px;
}

.cart-icon-wrap .premium-badge {
    top: -4px;
    right: -4px;
}

.cart-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

/* Category Mega-Strip */
.premium-cat-strip {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 2rem;
    overflow-x: auto;
    white-space: nowrap;
}

.cat-strip-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.75rem 0;
}

.premium-cat-link {
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.2s;
}

.premium-cat-link:hover {
    color: #4F46E5;
}

.premium-cat-link::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #4F46E5;
    transition: width 0.3s ease;
}

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

.premium-cat-link.active {
    color: #4F46E5;
}

.cat-deals-link {
    margin-left: auto;
    color: #D97706 !important;
    display: flex;
    align-items: center;
}

.cat-deals-link::after {
    background: #D97706;
}

/* Dark Theme Overrides for Premium Header */
[data-theme="dark"] .promo-top-bar {
    background: linear-gradient(90deg, #1E1B4B 0%, #312E81 100%);
}
[data-theme="dark"] .premium-glass-header {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .premium-glass-header.is-scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .logo-trust, 
[data-theme="dark"] .cart-label, 
[data-theme="dark"] .nav-account-label {
    color: #F8FAFC;
}
[data-theme="dark"] .premium-search-wrap {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .premium-search-wrap:focus-within {
    background: #0F172A;
    border-color: #6366F1;
}
[data-theme="dark"] .premium-cat-select {
    color: #CBD5E1;
}
[data-theme="dark"] .search-divider {
    background: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .premium-search-input {
    color: #F8FAFC;
}
[data-theme="dark"] .premium-shortcut-badge {
    background: #0F172A;
    border-color: rgba(255, 255, 255, 0.1);
    color: #94A3B8;
}
[data-theme="dark"] .premium-icon-btn, 
[data-theme="dark"] .premium-account-btn, 
[data-theme="dark"] .premium-cart-btn {
    color: #CBD5E1;
}
[data-theme="dark"] .premium-icon-btn:hover, 
[data-theme="dark"] .premium-account-btn:hover, 
[data-theme="dark"] .premium-cart-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}
[data-theme="dark"] .cart-icon-wrap {
    background: rgba(79, 70, 229, 0.15);
    color: #818CF8;
}
[data-theme="dark"] .premium-badge {
    border-color: #0F172A;
}
[data-theme="dark"] .premium-cat-strip {
    background: #0F172A;
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .premium-cat-link {
    color: #CBD5E1;
}
[data-theme="dark"] .premium-cat-link:hover, 
[data-theme="dark"] .premium-cat-link.active {
    color: #818CF8;
}
[data-theme="dark"] .cat-deals-link {
    color: #FBBF24 !important;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .premium-navbar-inner {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .premium-search-container {
        display: none; /* Hide on mobile, handled by bottom nav usually */
    }

    .hidden-mobile {
        display: none;
    }
    
    .premium-logo {
        font-size: 1.25rem;
    }
    
    .logo-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .cat-deals-link {
        margin-left: 0;
    }
}
