@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Nunito+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   THEME VARIABLES
   ============================================================ */

/* ── smartsonenterprises.com exact palette (from live screenshot) ──
   Primary  : Vibrant Orange  #E85C0D
   BG       : Warm Cream      #FFF5EE
   Text     : Dark Navy       #0D1B2A
   Footer   : Dark Navy       #0D1B2A
   ──────────────────────────────────────────────────── */
:root, :root[data-theme="light"] {
  /* Backgrounds — warm cream exactly as on the website */
  --bg:        #FFFFFF;
  --bg-deep:   #FFF5EE;   /* main page cream */
  --bg-tint:   #FEF0E6;   /* deeper cream tint for cards */

  /* Surfaces */
  --surface:   #FFFFFF;
  --surface-2: #FFF0E4;
  --surface-3: #FFE8D6;

  /* Orange — the signature Smartson colour */
  --primary:        #E85C0D;
  --primary-bright: #FF6B1A;
  --primary-hover:  #C94E08;
  --primary-soft:   rgba(232, 92, 13, 0.10);

  /* Text */
  --text:      #0D1B2A;
  --text-soft: #2C3E50;
  --muted:     #6B7280;

  /* Borders */
  --hairline:      #EAD9CE;
  --border-soft:   rgba(13, 27, 42, 0.08);
  --border-strong: rgba(232, 92, 13, 0.35);

  /* Header */
  --header-bg: rgba(255, 255, 255, 0.95);

  /* Shadows */
  --shadow-sm: 0 2px 12px -3px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 8px 28px -10px rgba(13, 27, 42, 0.14);
  --shadow-lg: 0 18px 48px -16px rgba(13, 27, 42, 0.20);

  /* Footer — dark navy */
  --footer-bg:   #0D1B2A;
  --footer-text: #B8C8D8;
}

:root[data-theme="dark"] {
  --bg:        #0D1117;
  --bg-deep:   #090E14;
  --bg-tint:   #111820;
  --surface:   rgba(18, 28, 42, 0.65);
  --surface-2: #162030;
  --surface-3: #1C2A3C;

  /* Orange stays vibrant in dark mode too */
  --primary:        #FF6B1A;
  --primary-bright: #FF8035;
  --primary-hover:  #E85C0D;
  --primary-soft:   rgba(255, 107, 26, 0.10);

  --text:      #F0F6FF;
  --text-soft: #B8C8D8;
  --muted:     #7A8FA4;

  --hairline:      rgba(255,255,255,0.08);
  --border-soft:   rgba(255,255,255,0.08);
  --border-strong: rgba(255, 107, 26, 0.30);

  --header-bg: rgba(9, 14, 20, 0.90);

  --shadow-sm: 0 2px 12px -3px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 28px -10px rgba(0,0,0,0.50);
  --shadow-lg: 0 18px 48px -16px rgba(0,0,0,0.65);

  --footer-bg:   #060C12;
  --footer-text: #B8C8D8;
}

* { box-sizing: border-box; }
html, body { background: var(--bg-deep); color: var(--text); margin: 0; padding: 0; min-height: 100%; transition: background 280ms ease, color 280ms ease; }
body { font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Custom cursor accent ── */
* { cursor: auto; }
a, button, [role="button"], .card, .product-card, .bento .card { cursor: pointer; }

.font-display { font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif; letter-spacing: -0.01em; font-weight: 800; text-transform: uppercase; }
.font-serif { font-family: 'Space Grotesk', 'Nunito Sans', sans-serif; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }
.eyebrow { font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--primary); font-weight: 800; margin-bottom: 14px; font-family: 'Space Grotesk', sans-serif; }
.muted { color: var(--muted); font-size: 14px; line-height: 1.65; }
.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: inline; } }

/* ============== HEADER ==============
   Matches smartsonenterprises.com:
   - Clean white background
   - Active nav item has solid orange pill/bg
   - Links in dark text, no uppercase
   ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 1px 8px -2px rgba(13,27,42,0.08);
  transition: background 280ms;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; min-width: 0; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 100%);
  position: relative;
  box-shadow: 0 4px 14px -3px rgba(184, 135, 12, 0.45);
  border-radius: 6px;
}
.logo-mark::after { content: ''; position: absolute; inset: 9px; background: var(--bg); border-radius: 2px; }
.logo-text { font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 900; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text); }
.logo-text span { color: var(--primary); }
.logo-img {
  height: 44px !important;
  max-height: 44px !important;
  width: auto !important;
  max-width: 200px !important;
  display: block;
  object-fit: contain;
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.logo:hover .logo-img { transform: scale(1.04); }
.site-footer .footer-logo { height: 56px !important; max-height: 56px !important; max-width: 240px !important; }
@media (max-width: 480px) {
  .logo-img { height: 36px !important; max-height: 36px !important; max-width: 160px !important; }
}
.nav-main { display: none; gap: 8px; }
.nav-main a {
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  letter-spacing: 0.04em; font-family: 'Space Grotesk', sans-serif;
  transition: color 200ms;
  padding: 8px 16px; border-radius: 6px;
  position: relative;
}
.nav-main a:hover { color: var(--primary); background: var(--primary-soft); }
.nav-main a.active,
.nav-main a[aria-current] {
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
}
/* Remove the old underline animation */
.nav-main a::after { display: none; }
@media (min-width: 768px) { .nav-main { display: flex; } }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-link { position: relative; padding: 8px; color: var(--text-soft); transition: color 220ms; }
.cart-link:hover { color: var(--primary); }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 9999px;
  min-width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}
