/* =====================================================
   QUALITAIL - Premium Animated Theme CSS
   Dark Hero + Light Body Design
   ===================================================== */

:root {
  /* Core Brand */
  --primary:       #0d9488;  /* Teal-600 */
  --primary-hover: #0f766e;  /* Teal-700 */
  --primary-color: #0d9488;
  --accent:        #d97706;  /* Amber-700 */
  --accent-glow:   rgba(217, 119, 6, 0.4);

  /* Gradient Palette */
  --grad-start:    #0d9488; /* Teal */
  --grad-mid:      #059669; /* Emerald */
  --grad-end:      #d97706; /* Amber/Gold */
  --grad-warm:     #f59e0b; /* Amber */

  /* Light Body */
  --dark-bg:       #f8fafc;
  --dark-card:     #ffffff;
  --dark-border:   rgba(15, 23, 42, 0.08);
  --text-muted:    #64748b;

  /* Hero Dark */
  --hero-bg-start: #042f2e; /* Teal-950 */
  --hero-bg-mid:   #064e3b; /* Emerald-900 */
  --hero-bg-end:   #0c1a3a; /* Deep Blue */

  /* Admin */
  --sidebar-bg:    #0f172a;
  --success:       #16a34a;
  --danger:        #dc2626;
}

/* ---- Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body.public-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--dark-bg);
  color: #334155;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* ---- Typography ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #0f172a;
}
.text-highlight { color: var(--grad-start); }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-mid) 40%, var(--grad-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Navbar --------------------------------------- */
.public-navbar {
  background: #ffffff !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end)) 1;
  padding: 10px 0;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}
/* Keep white navbar even on dark hero — no more transparency */
.public-navbar.navbar-hero-dark {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}
.public-navbar.navbar-hero-dark .nav-link {
  color: #475569 !important;
}
.public-navbar.navbar-hero-dark .nav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.04);
}
.public-navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.public-navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569 !important;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.public-navbar .nav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.04);
}
.navbar-toggler {
  border: 2px solid rgba(15, 23, 42, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  z-index: 1051;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}
.navbar-toggler:hover {
  border-color: rgba(15, 23, 42, 0.35);
  background: rgba(15, 23, 42, 0.04);
}
.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  filter: none;
}

@media (max-width: 991.98px) {
  .public-navbar .navbar-collapse {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 1050;
  }
  .public-navbar.navbar-hero-dark .navbar-collapse {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
  }
  .public-navbar .nav-link {
    padding: 10px 14px !important;
    border-radius: 8px;
  }
  .public-navbar .nav-link:hover {
    background: rgba(99, 102, 241, 0.06);
  }
  .public-navbar .nav-item .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
    padding: 10px !important;
  }
  .public-navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    background: #f8fafc;
    border-radius: 8px;
    padding: 4px;
    margin-top: 4px;
  }
}

/* Dropdown */
.dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.dropdown-item {
  color: #334155;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.dropdown-item:hover { background: #f1f5f9; color: #0f172a; }
.dropdown-divider { border-color: rgba(15, 23, 42, 0.06); }

/* ---- Buttons -------------------------------------- */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
  transition: all 0.25s ease;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-hover), #0891b2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
  color: #ffffff !important;
}
.btn-outline-light {
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #334155;
  background: rgba(15, 23, 42, 0.02);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s;
}
.btn-outline-light:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.3);
}
.btn-secondary {
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Shimmer CTA Button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  box-shadow: 0 4px 25px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}
.btn-shimmer:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(99, 102, 241, 0.45);
  color: #ffffff !important;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 150%; }
}

.btn-outline-hero {
  border: 1px solid rgba(255,255,255,0.25);
  color: #e2e8f0 !important;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

/* ---- Cards ---------------------------------------- */
.card, .floating-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  color: #334155;
  transition: transform 0.25s, box-shadow 0.25s;
}
/* Login/Register floating card — stronger shadow so it lifts off the page */
.floating-card {
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.10);
}
.card:hover, .floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.card-img-top {
  border-radius: 14px 14px 0 0;
  object-fit: cover;
}
/* Text highlight links (login / register pages) */
.text-highlight:hover {
  color: var(--grad-mid);
  text-decoration: underline !important;
}

