/* ═══════════════════════════════════════════════════════════════════
   Tech Dokaan – Complete Design System v3.0
   ⚠️  This is the SINGLE SOURCE of all styling. No inline styles needed.
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── Bengali Taka Sign Font Fix ─────────────────────────────────
   Auto-applies Noto Sans Bengali ONLY for U+09F3 (৳) character.
   Works everywhere without any HTML changes needed.
   ──────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'TakaSans';
  src: local('Noto Sans Bengali'),
    url('https://fonts.gstatic.com/s/notosansbengali/v21/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudY.woff2') format('woff2');
  unicode-range: U+09F3;
  /* ৳ Bengali Currency Sign only */
  font-display: swap;
}

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --navy: #0a0e1a;
  --navy-800: #0f1629;
  --navy-700: #151d3b;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --emerald: #059669;
  --teal: #0d9488;

  --grad-brand: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  --grad-hero: linear-gradient(135deg, #0a0e1a 0%, #0f1629 40%, #151d3b 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --grad-success: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 8px 24px rgba(37, 99, 235, .10), 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-lg: 0 16px 48px rgba(37, 99, 235, .14), 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-xl: 0 32px 80px rgba(37, 99, 235, .18), 0 8px 32px rgba(0, 0, 0, .10);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, .30);
  --shadow-gold: 0 4px 20px rgba(245, 158, 11, .35);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: all .15s var(--ease);
  --t-base: all .25s var(--ease);
  --t-slow: all .4s var(--ease);

  --annbar-h: 36px;
  --navbar-h: 64px;
  --header-total: 100px;
  /* annbar + navbar */
  --admin-sidebar: 256px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'TakaSans', 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--indigo);
}

/* ── Announcement Bar ──────────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--annbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--navy) 0%, var(--indigo) 40%, var(--blue) 70%, var(--navy) 100%);
  background-size: 300% 100%;
  animation: shimmer-bar 8s linear infinite;
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .03em;
  overflow: hidden;
}

@keyframes shimmer-bar {
  0% {
    background-position: 300% 0;
  }

  100% {
    background-position: -300% 0;
  }
}

/* ── Site Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--annbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .8);
  transition: var(--t-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-sm);
}

/* Main content offset — hero-section inside main handles its own offset */
main[role="main"] {
  padding-top: 0;
}

/* Non-hero pages still need offset */
main[role="main"]:not(:has(.hero-section)) {
  padding-top: var(--header-total);
}

/* Fallback for browsers that don't support :has() */
.page-offset {
  padding-top: var(--header-total);
}

/* ── Logo ──────────────────────────────────────────────────────── */
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, .4);
  transition: var(--t-base);
}

.logo-mark:hover {
  transform: scale(1.05) rotate(-3deg);
}

.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.logo-tag {
  font-size: .675rem;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: .04em;
  line-height: 1.2;
}

/* ── Nav Links ─────────────────────────────────────────────────── */
.nav-link {
  color: #475569;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  padding: .25rem 0;
  position: relative;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  font-family: inherit;
  padding: .875rem 1.875rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(79, 70, 229, .40);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, .50);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--grad-gold);
  color: #1a1a1a;
  font-weight: 700;
  font-size: .9375rem;
  font-family: inherit;
  padding: .875rem 1.875rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t-base);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, .50);
  color: #1a1a1a;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: .9375rem;
  font-family: inherit;
  padding: .8125rem 1.75rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(37, 99, 235, .35);
  cursor: pointer;
  text-decoration: none;
  transition: var(--t-base);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, .06);
  border-color: var(--blue);
  transform: translateY(-1px);
  color: var(--blue);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(37, 99, 235, .08);
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  font-family: inherit;
  padding: .625rem 1.25rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(37, 99, 235, .20);
  cursor: pointer;
  text-decoration: none;
  transition: var(--t-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, .14);
  color: var(--blue);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 600;
  font-size: .875rem;
  font-family: inherit;
  padding: .5rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid #fca5a5;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t-fast);
}

.btn-danger:hover {
  background: #fee2e2;
  color: #991b1b;
}

.btn-sm {
  padding: .5rem 1.125rem !important;
  font-size: .8125rem !important;
}

.btn-lg {
  padding: 1.125rem 2.5rem !important;
  font-size: 1.0625rem !important;
}

.btn-xs {
  padding: .3rem .75rem !important;
  font-size: .75rem !important;
}

/* ── Hero Section ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-total);
  padding-bottom: 0;
  margin-top: 0;
  box-sizing: border-box;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, .25) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  will-change: transform;
  animation: float-glow 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .20) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
  will-change: transform;
  animation: float-glow 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, .12) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  pointer-events: none;
  will-change: transform;
  animation: float-glow 12s ease-in-out infinite 2s;
}

@keyframes float-glow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(.96);
  }
}

/* Disable glow animation on mobile — causes scroll jank */
@media (max-width: 768px) {

  .hero-glow-1,
  .hero-glow-2,
  .hero-glow-3 {
    animation: none;
    will-change: auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(79, 70, 229, .15);
  border: 1px solid rgba(99, 102, 241, .35);
  color: #a5b4fc;
  font-size: .8rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #22d3ee;
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(1.4);
  }
}