.btn-link { font-size: 13px; color: var(--text-soft); padding: 6px 4px; }
.btn-link.muted { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; }
.btn-link:hover { color: var(--primary); }

/* Theme toggle */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--hairline);
  color: var(--text-soft); cursor: pointer;
  border-radius: 9999px; transition: all 220ms; padding: 0;
}
.theme-toggle:hover { color: var(--primary); border-color: var(--border-strong); transform: rotate(15deg); }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ============== BUTTONS ==============
   Matches smartsonenterprises.com exactly:
   - "Explore Products" : solid orange fill, white text, rounded
   - "Let's Talk"       : white bg, orange border, orange text
   ============== */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer; transition: all 240ms cubic-bezier(.2,.8,.2,1);
  font-family: inherit; border-radius: 6px;
}
.btn-primary {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px -4px rgba(232, 92, 13, 0.45);
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(232, 92, 13, 0.55);
}
/* Shimmer on hover */
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: skewX(-22deg); transition: left 700ms cubic-bezier(.2,.8,.2,1);
}
.btn-primary:hover::after { left: 150%; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: 11px; letter-spacing: 0.10em; }
.btn-block { width: 100%; }
.btn-primary[disabled], .btn-outline[disabled] { opacity: 0.45; cursor: not-allowed; }

/* ============== LAYOUT ============== */
.site-main { min-height: calc(100vh - 72px); }
.section { padding: 100px 0; }
@media (max-width: 700px) { .section { padding: 60px 0; } }

/* ============== HERO ==============
   Matches smartsonenterprises.com:
   - Warm cream background #FFF5EE
   - Large bold heading (dark + orange split)
   - Orange CTA buttons
   - Decorative peach circles
   - NO dark background
   ============== */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-deep);      /* warm cream #FFF5EE */
}

/* Decorative circles — exactly like the website */
.hero::before {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(232, 92, 13, 0.10);
  right: -80px; top: -100px;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(232, 92, 13, 0.08);
  left: -60px; bottom: -80px;
  pointer-events: none;
}
.hero-inner {
  position: relative; padding: 110px 0;
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.5fr 1fr; padding: 150px 0; align-items: center; gap: 72px; }
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(38px, 6.8vw, 72px);
  font-weight: 800; line-height: 1.06; margin: 28px 0 30px;
  letter-spacing: -0.02em; color: var(--text);
}
/* "Barcode Solutions" in orange — matches the website exactly */
.hero h1 em { color: var(--primary); font-style: normal; font-family: inherit; font-weight: 800; }
.hero p {
  color: var(--text-soft);
  max-width: 560px; margin-bottom: 36px;
  line-height: 1.7; font-size: 17px; font-weight: 400;
}
/* Peach pill — "Mumbai's Leading Manufacturer" */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(232, 92, 13, 0.25);
  background: rgba(232, 92, 13, 0.08);
  padding: 7px 16px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); font-weight: 600; border-radius: 9999px;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px rgba(232,92,13,0.60); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

/* ============== STAT CARD ============== */
/* Matches smartsonenterprises.com: orange number, dark label, cream bg */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-card {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
}
.stat-card .v {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 42px; color: var(--primary); font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
}
.stat-card .l {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px; font-weight: 600;
}

/* ============== CARD / BENTO ============== */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 28px; border-radius: 8px;
  transition: all 280ms ease;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bento { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(12, 1fr); } }
.bento .card { padding: 36px; position: relative; overflow: hidden; }
.bento .card-7 { grid-column: span 12; }
.bento .card-5 { grid-column: span 12; }
@media (min-width: 900px) {
  .bento .card-7 { grid-column: span 7; }
  .bento .card-5 { grid-column: span 5; }
}
.bento-row { display: flex; align-items: flex-start; gap: 28px; }
.bento-row > div:first-child { flex: 1; }
.bento-thumb {
  width: 120px; height: 120px;
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border-radius: 6px;
}
@media (min-width: 768px) { .bento-thumb { width: 168px; height: 168px; } }
.bento-thumb img { max-width: 78%; max-height: 78%; object-fit: contain; }
.bento h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 28px; font-weight: 700; margin: 14px 0 10px;
  letter-spacing: -0.015em; color: var(--text);
}
.bento .card:hover h3 { color: var(--primary); transition: color 280ms; }

/* ============== SECTION HEAD ============== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.section-head h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; margin: 0;
  letter-spacing: -0.02em; color: var(--text);
}
.section-link { font-size: 11px; color: var(--primary); letter-spacing: 0.28em; text-transform: uppercase; transition: gap 220ms; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.section-link:hover { gap: 14px; }

/* ============== PRODUCT GRID ============== */
.product-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  display: block; padding: 24px;
  background: var(--surface);
  border: 1px solid var(--hairline); border-radius: 8px;
  transition: all 280ms;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.product-img {
  aspect-ratio: 4/3; background: var(--bg-tint);
  border: 1px solid var(--hairline); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; padding: 16px;
}
.product-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card .cat { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.product-card h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; margin: 8px 0 18px; line-height: 1.3; color: var(--text); letter-spacing: -0.01em;
}
.product-card .price { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.product-card .stock { font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

/* ============== INPUTS ============== */
.input, select.input, textarea.input {
  background: var(--bg);
  border: 1px solid var(--hairline);
  color: var(--text); padding: 14px 18px; width: 100%; outline: none;
  font-size: 15px; font-family: inherit; border-radius: 4px;
  transition: border-color 220ms, background 220ms;
}
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.label { display: block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.field { margin-bottom: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .row { grid-template-columns: 1fr; } }

/* ============== CHIPS ============== */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  padding: 9px 18px; font-size: 11px; letter-spacing: 0.12em;
  border: 1px solid var(--hairline); color: var(--text-soft); cursor: pointer;
  transition: all 220ms; background: var(--surface); font-weight: 600; border-radius: 9999px;
}
.chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 12px -4px rgba(232,92,13,0.40); }

/* ============== PAGE HEAD ============== */
.page-head h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(30px, 5.5vw, 52px); font-weight: 700; margin: 0 0 12px;
  letter-spacing: -0.02em; color: var(--text);
}
.page-head { padding-top: 60px; padding-bottom: 32px; }