/* ---- Tables --------------------------------------- */
.table {
  color: #334155;
  border-color: rgba(15, 23, 42, 0.06);
}
.table thead {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table tbody tr:hover {
  background: #f1f5f9;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #f8fafc;
  color: #334155;
}

/* ---- Forms ---------------------------------------- */
.form-control, .form-select {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #334155;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  background: #ffffff;
  border-color: var(--primary);
  color: #0f172a;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.form-control::placeholder { color: #94a3b8; }
.form-label { color: #475569; font-weight: 500; font-size: 0.875rem; }

/* =====================================================
   PREMIUM HERO SECTION (Dark Gradient)
   ===================================================== */
.hero-premium {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 40%, var(--hero-bg-end) 100%);
  max-width: 100vw;
}

/* Animated gradient mesh overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 60% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% {
    background:
      radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
      radial-gradient(ellipse 60% 60% at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 60% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  }
  33% {
    background:
      radial-gradient(ellipse 70% 60% at 30% 60%, rgba(6, 182, 212, 0.18) 0%, transparent 70%),
      radial-gradient(ellipse 80% 40% at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 60% 70% at 40% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  }
  66% {
    background:
      radial-gradient(ellipse 60% 70% at 50% 50%, rgba(139, 92, 246, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 70% 50% at 20% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
      radial-gradient(ellipse 80% 40% at 80% 40%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  }
  100% {
    background:
      radial-gradient(ellipse 80% 50% at 70% 30%, rgba(99, 102, 241, 0.16) 0%, transparent 70%),
      radial-gradient(ellipse 50% 70% at 30% 70%, rgba(6, 182, 212, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  }
}

/* Grid overlay on hero */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.4), transparent 70%);
  top: 10%; left: 5%;
  animation-duration: 10s;
}
.hero-orb-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(6,182,212,0.35), transparent 70%);
  top: 60%; right: 10%;
  animation-duration: 8s;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%);
  bottom: 15%; left: 40%;
  animation-duration: 12s;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 15px) scale(0.95); }
  75% { transform: translate(15px, 25px) scale(1.02); }
}

/* Hero Content */
.hero-premium .hero-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-premium .hero-badge-dark .badge-dot {
  width: 8px; height: 8px;
  background: var(--grad-start);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title-dark {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
  color: #f1f5f9;
  word-break: break-word;
}

.hero-description-dark {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

/* Typewriter animated text line — fixed height to prevent layout shift */
.typewriter-line {
  display: inline-block;
  min-height: 1.2em;
  word-break: break-word;
}

/* Typewriter Cursor */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--grad-start);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero Glassmorphic Card */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.4s ease, border-color 0.4s;
}
.hero-glass-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(99, 102, 241, 0.3);
}
.hero-glass-card .glass-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s;
}
.hero-glass-card .glass-feature:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}
.hero-glass-card .glass-feature .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.hero-glass-card .glass-feature .feature-title {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-glass-card .glass-feature .feature-desc {
  color: #64748b;
  font-size: 0.72rem;
}

/* Hero floating product images */
.hero-floating-products {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-float-product {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatProduct 6s ease-in-out infinite;
}
.hero-float-product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.hero-float-product:nth-child(1) {
  top: -18px;
  right: -8px;
  animation-delay: 0s;
  animation-duration: 7s;
  z-index: 5;
}
.hero-float-product:nth-child(2) {
  top: 38%;
  left: -20px;
  animation-delay: -2s;
  animation-duration: 6s;
  z-index: 5;
}
.hero-float-product:nth-child(3) {
  bottom: -15px;
  right: 25px;
  animation-delay: -4s;
  animation-duration: 8s;
  z-index: 5;
}
@keyframes floatProduct {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(5px) rotate(-2deg); }
  75% { transform: translateY(-8px) rotate(1deg); }
}

/* Promo banner strip below hero */
.promo-banner {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  color: #ffffff;
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.promo-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: shimmer 4s infinite;
}

/* Trust Badges (hero bottom) */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #64748b;
  font-size: 0.85rem;
}
.hero-trust .trust-stars {
  color: #fbbf24;
}
.hero-trust .trust-label {
  color: #cbd5e1;
  font-weight: 600;
}
.hero-trust .trust-divider {
  color: #475569;
  margin: 0 6px;
}