/* ── Hero Title ─────────────────────────────────────────────────── */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.625rem;
  /* 42px — fits all 3 lines in 50% grid col */
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .875rem;
  margin-top: .75rem;
}

/* Line 1: "Get the Ultimate" — plain white */
.hero-line1 {
  display: block;
  color: #fff;
}

/* Line 2: "Google AI Suite" — blue-to-purple gradient shimmer */
.hero-line2 {
  display: block;
}

/* Line 3: "from Tech Dokaan" — must not wrap */
.hero-line3 {
  display: block;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
}

/* gradient-word utility */
.hero-title .gradient-word,
.gradient-word {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "Tech Dokaan" — gold shimmer, upright */
.hero-brand-gradient {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 45%, #f97316 75%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% auto;
  animation: shimmer-text 4s linear infinite;
  font-style: normal;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .55);
  font-size: .8125rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
}

/* ── Price Badge ───────────────────────────────────────────────── */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  color: var(--gold);
}

.price-badge .currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-badge .amount {
  font-size: 3.25rem;
  line-height: 1;
}

.price-original {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through;
  margin-left: .25rem;
}

.savings-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .30);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}

/* ── Glassmorphism card ────────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Disable expensive blur on mobile to prevent scroll jank */
@media (max-width: 768px) {
  .glass-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, .09);
  }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM HERO v3 COMPONENTS
   ════════════════════════════════════════════════════════════════ */

/* ── Floating particles ─────────────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  bottom: -10px;
  background: rgba(99, 102, 241, .5);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: .6;
  }

  90% {
    opacity: .2;
  }

  100% {
    transform: translateY(-110vh) scale(0.5) rotate(360deg);
    opacity: 0;
  }
}

/* Hide particles entirely on mobile — major scroll jank source */
@media (max-width: 768px) {
  .hero-particle {
    display: none;
  }
}

/* ── Hero gradient text ─────────────────────────────────────────── */
/* 'Google AI Suite' gradient — blue to purple, clean */
.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-text 5s linear infinite;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── Hero price block ───────────────────────────────────────────── */
.hero-price-block {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  display: inline-block;
}

.hero-price-wrap {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
}

.hero-price-current {
  display: flex;
  align-items: baseline;
  gap: .1rem;
  flex-wrap: wrap;
}

.hero-currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'TakaSans', 'Noto Sans Bengali', 'Sora', sans-serif;
  line-height: 1;
}

.hero-price-num {
  font-family: 'TakaSans', 'Sora', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(245, 158, 11, .4);
}

/* BDT currency code — visible amber badge */
.hero-price-bdt {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #f59e0b !important;
  -webkit-text-fill-color: #f59e0b !important;
  /* override any gradient inheritance */
  background: rgba(245, 158, 11, .18);
  border: 1px solid rgba(245, 158, 11, .4);
  padding: .15rem .45rem;
  border-radius: 5px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .4rem;
  position: relative;
  bottom: .4rem;
  line-height: 1.4;
}

.hcp-bdt {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fbbf24 !important;
  -webkit-text-fill-color: #fbbf24 !important;
  /* force color, escape gradient parent */
  background: rgba(245, 158, 11, .2);
  border: 1px solid rgba(245, 158, 11, .35);
  padding: .1rem .32rem;
  border-radius: 4px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .3rem;
  position: relative;
  bottom: .3rem;
  line-height: 1.4;
}

/* General BDT badge for light backgrounds */
.price-bdt {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #3b82f6 !important;
  -webkit-text-fill-color: #3b82f6 !important;
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .3);
  padding: .1rem .35rem;
  border-radius: 4px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .25rem;
  line-height: 1.4;
}

.hero-price-was {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.hero-price-striked {
  font-size: 1rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: line-through;
}

.hero-discount-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, .2), rgba(251, 191, 36, .15));
  border: 1px solid rgba(245, 158, 11, .3);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  letter-spacing: .06em;
}

.hero-price-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .45);
  font-size: .8125rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.hero-dot {
  color: rgba(255, 255, 255, .2);
}

/* ── Hero CTA ────────────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
  align-items: center;
}

.hero-cta-main {
  position: relative;
  overflow: hidden;
}

.hero-cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}

.hero-cta-main:hover::before {
  transform: translateX(100%);
}

.hero-cta-icon {
  font-size: 1.2rem;
}

.hero-cta-arrow {
  margin-left: .25rem;
  transition: transform .2s;
}

.hero-cta-main:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  font-size: .9375rem;
  padding: 1.125rem 1.875rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: var(--t-base);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Trust pills ─────────────────────────────────────────────────── */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-bottom: 1.75rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: rgba(255, 255, 255, .09);
  border: 1.5px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .8);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .875rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  transition: var(--t-fast);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
}

