/* ============================================================
   CheapBattery Theme — main.css
   ============================================================ */

/* ── CSS VARIABLES (Light Mode) ─────────────────────────── */
:root {
  --leaf:        #2ecc71;
  --leaf-dark:   #1a8a4a;
  --leaf-deep:   #0f5c32;
  --gold:        #f4c430;
  --sun:         #ff9800;
  --bg:          #f8fbf9;
  --surface:     #ffffff;
  --surface2:    #f0f7f2;
  --text:        #0d1f13;
  --text2:       #3d5a47;
  --text3:       #6b8a74;
  --border:      #d4edda;
  --border2:     #b8dcc3;
  --shadow:      rgba(46,204,113,0.12);
  --shadow-md:   rgba(46,204,113,0.20);
  --badge-bg:    #e8f5ec;
  --nav-bg:      rgba(255,255,255,0.95);
  --announce-bg: linear-gradient(90deg,#1a8a4a,#2ecc71,#1a8a4a);
  --hero-bg:     linear-gradient(135deg,#0d1f13 0%,#1a5c20 50%,#0f5c32 100%);
  --card-bg:     #ffffff;
  --input-bg:    #f8fbf9;
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  0.22s ease;
  --font:        'Outfit', 'DM Sans', system-ui, sans-serif;
}

/* ── Dark Mode ───────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:          #0a1510;
  --surface:     #111e15;
  --surface2:    #162219;
  --text:        #e8f5ec;
  --text2:       #a8d4b4;
  --text3:       #6b9e77;
  --border:      #1e3325;
  --border2:     #264433;
  --shadow:      rgba(0,0,0,0.4);
  --shadow-md:   rgba(0,0,0,0.6);
  --badge-bg:    #1a2e1f;
  --nav-bg:      rgba(10,21,16,0.97);
  --card-bg:     #111e15;
  --input-bg:    #0d1a10;
  --hero-bg:     linear-gradient(135deg,#050d07 0%,#0d2010 50%,#081510 100%);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

a { color: var(--leaf); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--leaf-dark); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.cb-announcement {
  background: var(--announce-bg);
  color: #fff;
  text-align: center;
  padding: 9px 1rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  z-index: 1000;
}
.cb-announcement strong { color: var(--gold); font-weight: 700; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.cb-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px var(--shadow-md);
}
.logo span { font-size: 1.22rem; font-weight: 800; }
.logo .cheap { color: var(--leaf-dark); }
.logo .bat   { color: var(--text); }
[data-theme="dark"] .logo .bat { color: var(--text); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-btn {
  background: none;
  border: none;
  color: var(--text2);
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.nav-btn:hover, .nav-btn.active { color: var(--leaf); background: var(--badge-bg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px var(--shadow-md);
  min-width: 220px;
  padding: .5rem;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--badge-bg); color: var(--leaf-dark); }
.d-icon { font-size: 1.1rem; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: auto; }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { background: var(--badge-bg); border-color: var(--leaf); }
.theme-icon { position: absolute; transition: all .3s; }
.theme-icon.moon { opacity: 0; transform: translateY(20px); }
[data-theme="dark"] .theme-icon.sun  { opacity: 0; transform: translateY(-20px); }
[data-theme="dark"] .theme-icon.moon { opacity: 1; transform: translateY(0); }

.cta-nav {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px var(--shadow-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.cta-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--shadow-md); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--surface);
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--badge-bg); color: var(--leaf); }
.mobile-sub {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  padding: 1rem 1rem .35rem;
}
.mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 1.4rem;
  color: var(--text2);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
}

/* ── SECTION UTILITIES ───────────────────────────────────── */
.section { padding: 5rem 0; }
.bg-surface    { background: var(--surface); }
.bg-surface2   { background: var(--surface2); }
.bg-gradient-subtle { background: linear-gradient(135deg, var(--surface2) 0%, var(--bg) 100%); }
.text-center { text-align: center; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--badge-bg);
  border: 1px solid var(--border2);
  color: var(--leaf-dark);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .g {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px var(--shadow-md); color: #fff; filter: brightness(1.05); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--border2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--leaf); color: var(--leaf); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--leaf-dark);
  font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-white:hover { background: var(--gold); color: #000; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

.btn-view-all {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface);
  border: 2px solid var(--border2);
  color: var(--text2);
  font-weight: 700; font-size: .95rem;
  padding: .75rem 2rem; border-radius: 50px;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-view-all:hover { border-color: var(--leaf); color: var(--leaf); }

.view-all-wrap { text-align: center; margin-top: 2.5rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--hero-bg);
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(46,204,113,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,138,74,0.12) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(46,204,113,0.18);
  border: 1px solid rgba(46,204,113,0.35);
  color: var(--leaf);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--leaf);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: .75rem 1.25rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.stat-card .num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--leaf);
  line-height: 1;
}
.stat-card .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero visual / Battery showcase */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.battery-showcase {
  position: relative;
  width: 380px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.battery-main-img {
  width: 200px; height: 260px;
  background: linear-gradient(160deg, rgba(46,204,113,0.25), rgba(15,92,50,0.4));
  border: 2px solid rgba(46,204,113,0.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 0 60px rgba(46,204,113,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}
.solar-anim { animation: spin 8s linear infinite; display: inline-block; }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 3;
}
.fc1 { top: 30px; left: -20px; animation: float 4s ease-in-out infinite; }
.fc2 { bottom: 50px; right: -20px; animation: float 4s ease-in-out infinite .7s; }
.fc-icon { font-size: 1.4rem; }
.fc-val { font-size: 1rem; font-weight: 800; color: var(--leaf); line-height: 1; }

.battery-chips {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
  white-space: nowrap;
}
.chip {
  background: rgba(46,204,113,0.18);
  border: 1px solid rgba(46,204,113,0.35);
  color: var(--leaf);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* ── BRANDS STRIP ────────────────────────────────────────── */
.brands-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.brands-track {
  display: flex;
  gap: 0;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.brand-item {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text3);
  padding: .5rem 2.5rem;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  transition: color var(--transition);
}
.brands-strip:hover .brands-track { animation-play-state: paused; }
.brand-item:hover { color: var(--leaf); }

/* ── CATEGORY GRID ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}
.cat-card:hover {
  border-color: var(--leaf);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-md);
}
.cat-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.cat-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.cat-count { font-size: .78rem; color: var(--text3); margin-bottom: .6rem; }
.cat-arrow {
  font-size: .78rem;
  font-weight: 700;
  color: var(--leaf);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.prod-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
}
.prod-card:hover { border-color: var(--leaf); transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-md); }

.prod-img {
  height: 220px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.prod-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.prod-badge.hot {
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
}

.prod-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.prod-brand { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--leaf); }
.prod-name { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.prod-specs { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .25rem; }
.spec-tag {
  font-size: .72rem;
  font-weight: 600;
  background: var(--badge-bg);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: .2rem .6rem;
  border-radius: 50px;
}
.prod-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--leaf-dark);
  margin-top: auto;
  padding-top: .5rem;
}
.prod-price span { font-size: .78rem; font-weight: 500; color: var(--text3); }
.cb-poa-price { font-size: 1.2rem; font-weight: 800; color: var(--leaf-dark); }
.cb-poa-price small { font-size: .75rem; font-weight: 500; color: var(--text3); }

.prod-footer { display: flex; gap: .6rem; margin-top: .75rem; }
.btn-quote {
  flex: 1;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1rem;
  border-radius: 50px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-quote:hover { filter: brightness(1.1); color: #fff; }
.btn-details {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: .82rem;
  font-weight: 600;
  padding: .6rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-details:hover { border-color: var(--leaf); color: var(--leaf); }

/* ── WHY GRID ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}
.why-card:hover { border-color: var(--leaf); transform: translateY(-3px); box-shadow: 0 12px 32px var(--shadow-md); }
.why-icon { font-size: 2.2rem; margin-bottom: .85rem; }
.why-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.why-desc { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.how-step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px var(--shadow-md);
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.step-desc { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-card:hover { border-color: var(--leaf); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }
.testi-text { font-size: .92rem; color: var(--text2); line-height: 1.7; font-style: italic; flex: 1; }
.testi-auth { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.testi-loc { font-size: .78rem; color: var(--text3); }

/* ── BLOG GRID ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 10px var(--shadow);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--leaf); transform: translateY(-4px); box-shadow: 0 14px 36px var(--shadow-md); }
.blog-thumb {
  height: 200px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog-cat {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--leaf-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.blog-date { font-size: .78rem; color: var(--text3); font-weight: 500; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.blog-card:hover .blog-title { color: var(--leaf); }
.blog-excerpt { font-size: .88rem; color: var(--text2); line-height: 1.6; flex: 1; }
.blog-read { font-size: .82rem; font-weight: 700; color: var(--leaf); margin-top: auto; }

/* Blog hero */
.blog-hero {
  background: var(--hero-bg);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.blog-hero .section-title { color: #fff; }
.blog-hero .section-sub { color: rgba(255,255,255,.75); }
.blog-hero .section-label { background: rgba(46,204,113,0.18); border-color: rgba(46,204,113,0.35); color: var(--leaf); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--leaf-deep), var(--leaf-dark), var(--leaf));
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-md);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}
.cta-banner .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── SINGLE BLOG POST ────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.post-hero-img {
  height: 60px;
  font-size: 3rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.post-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--text); line-height: 1.2; margin-bottom: 1rem; }
.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text3);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.post-content { font-size: 1rem; color: var(--text2); line-height: 1.8; }
.post-content h2, .post-content h3 { color: var(--text); margin: 2rem 0 .75rem; font-weight: 800; }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: .4rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content blockquote {
  border-left: 4px solid var(--leaf);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--badge-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text2);
}