/* =====================================================
   STATS / METRICS SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 50%, var(--hero-bg-end) 100%);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(217,119,6,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.stat-card {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  color: #ffffff;
  transition: transform 0.3s;
}
.stat-icon-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.stat-icon-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.stat-icon-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.stat-icon-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
.stat-number .gradient-text {
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.stat-sublabel {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: 0.5rem;
}

/* =====================================================
   BRAND PARTNERS TICKER
   ===================================================== */
.brand-ticker-section {
  padding: 2.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  overflow: hidden;
}
.brand-ticker-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.brand-ticker-track {
  display: flex;
  width: max-content;
  animation: brandScroll 35s linear infinite;
}
.brand-ticker-track:hover {
  animation-play-state: paused;
}
.brand-ticker-item {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-ticker-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s, transform 0.3s;
}
.brand-ticker-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   SECTION STYLES (Light Body)
   ===================================================== */
.section-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  padding: 6px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(217,119,6,0.1));
  color: var(--grad-start);
}

/* Section background variations */
.section-bg-warm {
  background: linear-gradient(180deg, #fefce8 0%, #fffbeb 30%, #ffffff 100%);
  border-top: 1px solid rgba(217,119,6,0.06);
  border-bottom: 1px solid rgba(217,119,6,0.06);
}
.section-bg-teal {
  background: linear-gradient(180deg, #f0fdfa 0%, #f0fdf4 30%, #ffffff 100%);
  border-top: 1px solid rgba(13,148,136,0.06);
  border-bottom: 1px solid rgba(13,148,136,0.06);
}
.section-bg-mesh {
  background-color: #f8faff;
  background-image: 
    radial-gradient(at 20% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 10%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 10% 80%, rgba(244, 63, 94, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(234, 179, 8, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(139, 92, 246, 0.15) 0px, transparent 50%);
  background-size: cover;
  position: relative;
}

/* ---- Category Cards ------------------------------- */
.category-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #475569;
  display: block;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end), var(--grad-warm));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}
.category-card:hover::before {
  opacity: 1;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.1);
  color: var(--primary-hover);
}
.category-card .cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(6,182,212,0.1));
  color: var(--grad-start);
  transition: all 0.3s;
}
.category-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #ffffff;
  transform: scale(1.1);
}
.category-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}
.category-card .cat-name {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Category Cards (Image-based) ----------------- */
.category-card-v2 {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: block;
  position: relative;
}
.category-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.category-card-v2:hover::before {
  opacity: 1;
}
.category-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
}
.cat-img-wrap {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.cat-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.category-card-v2:hover .cat-img-wrap img {
  transform: scale(1.1);
}
.cat-info {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
}
.cat-info .cat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
  transition: color 0.3s;
}
.category-card-v2:hover .cat-info .cat-name {
  color: var(--primary);
}
.cat-info .cat-browse {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
}
.category-card-v2:hover .cat-info .cat-browse {
  color: var(--grad-end);
}
/* Category gradient tint backgrounds */
.cat-tint-1 .cat-img-wrap { background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%); } /* Pink — Baby */
.cat-tint-2 .cat-img-wrap { background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%); } /* Orange — Beverages */
.cat-tint-3 .cat-img-wrap { background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%); } /* Blue — Cleaning */
.cat-tint-4 .cat-img-wrap { background: linear-gradient(180deg, #fdf4ff 0%, #ffffff 100%); } /* Purple — Cosmetics */
.cat-tint-5 .cat-img-wrap { background: linear-gradient(180deg, #fefce8 0%, #ffffff 100%); } /* Yellow — Dairy */
.cat-tint-6 .cat-img-wrap { background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%); } /* Green — Frozen */
.cat-tint-7 .cat-img-wrap { background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%); } /* Lime — Fruits */
.cat-tint-8 .cat-img-wrap { background: linear-gradient(180deg, #fef3c7 0%, #ffffff 100%); } /* Amber — Grocery */

/* ---- Product Cards -------------------------------- */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: var(--primary);
}
.product-card .product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card .product-body {
  padding: 1.25rem;
}
.product-card .product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.product-card .product-brand {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.product-card .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.badge-stock {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.badge-in-stock { background: rgba(22,163,74,0.1); color: var(--success); }
.badge-out-stock { background: rgba(220,38,38,0.1); color: var(--danger); }

/* ---- Enhanced Product Cards ----------------------- */
.product-card-premium {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}
.product-card-premium:hover::before {
  opacity: 1;
}
.product-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1);
}
.product-card-premium .product-img-wrap {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.product-card-premium .product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card-premium:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-card-premium .product-body {
  padding: 1.25rem;
  border-top: 1px solid rgba(15,23,42,0.04);
}
.product-card-premium .product-body h6 {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.margin-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(5,150,105,0.12));
  color: #059669;
  position: absolute;
  top: 12px;
  right: 12px;
}
.btn-add-cart {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid));
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 10px;
  transition: all 0.25s;
}
.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
  color: #ffffff;
}