.trust-pill:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

/* ── Stats bar ───────────────────────────────────────────────────── */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.125rem 1.5rem;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-stat {
  text-align: center;
  flex: 1;
  min-width: 60px;
}

.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .25rem;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

/* ── Hero Card (right panel) ─────────────────────────────────────── */
.hero-card-wrap {
  position: relative;
}

.hero-card-ring {
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--r-xl) + 20px);
  background: conic-gradient(from 0deg, rgba(79, 70, 229, .4) 0%, rgba(245, 158, 11, .3) 25%, rgba(79, 70, 229, .0) 50%, rgba(245, 158, 11, .2) 75%, rgba(79, 70, 229, .4) 100%);
  animation: spin-ring 8s linear infinite;
  filter: blur(10px);
  z-index: 0;
}

@keyframes spin-ring {
  from {
    transform: rotate(0deg) scale(1.02);
  }

  50% {
    transform: rotate(180deg) scale(0.98);
  }

  to {
    transform: rotate(360deg) scale(1.02);
  }
}

.hero-product-card {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 1.5rem;
  will-change: transform;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Stop float animation on mobile — prevents scroll stutter */
@media (max-width: 768px) {
  .hero-product-card {
    animation: none;
    will-change: auto;
    transform: none;
  }
}

/* Card chrome top bar */
.hero-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-card-dots {
  display: flex;
  gap: .375rem;
}

.hero-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.hero-card-label-pill {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .06);
  padding: .2rem .625rem;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}

.hero-card-pulse {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .6rem;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: .06em;
}

.hero-card-pulse span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d3ee;
  animation: pulse-live 1.5s ease-in-out infinite;
}

/* Card price area */
.hero-card-price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .15);
  border-radius: var(--r-md);
}

.hero-card-price-tag {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.hcp-currency {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'TakaSans', 'Noto Sans Bengali', 'Sora', sans-serif;
}

.hcp-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'TakaSans', 'Sora', sans-serif;
  line-height: 1;
}

.hcp-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, .15);
  padding: .25rem .625rem;
  border-radius: var(--r-full);
}

/* Icon grid */
.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-bottom: 1rem;
}

.hero-icon-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .5rem .25rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: var(--t-fast);
  cursor: default;
}

.hero-icon-chip:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

.hero-icon-emoji {
  font-size: 1.375rem;
}

.hero-icon-name {
  font-size: .55rem;
  color: rgba(148, 163, 184, .8);
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

/* Progress bar */
.hero-progress-wrap {
  margin-bottom: .875rem;
}

.hero-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: rgba(148, 163, 184, .6);
  margin-bottom: .375rem;
}

.hero-progress-track {
  height: 5px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-full);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #f59e0b);
  border-radius: var(--r-full);
  animation: progress-in 1.5s var(--ease) both;
}

@keyframes progress-in {
  from {
    width: 0 !important;
  }
}

/* Checklist */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8rem;
  color: rgba(148, 163, 184, .85);
}

.hero-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── Product visual card (hero right side) ─────────────────────── */
.product-visual-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(37, 99, 235, .14), 0 2px 8px rgba(0, 0, 0, .07);
  padding: 1.75rem;
  border: 1.5px solid #d0d9f0;
  transition: var(--t-slow);
}

.product-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(37, 99, 235, .20);
}

.product-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .625rem;
}

.product-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .5rem .25rem;
  border-radius: var(--r-sm);
  background: #f8faff;
  border: 1px solid #e8ecf8;
  transition: var(--t-fast);
}

.product-icon-item:hover {
  background: #eff2ff;
  border-color: #c7d2fe;
}

.product-icon-item span:first-child {
  font-size: 1.5rem;
}

.icon-label {
  font-size: .6rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* ── Trust strip section (below hero) ─────────────────────────── */
.trust-strip {
  background: #f8faff;
  border-top: 1px solid #e8ecf8;
  border-bottom: 1px solid #e8ecf8;
  padding: 2rem 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: #fff;
  border: 1.5px solid #e8ecf8;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(79, 70, 229, .06), 0 1px 3px rgba(0, 0, 0, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  cursor: default;
}

.trust-strip-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, .13), 0 2px 8px rgba(0, 0, 0, .06);
  border-color: #c7d2fe;
}

.trust-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid #c7d2fe;
}

.trust-strip-title {
  font-size: .9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: .1rem;
}

.trust-strip-sub {
  font-size: .75rem;
  color: #64748b;
  line-height: 1.4;
}