/* ============== TABLES ============== */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 14px 18px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); background: var(--bg-tint); font-weight: 600; }
.table td { padding: 14px 18px; border-top: 1px solid var(--hairline); vertical-align: middle; color: var(--text); }
.table-wrap { border: 1px solid var(--hairline); border-radius: 8px; overflow-x: auto; background: var(--surface); }

/* ============== CART ============== */
.cart-item {
  display: grid; grid-template-columns: 90px 1fr auto auto auto;
  gap: 18px; align-items: center; padding: 18px;
  background: var(--surface);
  border: 1px solid var(--hairline); margin-bottom: 14px; border-radius: 8px;
}
.cart-item .thumb { width: 90px; height: 90px; background: var(--bg-tint); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 4px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: 4px; background: var(--bg); }
.qty-stepper button { width: 38px; height: 38px; background: transparent; color: var(--text); border: 0; font-size: 18px; cursor: pointer; transition: background 200ms; }
.qty-stepper button:hover { background: var(--primary-soft); color: var(--primary); }
.qty-stepper span { width: 38px; text-align: center; font-weight: 600; }
.remove-btn { background: transparent; border: 0; color: var(--muted); cursor: pointer; padding: 8px; transition: color 200ms; }
.remove-btn:hover { color: #DC2626; }

.cart-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .cart-grid { grid-template-columns: 2fr 1fr; align-items: flex-start; } }
.summary {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 28px; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary-total {
  display: flex; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--hairline); margin-top: 14px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
}

/* ============== PRODUCT DETAIL ============== */
.product-detail { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-detail h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.15; margin: 0;
  letter-spacing: -0.02em; color: var(--text);
}
.product-detail .price-big {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 38px; color: var(--primary); font-weight: 700;
  line-height: 1; letter-spacing: -0.025em;
  transition: opacity 200ms;
}
.specs { border: 1px solid var(--hairline); border-radius: 6px; background: var(--surface); }
.specs > div { padding: 14px 18px; border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text); }
.specs > div:first-child { border-top: 0; }
.specs .check { color: var(--primary); font-weight: 700; }

/* ============== SLIDER ============== */
.slider { position: relative; background: var(--surface); border: 1px solid var(--hairline); overflow: hidden; border-radius: 8px; }
.slider-track { display: flex; transition: transform 420ms cubic-bezier(.2,.8,.2,1); }
.slider-slide { flex: 0 0 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 40px; background: var(--bg-tint); }
.slider-slide img { max-height: 100%; max-width: 100%; object-fit: contain; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--surface); border: 1px solid var(--hairline);
  color: var(--text); cursor: pointer; font-size: 20px;
  backdrop-filter: blur(8px); border-radius: 9999px;
  transition: all 220ms; z-index: 2;
  box-shadow: var(--shadow-sm);
}
.slider-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.slider-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.slider-dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--hairline); border: 0; cursor: pointer; padding: 0; transition: all 240ms; }
.slider-dot.active { background: var(--primary); width: 26px; border-radius: 4px; }
.slider-thumbs { display: flex; gap: 10px; padding: 14px; overflow-x: auto; border-top: 1px solid var(--hairline); background: var(--surface); }
.slider-thumb { flex: 0 0 64px; width: 64px; height: 64px; background: var(--bg-tint); border: 2px solid transparent; cursor: pointer; padding: 5px; border-radius: 4px; transition: border-color 220ms; }
.slider-thumb img { width: 100%; height: 100%; object-fit: contain; }
.slider-thumb.active { border-color: var(--primary); }