/* =====================================================
   ANIMATED WORKFLOW / TIMELINE
   ===================================================== */
.workflow-section {
  position: relative;
}
.workflow-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 2rem;
}

/* Connecting line behind steps */
.workflow-line {
  position: absolute;
  top: 52px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  z-index: 0;
}
.workflow-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 2px;
  transition: width 1.5s ease-out;
}
.workflow-line-fill.animate {
  width: 100%;
}

/* Step Card */
.workflow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.workflow-step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: #64748b;
  position: relative;
  transition: all 0.5s ease;
}
.workflow-step-circle.active {
  border-color: var(--grad-start);
  color: #ffffff;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
}
/* Ripple effect on active step */
.workflow-step-circle.active::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.3);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.workflow-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.workflow-step-desc {
  font-size: 0.8rem;
  color: #64748b;
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .workflow-timeline {
    flex-direction: column;
    gap: 2rem;
    padding-top: 0;
  }
  .workflow-line {
    display: none;
  }
  .workflow-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
  .workflow-step-circle {
    margin: 0;
    flex-shrink: 0;
  }
  .workflow-step-desc {
    max-width: none;
  }
}

/* =====================================================
   BENEFIT / FEATURE CARDS (Gradient Hover)
   ===================================================== */
.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.08);
}
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(5,150,105,0.08));
  color: var(--grad-start);
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid));
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.benefit-card:hover::after {
  opacity: 1;
}

/* =====================================================
   TESTIMONIALS / SOCIAL PROOF
   ===================================================== */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.35s;
  border-left: 4px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.08);
  border-left-color: var(--grad-start);
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.testimonial-card .quote-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
}
.avatar-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.avatar-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.avatar-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.testimonial-card .author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
}
.testimonial-card .author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-premium {
  background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 50%, var(--hero-bg-end) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}
.cta-premium .cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
}
.cta-premium h2 {
  color: #f1f5f9 !important;
}
.cta-premium p {
  color: #94a3b8;
}

/* =====================================================
   GLASSMORPHISM UTILITIES
   ===================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}
.glass-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* =====================================================
   ORDER STATUS BADGES
   ===================================================== */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-pending   { background: rgba(249,115,22,0.1); color: var(--accent); }