.post-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px var(--shadow);
}
.sidebar-title { font-size: .92rem; font-weight: 800; color: var(--text); margin-bottom: .85rem; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.cb-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text3);
  margin-bottom: 1.5rem;
}
.cb-breadcrumb a { color: var(--leaf); }
.cb-breadcrumb span { color: var(--text3); }

/* ── PAGE CONTENT ────────────────────────────────────────── */
.cb-page-wrap { max-width: 900px; margin: 0 auto; }
.cb-page-content { font-size: 1rem; color: var(--text2); line-height: 1.8; }
.cb-page-content h2, .cb-page-content h3 { color: var(--text); margin: 2rem 0 .75rem; font-weight: 800; }
.cb-page-content p { margin-bottom: 1.25rem; }
.cb-page-content ul, .cb-page-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.cb-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
[data-theme="dark"] .cb-footer { background: #060e09; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo .cheap { color: var(--leaf); }
.footer-brand .logo .bat  { color: #fff; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; margin-bottom: .75rem; }

.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--leaf); border-color: var(--leaf); }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--leaf);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: .88rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--leaf); }

.footer-contact-item {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,0.65);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--leaf); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: bounce 2.5s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #000;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ── ENQUIRY BUTTONS (single product) ───────────────────── */
.cb-enquiry-buttons {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0;
}
.btn-enquire {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 6px 20px var(--shadow-md);
}
.btn-enquire:hover { filter: brightness(1.08); transform: translateY(-2px); color: #fff; }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

/* ── SIDEBAR WIDGET ──────────────────────────────────────── */
.cb-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.cb-widget .widget-title {
  font-size: .9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}

/* ── WOO WRAPPER ─────────────────────────────────────────── */
.cb-woo-wrap { background: var(--bg); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse   { 0%,100%{box-shadow:0 0 0 0 rgba(46,204,113,.4)} 50%{box-shadow:0 0 0 8px rgba(46,204,113,0)} }
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes spin    { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes scroll  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes bounce  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeIn  { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-content h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .cta-nav   { display: none; }
  .hamburger { display: flex; }
  .theme-toggle { display: flex; }
  .section { padding: 3rem 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-card { min-width: 180px; }
  .how-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .section-inner { padding: 0 1rem; }
  .nav-inner { padding: 0 1rem; }
}