/* ============== TIMELINE ============== */
.timeline { display: flex; align-items: flex-start; justify-content: space-between; position: relative; margin: 48px 0; }
.timeline-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.timeline-step:not(:last-child)::after { content: ''; position: absolute; top: 9px; left: 50%; right: -50%; height: 2px; background: var(--hairline); }
.timeline-step.done:not(:last-child)::after { background: var(--primary); }
.timeline-dot { width: 18px; height: 18px; border-radius: 9999px; background: var(--surface); border: 2px solid var(--hairline); position: relative; z-index: 1; }
.timeline-step.done .timeline-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 6px var(--primary-soft); }
.timeline-step .label { margin-top: 14px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.timeline-step.done .label { color: var(--text); }
@media (max-width: 700px) { .timeline { flex-direction: column; align-items: flex-start; gap: 14px; } .timeline-step { flex-direction: row; gap: 14px; align-items: center; } .timeline-step::after { display: none; } }

/* ============== TRACK ============== */
.track-form { display: flex; gap: 14px; margin-bottom: 36px; }
.track-form .input { flex: 1; }

/* ============== AUTH ============== */
.auth-card { max-width: 440px; margin: 80px auto; padding: 0 24px; }
.auth-card h1 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: 32px; margin-bottom: 28px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

/* ============== ALERT ============== */
.alert { padding: 14px 18px; margin-bottom: 18px; border: 1px solid; font-size: 14px; border-radius: 4px; }
.alert-error { border-color: rgba(220,38,38,0.4); background: rgba(220,38,38,0.06); color: #DC2626; }
[data-theme="dark"] .alert-error { color: #fca5a5; }
.alert-success { border-color: var(--border-strong); background: var(--primary-soft); color: var(--primary); }

/* ============== FOOTER ============== */
.site-footer { border-top: 1px solid var(--hairline); margin-top: 100px; background: var(--footer-bg); color: var(--footer-text); }
.site-footer .logo-text, .site-footer h3 { color: #fff; }
.site-footer .muted, .site-footer .eyebrow { color: var(--footer-text); }
.site-footer .eyebrow { color: var(--primary); }
.footer-grid { display: grid; gap: 36px; padding: 72px 32px; grid-template-columns: 1fr; max-width: 1200px; margin: 0 auto; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer ul li { margin-bottom: 10px; font-size: 14px; color: var(--footer-text); }
.site-footer ul li a { color: var(--footer-text); }
.site-footer ul li a:hover { color: var(--primary); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding: 26px 32px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 10px; color: var(--footer-text); letter-spacing: 0.22em; text-transform: uppercase; flex-wrap: wrap; gap: 14px; max-width: 1200px; margin: 0 auto; }

/* ============== WHATSAPP ============== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; background: #25D366; color: #fff;
  border-radius: 9999px;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,0.55);
  font-weight: 600; font-size: 13px;
  transition: transform 220ms;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ============== ADMIN ============== */
.admin-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--hairline); margin-bottom: 36px; overflow-x: auto; }
.admin-tabs a { padding: 16px 22px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; font-weight: 600; }
.admin-tabs a.active { color: var(--primary); border-color: var(--primary); }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 28px; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.modal-back { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 70; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal { background: var(--surface); border: 1px solid var(--hairline); width: 100%; max-width: 580px; padding: 32px; max-height: 90vh; overflow: auto; border-radius: 8px; box-shadow: var(--shadow-lg); }

/* ============== PILLS ============== */
.pill { display: inline-block; padding: 5px 12px; border: 1px solid; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; border-radius: 9999px; background: var(--surface); }
.pill.placed { color: #2563EB; border-color: rgba(37,99,235,0.3); }
.pill.processing { color: var(--primary); border-color: var(--border-strong); }
.pill.shipped { color: #7C3AED; border-color: rgba(124,58,237,0.3); }
.pill.delivered { color: #059669; border-color: rgba(5,150,105,0.3); }
.pill.cancelled { color: #DC2626; border-color: rgba(220,38,38,0.3); }

/* ============== HELPERS ============== */
.flex { display: flex; align-items: center; gap: 14px; }
.gap-3 { gap: 12px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.between { justify-content: space-between; }
.shrink { flex-shrink: 0; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--primary-soft); border: 1px solid var(--border-strong); color: var(--primary); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; border-radius: 9999px; }

/* ============== MOBILE ============== */
.hide-on-mobile { display: none; }
@media (min-width: 768px) { .hide-on-mobile { display: inline-flex; } }

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; background: transparent;
  border: 1px solid var(--hairline); border-radius: 4px;
  cursor: pointer; padding: 0 11px; transition: border-color 220ms;
}
.hamburger:hover { border-color: var(--border-strong); }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--text); transition: transform 240ms, opacity 240ms; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg); padding: 32px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 49; overflow-y: auto;
  border-top: 1px solid var(--hairline);
}
.mobile-menu a {
  padding: 18px 0; font-size: 16px; color: var(--text);
  border-bottom: 1px solid var(--hairline);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 600;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu a.muted { color: var(--muted); font-size: 13px; font-family: inherit; letter-spacing: 0.16em; text-transform: uppercase; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* Header tightening on mobile */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .header-inner { height: 60px; }
  .logo-text { font-size: 19px; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-mark::after { inset: 7px; }
  .nav-actions { gap: 8px; }
  .cart-link { padding: 4px; }
  .theme-toggle { width: 36px; height: 36px; }
  .mobile-menu { top: 60px; padding: 24px; }
}

@media (max-width: 700px) {
  .hero-inner { padding: 70px 0 80px; gap: 36px; }
  .hero h1 { font-size: 42px; line-height: 1.06; margin: 22px 0 24px; }
  .hero p { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { flex: 1; min-width: 0; padding: 13px 16px; font-size: 11px; }
  .stats-grid { gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-card .v { font-size: 30px; }
  .stat-card .l { font-size: 9px; }
}

@media (max-width: 480px) {
  .product-grid { gap: 12px; grid-template-columns: repeat(2, 1fr); }
  .product-card { padding: 14px; }
  .product-img { margin-bottom: 14px; padding: 10px; }
  .product-card h3 { font-size: 15px; line-height: 1.25; margin: 4px 0 12px; }
  .product-card .cat { font-size: 9px; letter-spacing: 0.18em; }
  .product-card .price { font-size: 20px; }
  .product-card .stock { font-size: 9px; }
  .section-head h2 { font-size: 26px; }
  .page-head h1 { font-size: 32px; }
}

@media (max-width: 700px) {
  .bento .card { padding: 22px; }
  .bento h3 { font-size: 22px; margin: 10px 0 8px; }
  .bento-row { gap: 16px; }
  .bento-thumb { width: 100px; height: 100px; }
  .bento .muted { font-size: 13px; }
  .product-detail { gap: 28px; }
  .product-detail h1 { font-size: 28px; line-height: 1.18; }
  .product-detail .price-big { font-size: 36px; }
  .specs > div { padding: 12px 14px; font-size: 13px; }
  .qty-stepper button { width: 34px; height: 34px; font-size: 16px; }
  .qty-stepper span { width: 34px; }
  .btn-primary, .btn-outline { padding: 13px 22px; font-size: 11px; }
}

@media (max-width: 600px) {
  .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .slider-slide { padding: 22px; }
  .slider-thumb { flex: 0 0 50px; width: 50px; height: 50px; }
}

@media (max-width: 700px) {
  .cart-item { grid-template-columns: 60px 1fr auto; gap: 12px; padding: 14px; row-gap: 12px; }
  .cart-item .thumb { width: 60px; height: 60px; }
  .cart-item .qty-stepper { grid-column: 1 / -1; justify-self: start; }
  .cart-item .lineprice { grid-column: 2; justify-self: end; min-width: 0 !important; font-size: 15px; }
  .cart-item .remove { grid-column: 3; }
  .summary { padding: 22px; }
  .summary-total { font-size: 22px; }
  .track-form { flex-direction: column; }
  .track-form .btn-primary { width: 100%; }
  .admin-tabs a { padding: 13px 16px; font-size: 10px; }
  .table th, .table td { padding: 11px 14px; font-size: 13px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-row .card { padding: 18px; }
  .stat-row .font-display { font-size: 24px !important; }
}

@media (max-width: 480px) {
  .auth-card { margin: 40px auto; padding: 0 20px; }
  .auth-card h1 { font-size: 30px; }
  .input { padding: 12px 16px; font-size: 14px; }
  .whatsapp-float { bottom: 18px; right: 18px; padding: 12px 14px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

@media (max-width: 600px) {
  .footer-grid { padding: 48px 20px; gap: 28px; }
  .footer-bar { flex-direction: column; padding: 22px; text-align: center; }
  .modal { padding: 22px; max-height: 92vh; }
  .modal h3 { font-size: 22px !important; }
}

@media (max-width: 900px) { .cart-grid { gap: 22px; } }

/* ============================================================
   v10 ADDITIONS — Toast, Confetti, Share, GST, Page Fade-in
   ============================================================ */

/* Page fade-in on load */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-main { animation: page-fade-in 420ms cubic-bezier(.2,.8,.2,1); }

/* Staggered reveal on product grid */
@keyframes card-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-grid .product-card { animation: card-rise 480ms cubic-bezier(.2,.8,.2,1) backwards; }
.product-grid .product-card:nth-child(1) { animation-delay: 40ms; }
.product-grid .product-card:nth-child(2) { animation-delay: 90ms; }
.product-grid .product-card:nth-child(3) { animation-delay: 140ms; }
.product-grid .product-card:nth-child(4) { animation-delay: 190ms; }
.product-grid .product-card:nth-child(5) { animation-delay: 240ms; }
.product-grid .product-card:nth-child(6) { animation-delay: 290ms; }
.product-grid .product-card:nth-child(n+7) { animation-delay: 340ms; }

/* Button press feedback */
.btn-primary:active, .btn-outline:active { transform: translateY(0) scale(0.98); transition-duration: 80ms; }

/* Toast / snackbar */
.toast-stack {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: 92vw;
}
.toast {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--text); color: var(--bg);
  border-radius: 999px;
  box-shadow: 0 18px 48px -14px rgba(15, 27, 48, 0.4);
  font-size: 14px; font-weight: 500;
  animation: toast-in 320ms cubic-bezier(.2,.8,.2,1);
  max-width: 92vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.toast.success { background: #0F9D58; color: #fff; }
.toast.error { background: #DC2626; color: #fff; }
.toast.info { background: var(--text); color: var(--bg); }
.toast-icon { display: inline-flex; width: 18px; height: 18px; flex-shrink: 0; }
.toast.hide { animation: toast-out 280ms cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(14px); }
}

/* Button "loading" state (for AJAX add-to-cart) */
.btn-primary.is-loading, .btn-outline.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn-primary.is-loading::after, .btn-outline.is-loading::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 16px; height: 16px;
  margin: -8px 0 0 -8px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent;
  animation: btn-spin 620ms linear infinite;
}
.btn-outline.is-loading::after { border-color: var(--primary); border-top-color: transparent; }
.btn-primary.is-loading::after { border-color: #fff; border-top-color: transparent; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* Share button */
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: transparent; color: var(--text-soft);
  border: 1px solid var(--hairline); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: all 220ms;
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); }
.share-btn svg { width: 14px; height: 14px; }

/* Inclusive GST tag */
.incl-gst-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  margin-left: 8px;
}

/* Order success — checkmark + confetti */
.order-success-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(184, 135, 12, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 32px; border-radius: 12px;
  text-align: center; margin-bottom: 28px; overflow: hidden;
}
.success-check-wrap { display: inline-flex; width: 72px; height: 72px; margin-bottom: 18px; position: relative; }
.success-check-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: #10B981;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(16, 185, 129, 0.5);
  animation: check-pop 520ms cubic-bezier(.2,1.3,.3,1);
}
.success-check-circle svg { width: 36px; height: 36px; stroke-dasharray: 40; stroke-dashoffset: 40; animation: check-draw 420ms cubic-bezier(.2,.8,.2,1) 260ms forwards; }
@keyframes check-pop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.order-success-banner h2 { font-size: 26px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.015em; color: var(--text); }
.order-success-banner p { color: var(--text-soft); margin: 0; font-size: 15px; }
.order-success-banner .order-num-chip { display: inline-block; margin-top: 14px; padding: 8px 18px; background: var(--primary); color: #fff; border-radius: 999px; font-weight: 700; letter-spacing: 0.06em; font-size: 15px; }

/* Confetti */
.confetti-piece {
  position: absolute; top: -10px; width: 8px; height: 14px; opacity: 0;
  animation: confetti-fall 2200ms cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes confetti-fall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translateY(260px) rotate(720deg); }
}

/* GST breakdown in summary */
.summary .gst-line { font-size: 12px; color: var(--muted); padding: 4px 0; }
.summary .gst-line .val { color: var(--text-soft); }

/* Coupon / share feedback tweaks */
.btn-icon { background: transparent; border: 0; cursor: pointer; color: var(--text-soft); padding: 6px; transition: color 200ms; }
.btn-icon:hover { color: var(--primary); }

/* Responsive safety: prevent horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }
.container, .footer-grid { max-width: 100%; }
img, svg, video, table { max-width: 100%; }

/* Product detail: tighten mobile actions */
@media (max-width: 600px) {
  .product-detail .price-big { font-size: 32px; }
  .share-btn { padding: 8px 12px; font-size: 10px; }
}

/* Prevent cart-item overflow */
@media (max-width: 480px) {
  .cart-item > div { min-width: 0; }
  .cart-item div[style*="font-weight"] { word-break: break-word; }
}


/* ============================================================
   v13 ADDITIONS — Featured Carousel + Extra Animations
   ============================================================ */

/* Auto-sliding featured carousel */
.featured-carousel {
  position: relative; margin: 0 -8px;
  overflow: hidden; padding: 8px 0 16px;
}
.featured-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px;
  transition: transform 620ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.featured-track > .product-card {
  flex: 0 0 calc(25% - 15px) !important;
  width: calc(25% - 15px) !important;
  min-width: 0;
  display: block !important;
  animation: none !important;
}
@media (max-width: 1100px) {
  .featured-track > .product-card { flex-basis: calc(33.333% - 14px) !important; width: calc(33.333% - 14px) !important; }
}
@media (max-width: 900px) {
  .featured-track > .product-card { flex-basis: calc(50% - 10px) !important; width: calc(50% - 10px) !important; }
}
@media (max-width: 560px) {
  .featured-track > .product-card { flex-basis: calc(80% - 10px) !important; width: calc(80% - 10px) !important; }
}

.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrow {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 999px; cursor: pointer; color: var(--text-soft);
  transition: all 220ms;
}
.carousel-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }
.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--hairline); border: 0; cursor: pointer; padding: 0; transition: all 240ms; }
.carousel-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* Hero entrance */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .hero-pill { animation: hero-fade-up 620ms cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 100ms; }
.hero h1 { animation: hero-fade-up 720ms cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 180ms; }
.hero p { animation: hero-fade-up 720ms cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 280ms; }
.hero .hero-actions { animation: hero-fade-up 720ms cubic-bezier(.2,.8,.2,1) backwards; animation-delay: 360ms; }
.hero .stats-grid > * { animation: hero-fade-up 720ms cubic-bezier(.2,.8,.2,1) backwards; }
.hero .stats-grid > *:nth-child(1) { animation-delay: 440ms; }
.hero .stats-grid > *:nth-child(2) { animation-delay: 510ms; }
.hero .stats-grid > *:nth-child(3) { animation-delay: 580ms; }
.hero .stats-grid > *:nth-child(4) { animation-delay: 650ms; }

/* Scroll-reveal utility */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 720ms cubic-bezier(.2,.8,.2,1), transform 720ms cubic-bezier(.2,.8,.2,1); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Bento cards lift + gold shine hover */
.bento .card { position: relative; overflow: hidden; }
.bento .card::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-22deg); transition: left 900ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.bento .card:hover::before { left: 140%; }
.bento .bento-thumb img { transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.bento .card:hover .bento-thumb img { transform: scale(1.08) rotate(-2deg); }

/* Primary button shimmer on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-22deg); transition: left 700ms cubic-bezier(.2,.8,.2,1);
}
.btn-primary:hover::after { left: 150%; }

/* Chip/category bounce on hover */
.chip { transition: all 220ms cubic-bezier(.2,1.3,.3,1); }
.chip:hover { transform: translateY(-2px); }

/* Section-head underline grow */
.section-head h2 { position: relative; padding-bottom: 14px; }
.section-head h2::after {
  content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  transition: width 900ms cubic-bezier(.2,.8,.2,1);
}
.section-head h2.in-view::after, .section-head.in-view h2::after { width: 72px; }

/* Nav link underline improvement */
.nav-main a { position: relative; }
.nav-main a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  margin: 0 auto; width: 0; height: 2px; background: var(--primary);
  transition: width 280ms cubic-bezier(.2,.8,.2,1);
}
.nav-main a:hover::after { width: 100%; }

/* Floating WhatsApp pulse */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 14px 36px -10px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 14px 36px -10px rgba(37,211,102,0.55), 0 0 0 18px rgba(37,211,102,0); }
}
.whatsapp-float { animation: wa-pulse 2800ms ease-out infinite; }

/* Cart badge bounce on update */
@keyframes badge-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.cart-badge.bump { animation: badge-bounce 380ms cubic-bezier(.2,1.3,.3,1); }

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}


/* ============================================================
   SMARTSONENTERPRISES.COM THEME OVERRIDES
   Applied from live website screenshot — Orange + Cream palette
   ============================================================ */

/* ── Page background: warm cream on all pages ── */
.site-main { background: var(--bg-deep); }
.section { background: transparent; }

/* ── Alternating section: white ── */
.section:nth-child(even) { background: var(--bg); }

/* ── Section head underline: orange ── */
.section-head h2::after {
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
}

/* ── Eyebrow: orange ── */
.eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 0.20em; }