.status-confirmed { background: rgba(22,163,74,0.1); color: var(--success); }
.status-shipped   { background: rgba(14,165,233,0.1); color: var(--primary-hover); }
.status-delivered { background: rgba(22,163,74,0.15); color: #16a34a; }
.status-cancelled { background: rgba(220,38,38,0.1); color: var(--danger); }

/* ---- Admin Sidebar -------------------------------- */
.admin-body {
  background-color: #f8fafc;
  color: #334155;
  font-family: 'Inter', sans-serif;
}
#sidebar-wrapper { background-color: var(--sidebar-bg) !important; }
.sidebar-heading { color: white; }
.list-group-item.sidebar-link {
  background-color: transparent !important;
  color: #94a3b8 !important;
  border: none;
  border-radius: 8px;
  margin: 4px 12px;
  padding: 10px 15px;
  transition: all 0.2s;
}
.list-group-item.sidebar-link:hover,
.list-group-item.sidebar-link.active {
  background-color: rgba(255,255,255,0.05) !important;
  color: white !important;
}
.list-group-item.sidebar-link.active {
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  margin-left: 0;
  padding-left: 24px;
}

/* ---- Footer (Clean Light High-Contrast) ------------------------ */
.site-footer {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 0;
  color: #475569;
  border-top: 1px solid #e2e8f0;
}
.footer-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99, 102, 241, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-desc {
  color: #475569 !important;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-heading {
  color: #0f172a !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  color: #475569 !important;
  margin-bottom: 10px;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover {
  color: #4f46e5 !important;
  padding-left: 4px;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569 !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social-btn:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.footer-address strong {
  color: #0f172a;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid #e2e8f0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #64748b !important;
  margin: 0;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 6px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 16px rgba(34, 197, 94, 0.8); }
}

/* Footer overrides */
.site-footer h5, .site-footer h6 {
  color: #0f172a !important;
}
.site-footer p {
  color: #475569 !important;
}
.site-footer .text-muted {
  color: #64748b !important;
}

/* ---- Alerts / Flash messages ---------------------- */
.alert {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #334155;
}
.alert-success { border-color: rgba(22,163,74,0.3); background: rgba(22,163,74,0.05); color: #16a34a; }
.alert-danger  { border-color: rgba(220,38,38,0.3); background: rgba(220,38,38,0.05); color: #dc2626; }
.alert-warning { border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.05); color: #d97706; }

/* ---- General Utilities ------------------------------------ */
.bg-grid {
  background-image:
    linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Override Bootstrap muted contrast */
.text-muted {
  color: var(--text-muted) !important;
}
.text-light-50 {
  color: #64748b !important;
}
.text-white-50 {
  color: #475569 !important;
}

/* ---- Micro-Animations & Effects ---- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.1); }
  50% { box-shadow: 0 0 25px rgba(6, 182, 212, 0.25); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hover-glow:hover {
  border-color: rgba(6, 182, 212, 0.3) !important;
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08) !important;
}

.hover-scale {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-scale:hover {
  transform: translateY(-4px) scale(1.01);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ---- Objective Section Enhancements ---- */
.objective-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.objective-card:hover {
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.06);
}
.objective-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gradient-border-left {
  border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, var(--grad-start), var(--grad-warm)) 1;
  padding-left: 1.25rem;
}

/* ---- Coverage Section ---- */
.coverage-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.location-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(99,102,241,0.06);
  color: #4f46e5;
  border: 1px solid rgba(99,102,241,0.12);
  transition: all 0.3s;
}
.location-badge:hover {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}
.location-pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}
.location-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.4);
  animation: ripple 2s ease-out infinite;
}

/* ---- Metric Card (keep for backward compat) ---- */
.metric-card {
  border-radius: 16px;
  transition: all 0.25s;
}
.metric-card:hover {
  transform: translateY(-4px);
}

/* =====================================================
   MOBILE RESPONSIVE — OVERFLOW FIXES
   ===================================================== */