/* ── Section headers ───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  background: rgba(79, 70, 229, .08);
  border: 1px solid rgba(79, 70, 229, .20);
  color: var(--indigo);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .875rem;
  border-radius: var(--r-full);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Feature cards ─────────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1.5px solid #dde3ef;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(99, 102, 241, .07), 0 1px 3px rgba(0, 0, 0, .05);
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, .20);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .875rem;
  transition: var(--t-base);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-size: .9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: .375rem;
}

.feature-desc {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Include / checklist cards ─────────────────────────────────── */
.include-card {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: #fff;
  border: 1.5px solid #dde4ef;
  border-radius: var(--r-md);
  padding: .875rem 1rem;
  transition: var(--t-fast);
  box-shadow: 0 2px 10px rgba(79, 70, 229, .07), 0 1px 3px rgba(0, 0, 0, .04);
}

.include-card:hover {
  border-color: rgba(79, 70, 229, .35);
  background: #f8f7ff;
  box-shadow: 0 6px 20px rgba(79, 70, 229, .13);
  transform: translateX(4px);
}

.include-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  margin-top: .1rem;
}

/* ── Step cards (how it works) ─────────────────────────────────── */
.step-card {
  background: #fff;
  border: 1.5px solid #d0d8ef;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--t-base);
  box-shadow: 0 3px 16px rgba(79, 70, 229, .08), 0 1px 4px rgba(0, 0, 0, .05);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(79, 70, 229, .16);
  border-color: rgba(79, 70, 229, .4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(79, 70, 229, .35);
}

/* ── Fade-in animation (legacy alias for reveal) ───────────────── */
.fade-in {
  animation: fadeInUp .6s var(--ease) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add staggered delay variants */
.fade-in:nth-child(2) {
  animation-delay: .1s;
}

.fade-in:nth-child(3) {
  animation-delay: .2s;
}

.fade-in:nth-child(4) {
  animation-delay: .3s;
}

/* ── Scroll Reveal ─────────────────────────────────────────────── */
/* Default: VISIBLE. JS adds .js-animate to body, then elements animate */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

/* When JS is active and has set up observers: */
.js-animate .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

.js-animate .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.visible {
  transition-delay: .1s;
}

.reveal-delay-2.visible {
  transition-delay: .2s;
}

.reveal-delay-3.visible {
  transition-delay: .3s;
}

.reveal-delay-4.visible {
  transition-delay: .4s;
}

/* Motion-safe enhancement */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .js-animate .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Order / Checkout card ─────────────────────────────────────── */
.order-card {
  background: #fff;
  border: 1.5px solid #c8d3e8;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 24px rgba(37, 99, 235, .10), 0 1px 4px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.order-card-header {
  background: var(--grad-brand);
  padding: 1.5rem 1.75rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.order-card-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

/* ── Form Elements ─────────────────────────────────────────────── */
.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .5rem;
  letter-spacing: .01em;
}

.form-input {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: #1e293b;
  background: #fafafa;
  transition: var(--t-fast);
  outline: none;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .10);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-error {
  font-size: .8rem;
  color: #ef4444;
  margin-top: .375rem;
  font-weight: 500;
}

.form-hint {
  font-size: .75rem;
  color: #94a3b8;
  margin-top: .375rem;
}

/* ── Alert Banners ─────────────────────────────────────────────── */
.alert {
  padding: .875rem 1.125rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: .625rem;
}

.alert-success {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.alert-warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.alert-info {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
}

/* ── Status Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}

.badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.badge-yellow {
  background: #fef3c7;
  color: #92400e;
}

.badge-red {
  background: #fee2e2;
  color: #991b1b;
}

.badge-gray {
  background: #f1f5f9;
  color: #475569;
}

.badge-indigo {
  background: #e0e7ff;
  color: #3730a3;
}

.badge-purple {
  background: #ede9fe;
  color: #5b21b6;
}

.badge-teal {
  background: #ccfbf1;
  color: #0f766e;
}

/* ── Spinner ───────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -- FAQ Accordion ----------------------------------------------------------------- */
.faq-item {
  border: 1.5px solid #d5dce9;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .2s ease;
  background: #fff;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(79, 70, 229, .06);
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, .3);
  box-shadow: 0 4px 20px rgba(79, 70, 229, .08);
}

.faq-item.open {
  border-color: #4f46e5;
  box-shadow: 0 4px 24px rgba(79, 70, 229, .15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  transition: background .15s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-item.open .faq-question {
  color: #4f46e5;
  background: #f5f3ff;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), background .2s ease, color .2s ease;
}

.faq-chevron svg {
  display: block;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  background: rgba(79, 70, 229, .12);
  transform: rotate(180deg);
  color: #4f46e5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

.faq-answer-inner,
.faq-answer>div {
  padding: .875rem 1.5rem 1.375rem;
  font-size: .9375rem;
  color: #475569;
  line-height: 1.8;
  border-top: 1px solid #f1f5f9;
}

/* ── Order Tracking Timeline ───────────────────────────────────── */
.tracking-timeline {
  position: relative;
  padding-left: 0;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), #e2e8f0);
}

.timeline-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.timeline-dot.done {
  background: var(--grad-brand);
  color: #fff;
}

.timeline-dot.current {
  background: var(--grad-gold);
  color: #1a1a1a;
  animation: pulse-ring 2s infinite;
}

.timeline-dot.pending {
  background: #f1f5f9;
  color: #94a3b8;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, .4), 0 2px 8px rgba(0, 0, 0, .12);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0), 0 2px 8px rgba(0, 0, 0, .12);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0), 0 2px 8px rgba(0, 0, 0, .12);
  }
}

/* ── Site Footer ───────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════════
   FOOTER — Premium v3
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #080b18 0%, #060919 100%);
  color: rgba(255, 255, 255, .65);
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .6) 35%, rgba(139, 92, 246, .6) 65%, transparent);
  pointer-events: none;
}

/* ── Pre-footer CTA Banner ─────────────────────────────────────── */
.footer-cta-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #1e1b4b 100%);
  border-bottom: 1px solid rgba(99, 102, 241, .25);
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(139, 92, 246, .2) 0%, transparent 60%);
  pointer-events: none;
}

.footer-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: .375rem;
}