/* ── Section link arrow: orange ── */
.section-link { color: var(--primary); }

/* ── Product card: cream bg, orange on hover ── */
.product-card {
  background: var(--surface);
  border-radius: 10px;
}
.product-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px -8px rgba(232,92,13,0.20); }
.product-card .cat { color: var(--primary); }
.product-img { background: var(--bg-tint); border-radius: 8px; border-color: var(--hairline); }

/* ── Bento cards ── */
.bento .card { background: var(--surface); border-radius: 10px; }
.bento .card:hover { border-color: var(--primary); box-shadow: 0 10px 32px -10px rgba(232,92,13,0.18); }
.bento .card:hover h3 { color: var(--primary); }

/* ── Theme toggle: orange border on hover ── */
.theme-toggle:hover { color: var(--primary); border-color: var(--primary); }

/* ── Input focus: orange ring ── */
.input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,92,13,0.12); }

/* ── Timeline active: orange ── */
.timeline-step.done .timeline-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 6px rgba(232,92,13,0.12); }
.timeline-step.done:not(:last-child)::after { background: var(--primary); }

/* ── Slider dot active: orange ── */
.slider-dot.active { background: var(--primary); }
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-thumb.active { border-color: var(--primary); }

/* ── Cart badge bounce: orange ── */
.cart-badge { background: var(--primary); }