/* ---- Small devices (phones, <576px) ---- */
@media (max-width: 575.98px) {
  /* Hero section adjustments */
  .hero-premium {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-title-dark {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    word-break: break-word;
  }
  .hero-description-dark {
    font-size: 0.95rem;
  }

  /* Hero buttons — stack vertically */
  .hero-premium .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    gap: 12px !important;
  }
  .btn-shimmer,
  .btn-outline-hero {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Hero glass card */
  .hero-glass-card {
    padding: 1.25rem;
    border-radius: 16px;
    max-width: 100% !important;
  }
  .hero-glass-card .d-flex.align-items-center.justify-content-between {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-glass-card .glass-feature {
    padding: 0.75rem;
  }
  .hero-glass-card .glass-feature .feature-title {
    font-size: 0.78rem;
  }
  .hero-glass-card .glass-feature .feature-desc {
    font-size: 0.68rem;
  }

  /* Hero trust — wrap on small screens */
  .hero-trust {
    font-size: 0.75rem;
    gap: 4px;
  }
  .hero-trust .trust-divider {
    display: none;
  }

  /* Stat cards */
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.4rem;
  }
  .display-5 {
    font-size: 1.6rem !important;
  }

  /* Objective card */
  .objective-card {
    padding: 1.5rem;
  }

  /* CTA section */
  .cta-premium {
    padding: 2.5rem 1.25rem;
    border-radius: 16px;
  }
  .cta-premium h2 {
    font-size: 1.5rem !important;
  }

  /* Coverage card */
  .coverage-card {
    padding: 1.5rem;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1rem;
  }
  .site-footer .d-flex.gap-2 {
    flex-wrap: wrap;
  }
}

/* ---- Medium-small devices (phones landscape + small tablets, <768px) ---- */
@media (max-width: 767.98px) {
  /* Contain all hero orbs within the hero */
  .hero-orb {
    opacity: 0.3;
  }
  .hero-orb-1 {
    width: 150px;
    height: 150px;
  }
  .hero-orb-2 {
    width: 120px;
    height: 120px;
  }
  .hero-orb-3 {
    width: 100px;
    height: 100px;
  }

  /* Ensure no section breaks out */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero glass card header: stack on very narrow */
  .hero-glass-card .d-flex.align-items-center.justify-content-between > span[style*="font-family: monospace"] {
    display: none;
  }

  /* Benefit cards */
  .benefit-card {
    padding: 1.5rem;
  }

  /* Footer: stack columns more */
  .site-footer .btn-sm {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }
}

/* ---- Laptops / Medium Desktop (992px to 1199.98px) ---- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title-dark {
    font-size: 2.25rem;
    line-height: 1.15;
  }
}

/* ---- Tablets (768px to 991px) ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-premium {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-title-dark {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-glass-card, .fmcg-live-window {
    max-width: 100% !important;
  }
}

/* ---- Global safe overflow for all screen sizes ---- */
main {
  overflow-x: hidden;
}
.container {
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   SCROLL TO TOP PROGRESS BUTTON
   ===================================================== */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: '';
  top: 0; left: 0;
  height: 48px; width: 48px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: -1;
  transition: all 0.3s;
}
.progress-wrap:hover::after {
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}
.progress-wrap:hover {
  transform: translateY(-4px);
}
.progress-wrap i {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 800;
  transition: all 0.3s ease;
}
.progress-wrap:hover i {
  color: var(--grad-end);
  transform: translate(-50%, -55%);
}
.progress-wrap svg.progress-circle path {
  stroke: var(--grad-end);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 0.1s linear;
  fill: none;
}

/* =====================================================
   LIVE FMCG INTERACTIVE SHOWCASE WINDOW (HERO)
   ===================================================== */
.fmcg-live-window {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(13, 148, 136, 0.15);
  overflow: hidden;
  color: #ffffff;
}
.fmcg-live-header {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fmcg-live-dots {
  display: flex;
  gap: 6px;
}
.fmcg-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.live-pulse-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.fmcg-slide {
  display: none;
  padding: 20px;
  animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fmcg-slide.active {
  display: block;
}
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fmcg-slide-img-box {
  background: radial-gradient(circle at center, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.85) 100%);
  border-radius: 14px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.fmcg-slide-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.fmcg-slide:hover .fmcg-slide-img-box img {
  transform: scale(1.08);
}
.fmcg-badge-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fmcg-margin-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.live-order-ticker {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
}
.live-order-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px #22c55e;
}

/* ==========================================================================
   BANNER SLIDER
   ========================================================================== */

.banner-slider-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.banner-slider {
  height: 400px;
  background: var(--hero-bg-mid);
}

.banner-slide {
  transition: opacity 0.8s ease-in-out !important;
}

.banner-slide:not(.active) {
  opacity: 0;
  display: block !important;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.85) 100%);
  pointer-events: none;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem 2rem;
  z-index: 3;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  z-index: 4;
}