.footer-cta-heading {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 .375rem;
  font-family: 'Sora', 'Inter', sans-serif;
}

.footer-cta-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

.footer-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.footer-price-tag {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.fpt-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f59e0b;
  font-family: 'TakaSans', 'Noto Sans Bengali', 'Sora', sans-serif;
  -webkit-text-fill-color: #f59e0b;
}

.fpt-amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
  font-family: 'Sora', sans-serif;
  -webkit-text-fill-color: #f59e0b;
  text-shadow: 0 0 30px rgba(245, 158, 11, .35);
}

.fpt-bdt {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #f59e0b;
  -webkit-text-fill-color: #f59e0b;
  background: rgba(245, 158, 11, .2);
  border: 1px solid rgba(245, 158, 11, .4);
  padding: .12rem .35rem;
  border-radius: 4px;
  margin-left: .2rem;
  position: relative;
  bottom: .3rem;
  text-transform: uppercase;
}

.footer-order-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  padding: .8rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(245, 158, 11, .4);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.footer-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, .55);
}

.footer-cta-trust {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}

/* ── Main Footer Body ──────────────────────────────────────────── */
.footer-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  margin-bottom: 1.125rem;
}

.footer-logo-name {
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.1;
}

.footer-logo-tag {
  font-size: .7rem;
  font-weight: 600;
  color: #818cf8;
  letter-spacing: .03em;
}

.footer-brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .45);
  margin: 0 0 1.25rem;
  max-width: 280px;
}

/* Stats row */
.footer-stats {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.375rem;
  padding: .875rem 1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
}

.fstat {
  text-align: center;
  flex: 1;
}

.fstat-num {
  font-size: 1.125rem;
  font-weight: 800;
  color: #818cf8;
  font-family: 'Sora', sans-serif;
  line-height: 1;
}

.fstat-lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fstat-sep {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.fsocial {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all .2s ease;
}

.fsocial:hover {
  background: rgba(99, 102, 241, .25);
  border-color: rgba(99, 102, 241, .5);
  color: #fff;
  transform: translateY(-2px);
}

/* Nav Columns */
.footer-col-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 1.25rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s, gap .2s;
}

.footer-link:hover {
  color: #fff;
  gap: .65rem;
}

.flink-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(99, 102, 241, .5);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}

.footer-link:hover .flink-dot {
  background: #818cf8;
  transform: scale(1.4);
}

.footer-link--cta {
  color: #818cf8 !important;
  font-weight: 700;
}

.footer-link--cta:hover {
  color: #fff !important;
}

.flink-dot--cta {
  background: #6366f1 !important;
}

/* Contact Column */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.fcontact-card {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s, border-color .2s;
}

.fcontact-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
}

.fcontact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcontact-icon--blue {
  background: rgba(59, 130, 246, .15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, .2);
}

.fcontact-icon--green {
  background: rgba(34, 197, 94, .12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, .2);
}

.fcontact-icon--purple {
  background: rgba(139, 92, 246, .15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, .2);
}

.fcontact-icon--amber {
  background: rgba(245, 158, 11, .12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, .2);
}

.fcontact-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: .15rem;
}

.fcontact-value {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .2s;
}

a.fcontact-value:hover {
  color: #fff;
}

/* Divider */
.footer-divider {
  height: 1px;
  margin: 2.5rem 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .3) 30%, rgba(139, 92, 246, .3) 70%, transparent);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