/* ── Alert success: orange ── */
.alert-success { border-color: rgba(232,92,13,0.40); background: rgba(232,92,13,0.06); color: var(--primary); }

/* ── Order success banner: orange tint ── */
.order-success-banner {
  background: linear-gradient(135deg, rgba(232,92,13,0.06), rgba(255,107,26,0.04));
  border-color: rgba(232,92,13,0.25);
}
.order-num-chip { background: var(--primary); }

/* ── Admin active tab: orange ── */
.admin-tabs a.active { color: var(--primary); border-color: var(--primary); }

/* ── Pill badge: orange ── */
.pill.processing { color: var(--primary); border-color: rgba(232,92,13,0.35); }

/* ── Tag: orange ── */
.tag { background: var(--primary-soft); border-color: var(--border-strong); color: var(--primary); }

/* ── Carousel/slider arrows: orange on hover ── */
.carousel-arrow:hover { background: var(--primary); border-color: var(--primary); }
.carousel-dot.active { background: var(--primary); }

/* ── WhatsApp button (keep green) ── */
.whatsapp-float { background: #25D366; }

/* ── Hero actions on cream bg (no override needed, orange btns work) ── */
.hero-actions .btn-primary { font-size: 13px; padding: 14px 26px; letter-spacing: 0.04em; }
.hero-actions .btn-outline { font-size: 13px; padding: 14px 26px; letter-spacing: 0.04em; }

/* ── Mobile nav active: orange ── */
.mobile-menu a:hover { color: var(--primary); }

/* ── Logo hover: subtle scale ── */
.logo:hover .logo-img { transform: scale(1.03); }

/* ── Section backgrounds match warm cream ── */
.page-head { background: var(--bg-deep); padding-top: 60px; padding-bottom: 32px; }

/* ── Summary box: orange total accent ── */
.summary-total { color: var(--text); }

/* ── Price in orange ── */
.product-detail .price-big { color: var(--primary); }

/* ── Active nav link mark (PHP can add .active class) ── */
.nav-main a.active { background: var(--primary); color: #fff !important; border-radius: 6px; padding: 8px 16px; }

/* ── Font size restore (removed uppercase from buttons) ── */
.btn-primary, .btn-outline { text-transform: none; }



/* ============================================================
   SMARTSON v14 — New Fonts + Rich Animations + SEO Helpers
   ============================================================ */

/* ── Global heading font upgrade ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Nunito Sans', sans-serif;
  letter-spacing: -0.02em;
}
h1 {
  font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ── Hero h1 ── */
.hero h1 {
  font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* ── Animated underline on hero keyword ── */
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: keyword-line 900ms cubic-bezier(.2,.8,.2,1) 800ms forwards;
}
@keyframes keyword-line {
  to { transform: scaleX(1); }
}

/* ── Section h2 bigger + bolder ── */
.section h2, .section-head h2 {
  font-family: 'Space Grotesk', 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
}

/* ── Product card heading ── */
.product-card h3 {
  font-family: 'Space Grotesk', 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

/* ── Button typography ── */
.btn-primary, .btn-outline, .btn-sm {
  font-family: 'Space Grotesk', 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Stat cards ── */
.stat-card .v {
  font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.stat-card .l {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS — ENTRANCE, HOVER, SCROLL, AMBIENT
   ══════════════════════════════════════════════════════ */

/* ── Floating ambient particle layer on hero ── */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,92,13,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,92,13,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-ambient 8s ease-in-out infinite alternate;
}
@keyframes hero-ambient {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.06); }
}

/* ── Floating barcode line decoration ── */
.hero::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(232,92,13,0.08);
  animation: spin-slow 30s linear infinite;
  pointer-events: none;
}
@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }

/* ── Stat card count-up shimmer ── */
.stat-card {
  position: relative;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,1,.3,1), box-shadow 320ms;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 42px -12px rgba(232,92,13,0.22);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,92,13,0.06), transparent);
  opacity: 0;
  transition: opacity 360ms;
  border-radius: inherit;
}
.stat-card:hover::before { opacity: 1; }