.banner-dots button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.banner-dots button.active {
  width: 24px !important;
  border-radius: 4px !important;
  background-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .banner-slider {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .banner-slider {
    height: 200px;
  }
  .banner-caption {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .banner-caption h3 {
    font-size: 1.2rem;
  }
}

/* =====================================================
   CART BADGE (Navbar)
   ===================================================== */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  z-index: 10;
}
.cart-badge-pulse {
  animation: cartBadgePulse 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes cartBadgePulse {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* =====================================================
   TOAST NOTIFICATION SYSTEM
   ===================================================== */
.qualitail-toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.qualitail-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 400px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
}
.qualitail-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.qualitail-toast-success {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
}
.qualitail-toast-error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
}
.qualitail-toast-info {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
}
.qualitail-toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 2px 6px;
  margin-left: auto;
  font-size: 1.1rem;
  transition: color 0.2s;
  flex-shrink: 0;
}
.qualitail-toast-close:hover {
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .qualitail-toast-container {
    right: 10px;
    left: 10px;
  }
  .qualitail-toast {
    max-width: 100%;
  }
}

/* =====================================================
   ADD TO CART — BUTTON STATES
   ===================================================== */
.btn-cart-added {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
  transition: all 0.3s ease;
  pointer-events: auto;
}
.btn-cart-added:hover {
  background: linear-gradient(135deg, #047857, #059669) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  color: #ffffff !important;
}

/* =====================================================
   SIDEBAR BANNER (Products Page)
   ===================================================== */
.sidebar-banner-wrapper {
  position: sticky;
  top: 90px;
}
.sidebar-banner-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 16px;
}
.sidebar-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}
.sidebar-banner-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.sidebar-banner-card .banner-info {
  padding: 14px 16px;
  background: #ffffff;
}
.sidebar-banner-card .banner-info h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}
.sidebar-banner-card .banner-info p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

/* Mobile: horizontal scroll strip for sidebar banners */
@media (max-width: 991.98px) {
  .sidebar-banner-wrapper {
    position: static;
  }
  .sidebar-banner-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .sidebar-banner-scroll .sidebar-banner-card {
    flex-shrink: 0;
    width: 280px;
    margin-bottom: 0;
  }
}

/* =====================================================
   LOGO BACKGROUND CONTRAST
   ===================================================== */
.navbar-logo-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.navbar-logo-bg:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

/* =====================================================
   DELIVERY ESTIMATE BADGE
   ===================================================== */
.delivery-estimate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
  padding: 5px 12px;
  border-radius: 8px;
  margin-top: 8px;
}
.delivery-estimate-badge i {
  font-size: 0.9rem;
}
.delivery-estimate-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(13, 148, 136, 0.06));
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  margin-top: 16px;
}
.delivery-estimate-detail .delivery-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #059669, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.delivery-estimate-detail .delivery-text {
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 600;
}
.delivery-estimate-detail .delivery-text small {
  font-weight: 400;
  color: #64748b;
  display: block;
  font-size: 0.75rem;
  margin-top: 2px;
}