.footer-trust-badges {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-wrap: wrap;
}

.ftrust-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  padding: .3rem .75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

/* ── Sticky Mobile CTA ─────────────────────────────────────────── */
/* ── Mobile Sticky CTA — hidden on tablet/desktop ──────────────── */
.sticky-cta-bar {
  display: none !important;
  /* hidden by default on ALL sizes */
}

@media (max-width: 767px) {

  /* Only visible on mobile, and only when JS adds .is-visible */
  .sticky-cta-bar.is-visible {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    gap: .875rem;
    padding: .875rem 1.125rem calc(.875rem + env(safe-area-inset-bottom));
    /* Premium glassmorphism gradient */
    background: linear-gradient(135deg,
        rgba(10, 8, 30, .97) 0%,
        rgba(30, 27, 75, .97) 50%,
        rgba(15, 10, 40, .97) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(99, 102, 241, .3);
    box-shadow: 0 -4px 32px rgba(79, 70, 229, .25), 0 -1px 0 rgba(255, 255, 255, .06);
    animation: slide-up-cta .35s cubic-bezier(.34, 1.56, .64, 1) both;
  }
}

@keyframes slide-up-cta {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── Qty Stepper ───────────────────────────────────────────────── */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.qty-stepper button {
  background: #f8fafc;
  border: none;
  cursor: pointer;
  padding: .625rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #475569;
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-stepper button:hover {
  background: #eef2ff;
  color: var(--blue);
}

.qty-stepper input {
  border: none;
  border-left: 1.5px solid #e2e8f0;
  border-right: 1.5px solid #e2e8f0;
  text-align: center;
  width: 56px;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  padding: .5rem;
  background: #fff;
  font-family: inherit;
  outline: none;
}

/* ══════════════════════════════════════════════════════════════════
   ADMIN PANEL STYLES
   ══════════════════════════════════════════════════════════════════ */

/* ── Admin Layout ──────────────────────────────────────────────── */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--admin-sidebar);
  background: var(--navy);
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .1) transparent;
}

.admin-sidebar::-webkit-scrollbar {
  width: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
}

.admin-main {
  margin-left: var(--admin-sidebar);
  min-height: 100vh;
  background: #f1f5f9;
  transition: margin-left .3s var(--ease);
}

.admin-content {
  padding: 1.5rem;
}

/* ── Admin nav ─────────────────────────────────────────────────── */
.admin-nav-section {
  padding: 1.125rem 1.5rem .375rem;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(148, 163, 184, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .625rem 1rem;
  margin: .125rem .625rem;
  border-radius: var(--r-sm);
  color: rgba(148, 163, 184, .9);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t-fast);
  position: relative;
}

.admin-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.admin-nav-link.active {
  color: #fff;
  background: rgba(79, 70, 229, .25);
  box-shadow: inset 3px 0 0 var(--indigo);
}

.admin-nav-link .nav-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-nav-badge {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: var(--r-full);
  min-width: 18px;
  text-align: center;
}

/* ── KPI Cards ─────────────────────────────────────────────────── */
.kpi-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.kpi-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.kpi-card-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: .25rem;
}

.kpi-card-label {
  font-size: .8125rem;
  font-weight: 500;
  color: #64748b;
}

.kpi-card-change {
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-top: .5rem;
}

.kpi-card-change.up {
  color: #059669;
}