/* ── Bento card 3D tilt on hover ── */
.bento .card {
  transition:
    transform 400ms cubic-bezier(.2,.8,.2,1),
    box-shadow 400ms cubic-bezier(.2,.8,.2,1),
    border-color 250ms;
}
.bento .card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 24px 60px -16px rgba(232,92,13,0.22);
}

/* ── Product card lift + glow ── */
.product-card {
  transition:
    transform 350ms cubic-bezier(.2,1,.3,1),
    box-shadow 350ms cubic-bezier(.2,1,.3,1),
    border-color 250ms;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -14px rgba(232,92,13,0.25);
}

/* ── Product card image zoom ── */
.product-img img {
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 400ms;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
  filter: brightness(1.04) saturate(1.1);
}

/* ── Staggered scroll-reveal with slide directions ── */
[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 750ms cubic-bezier(.2,.8,.2,1), transform 750ms cubic-bezier(.2,.8,.2,1);
}
[data-reveal="left"].in-view { opacity: 1; transform: translateX(0); }

[data-reveal="right"] {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 750ms cubic-bezier(.2,.8,.2,1), transform 750ms cubic-bezier(.2,.8,.2,1);
}
[data-reveal="right"].in-view { opacity: 1; transform: translateX(0); }

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
[data-reveal="scale"].in-view { opacity: 1; transform: scale(1); }