@media (max-width: 767px) {
  :root {
    --header-total: 90px;
    --navbar-h: 58px;
    --annbar-h: 32px;
  }


  /* KEY FIX: use explicit padding-top – shorthand would wipe out header offset */
  .hero-section {
    min-height: 100svh;
    padding-top: calc(var(--header-total) + 1.5rem);
    padding-bottom: 3rem;
    text-align: center;
    /* ← Center all hero text on mobile */
  }

  /* Center hero text elements */
  .hero-badge {
    margin: 0 auto 1.25rem;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .hero-line3 {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: .9rem;
    max-width: 100%;
  }

  /* Center "View All Features" secondary button */
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Center trust pills (Instant Delivery, Secure bKash, etc.) */
  .hero-trust-pills {
    justify-content: center;
  }

  /* Center price block */
  .hero-price-block {
    display: block;
    margin: 1.25rem auto;
    text-align: center;
  }

  .hero-price-wrap {
    align-items: center;
  }

  .hero-price-current {
    justify-content: center;
  }

  .hero-price-was {
    justify-content: center;
  }

  /* Center CTA buttons */
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    /* center the column */
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Center trust strip badges */
  .hero-trust-strip {
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Center stats row */
  .hero-stats {
    justify-content: center;
  }

  .price-badge .amount {
    font-size: 2.5rem;
  }

  .kpi-card-value {
    font-size: 1.5rem;
  }

  .admin-content {
    padding: .875rem;
  }

  .admin-table {
    font-size: .8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: .625rem .75rem;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .product-visual-card {
    padding: 1.25rem;
  }

  .product-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: .375rem;
  }

  .order-card-header {
    padding: 1.25rem;
  }

  .btn-primary,
  .btn-gold,
  .btn-outline {
    font-size: .875rem;
    padding: .75rem 1.5rem;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Non-hero pages on mobile */
  [style*="margin-top:var(--header-total)"] {
    margin-top: var(--header-total) !important;
  }
}

.kpi-card-change.down {
  color: #dc2626;
}

/* Accent blob */
.kpi-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 var(--r-lg) 0 80px;
  opacity: .06;
}

.kpi-card.blue::after {
  background: var(--blue);
}

.kpi-card.green::after {
  background: var(--emerald);
}

.kpi-card.gold::after {
  background: var(--gold);
}

.kpi-card.purple::after {
  background: var(--violet);
}

.kpi-card.red::after {
  background: #ef4444;
}

/* ── Admin card wrapper ────────────────────────────────────────── */
.admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.admin-card-header {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-card-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #0f172a;
}

.admin-card-body {
  padding: 1.25rem 1.5rem;
}

/* ── Admin Table ───────────────────────────────────────────────── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: #f8fafc;
  padding: .75rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  color: #64748b;
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.admin-table td {
  padding: .875rem 1rem;
  font-size: .875rem;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover td {
  background: #fafbff;
}

/* ── Pagination ────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: .375rem;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 .625rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-sm);
  font-size: .8125rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: var(--t-fast);
  background: #fff;
  cursor: pointer;
}

.page-btn:hover {
  background: #eef2ff;
  border-color: var(--indigo);
  color: var(--indigo);
}

.page-btn.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ── Content Manager tabs ──────────────────────────────────────── */
.tab-btn {
  padding: .5rem 1rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  transition: var(--t-fast);
  font-family: inherit;
}

.tab-btn:hover {
  background: #eef2ff;
  border-color: var(--indigo);
  color: var(--indigo);
}

.tab-btn.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

/* ── Mobile admin overlay ──────────────────────────────────────── */
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 199;
  backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════════ */

/* ── Tablet (max 1023px) → hide desktop admin sidebar ─────────── */
@media (max-width: 1023px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  #sidebar-overlay.open {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-content {
    padding: 1rem;
  }
}

/* ── Mobile (max 767px) ────────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --header-total: 90px;
    --navbar-h: 58px;
    --annbar-h: 32px;
  }

  /* KEY FIX: use explicit padding-top — shorthand would wipe out header offset */
  .hero-section {
    min-height: 100svh;
    padding-top: calc(var(--header-total) + 1.5rem);
    /* 90px + 24px breathing room */
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .hero-line3 {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: .9rem;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-strip {
    gap: 1rem;
  }

  .price-badge .amount {
    font-size: 2.5rem;
  }

  .kpi-card-value {
    font-size: 1.5rem;
  }

  .admin-content {
    padding: .875rem;
  }

  .admin-table {
    font-size: .8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: .625rem .75rem;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .product-visual-card {
    padding: 1.25rem;
  }

  .product-icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: .375rem;
  }

  .order-card-header {
    padding: 1.25rem;
  }

  .btn-primary,
  .btn-gold,
  .btn-outline {
    font-size: .875rem;
    padding: .75rem 1.5rem;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Non-hero pages on mobile */
  [style*="margin-top:var(--header-total)"] {
    margin-top: var(--header-total) !important;
  }
}

/* ── Tablet portrait + landscape (768px – 1023px) ──────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --header-total: 100px;
    --navbar-h: 64px;
    --annbar-h: 36px;
  }

  .hero-section {
    min-height: 100svh;
    padding-top: calc(var(--header-total) + 2rem);
    /* 100px + 32px */
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.18;
  }

  .hero-line3 {
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: .9375rem;
  }

  .hero-cta-group {
    gap: .875rem;
  }
}

/* ── Very small phones (max 479px) ────────────────────────────── */
@media (max-width: 479px) {
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.22;
  }

  .product-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-badge {
    font-size: .7rem;
    padding: .3rem .75rem;
  }

  .kpi-card {
    padding: 1.125rem;
  }

  .kpi-card-value {
    font-size: 1.375rem;
  }
}

/* ── Desktop standard (1024px – 1279px) ────────────────────────── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-title {
    font-size: 2.625rem;
  }
}

/* ── Large desktop (min 1280px) ────────────────────────────────── */
@media (min-width: 1280px) {
  .admin-content {
    padding: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* ══════════════════════════════════════════════════════════════════
   ADMIN PANEL — Professional & Fully Responsive v2
   ══════════════════════════════════════════════════════════════════ */

/* Sidebar overlay */
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
  z-index: 39;
}

/* Role badges */
.badge-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-gray {
  background: #f1f5f9;
  color: #475569;
}

/* Admin form inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid #e5e7eb;
  border-radius: .75rem;
  font-size: .875rem;
  color: #111827;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  font-family: inherit;
}

.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}

.form-input:disabled {
  background: #f9fafb;
  cursor: not-allowed;
  color: #9ca3af;
}

select.form-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* Alert variants */
.alert {
  padding: .875rem 1rem;
  border-radius: .75rem;
  font-size: .875rem;
  margin-bottom: .75rem;
}

.alert-success {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #991b1b;
}

.alert-info {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  color: #1e40af;
}

.alert-warning {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  color: #92400e;
}

/* Upload zone */
.upload-zone {
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.upload-zone:hover {
  background: #f5f3ff;
}

/* KPI grid auto-responsive */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Responsive table — mobile card layout */
@media (max-width:767px) {
  .table-responsive thead {
    display: none;
  }

  .table-responsive tbody tr {
    display: block;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 1rem;
    margin-bottom: .75rem;
    padding: .875rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  }

  .table-responsive tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .3rem 0;
    border: none;
    font-size: .8125rem;
    gap: .5rem;
  }

  .table-responsive tbody td::before {
    content: attr(data-label);
    font-size: .7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
    padding-top: .1rem;
  }

  /* Admin layout on mobile */
  .admin-sidebar {
    transform: translateX(-100%);
    width: min(280px, 88vw);
    z-index: 40;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  #sidebar-overlay.open {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-content {
    padding: .875rem;
  }

  .admin-nav-link {
    min-height: 42px;
    font-size: .875rem;
  }
}

/* Tablet */
@media (min-width:768px) and (max-width:1023px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  #sidebar-overlay.open {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-content {
    padding: 1.25rem;
  }
}

/* Responsive page header */
@media (max-width:640px) {
  .admin-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT CARD — NEW ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */

/* Aurora border — slow breathing multi-colour wave (replaces spin-ring on border) */
@keyframes aurora-border {
  0% {
    background-position: 0% 50%;
    filter: blur(2px) brightness(1.1);
  }

  25% {
    background-position: 50% 0%;
    filter: blur(3px) brightness(1.3);
  }

  50% {
    background-position: 100% 50%;
    filter: blur(2px) brightness(1.15);
  }

  75% {
    background-position: 50% 100%;
    filter: blur(3px) brightness(1.25);
  }

  100% {
    background-position: 0% 50%;
    filter: blur(2px) brightness(1.1);
  }
}

/* Neon throb — icon pulsing scale + shadow instead of spinning */
@keyframes neon-throb {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(99, 102, 241, .5), 0 0 40px rgba(99, 102, 241, .2);
  }

  30% {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(167, 139, 250, .7), 0 0 60px rgba(99, 102, 241, .35), 0 0 80px rgba(245, 158, 11, .15);
  }

  60% {
    transform: scale(.97);
    box-shadow: 0 0 15px rgba(245, 158, 11, .5), 0 0 35px rgba(245, 158, 11, .25);
  }
}

/* Vertical scanner sweep — top-to-bottom laser line */
@keyframes scan-line {
  0% {
    top: 0%;
    opacity: 0;
  }

  5% {
    opacity: .6;
  }

  95% {
    opacity: .4;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Hue cycle — whole element shifts hue over time */
@keyframes rgb-cycle {
  0% {
    filter: hue-rotate(0deg) brightness(1.1);
  }

  33% {
    filter: hue-rotate(60deg) brightness(1.2);
  }

  66% {
    filter: hue-rotate(-30deg) brightness(1.05);
  }

  100% {
    filter: hue-rotate(0deg) brightness(1.1);
  }
}

/* Gentle 3D float — subtle Y + tilt */
@keyframes card-float {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }

  25% {
    transform: translateY(-8px) rotateX(1deg) rotateY(.5deg);
  }

  50% {
    transform: translateY(-12px) rotateX(0deg) rotateY(-1deg);
  }

  75% {
    transform: translateY(-5px) rotateX(-1deg) rotateY(.5deg);
  }
}

/* Price number heartbeat */
@keyframes price-beat {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 40px rgba(245, 158, 11, .6), 0 0 80px rgba(245, 158, 11, .3);
  }

  40% {
    transform: scale(1.04);
    text-shadow: 0 0 60px rgba(245, 158, 11, .9), 0 0 120px rgba(245, 158, 11, .5), 0 0 180px rgba(245, 158, 11, .2);
  }

  55% {
    transform: scale(1.02);
    text-shadow: 0 0 50px rgba(245, 158, 11, .7), 0 0 100px rgba(245, 158, 11, .4);
  }
}

/* Ribbon text slide */
@keyframes ribbon-slide {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}