/* stagger variants */
[data-reveal-delay="1"] { transition-delay: 80ms !important; }
[data-reveal-delay="2"] { transition-delay: 160ms !important; }
[data-reveal-delay="3"] { transition-delay: 240ms !important; }
[data-reveal-delay="4"] { transition-delay: 320ms !important; }

/* ── WhatsApp float pulsing ring ── */
.whatsapp-float {
  position: relative;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-ring 2400ms ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── Cart icon wiggle on badge update ── */
@keyframes cart-wiggle {
  0%,100% { transform: rotate(0deg); }
  20%     { transform: rotate(-12deg); }
  40%     { transform: rotate(10deg); }
  60%     { transform: rotate(-6deg); }
  80%     { transform: rotate(4deg); }
}
.cart-link.wiggle svg { animation: cart-wiggle 500ms cubic-bezier(.2,1,.3,1); }

/* ── Header scroll shrink ── */
.site-header {
  transition: height 280ms ease, box-shadow 280ms ease, background 280ms ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px -8px rgba(13,27,42,0.16) !important;
}
.site-header.scrolled .header-inner { height: 58px; }

/* ── Section divider animated gradient bar ── */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 20%,
    var(--primary-bright) 50%,
    var(--primary) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: divider-flow 3s linear infinite;
  border: 0; margin: 0;
}
@keyframes divider-flow {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Hero pill badge animation ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,92,13,0.1);
  border: 1px solid rgba(232,92,13,0.25);
  color: var(--primary);
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-pill::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pill-pulse 1800ms ease-in-out infinite;
}
@keyframes pill-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,92,13,0.6); }
  50%     { box-shadow: 0 0 0 6px rgba(232,92,13,0); }
}

/* ── Number counter animation ── */
@keyframes count-up-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-card .v {
  animation: count-up-fade 600ms cubic-bezier(.2,.8,.2,1) backwards;
}

/* ── Eyebrow text shimmer ── */
.eyebrow {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-bright) 40%, var(--primary) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eyebrow-shimmer 4s linear infinite;
}
@keyframes eyebrow-shimmer {
  to { background-position: 200% center; }
}

/* ── Footer links hover ── */
.site-footer ul a {
  transition: color 200ms, padding-left 200ms;
  display: inline-block;
}
.site-footer ul a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ── Bulk CTA section animated border ── */
.bulk-cta-section {
  position: relative;
  overflow: hidden;
}
.bulk-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: border-sweep 3s linear infinite;
}
@keyframes border-sweep {
  to { left: 200%; }
}

/* ── Input animated focus ring ── */
.input {
  transition: border-color 220ms, box-shadow 220ms, transform 180ms;
}
.input:focus {
  transform: translateY(-1px);
}

/* ── Page-level scroll progress indicator ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  z-index: 9999;
  transition: width 60ms linear;
  border-radius: 0 2px 2px 0;
}

/* ── Mobile menu slide in ── */
.mobile-menu {
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), opacity 260ms;
}
.mobile-menu:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
}

/* ══ SEO — visually hidden but accessible headings ══ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══ FAQ accordion (SEO rich snippet support) ══ */
.faq-item {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 200ms;
}
.faq-q:hover { color: var(--primary); }
.faq-q .faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), background 200ms;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  transition: max-height 400ms cubic-bezier(.2,.8,.2,1), padding 300ms;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── Page transition overlay ── */
.page-transition-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright), var(--primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}

/* ── Responsive adjustments for new fonts ── */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(42px, 12vw, 68px); }
  .stat-card .v { font-size: 38px; }
}

