/* ═══════════════════════════════════════════════════════════════
   INK'D DESIGNS STUDIO — Global Design System
   Dark Lava Theme | South African Custom Merch
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg-primary:       #0a0a0a;
  --bg-secondary:     #111111;
  --bg-tertiary:      #1a1a1a;
  --accent-primary:   #ff4500;
  --accent-secondary: #ff6b35;
  --accent-glow:      rgba(255, 69, 0, 0.2);
  --accent-glow-sm:   rgba(255, 69, 0, 0.08);
  --text-primary:     #ffffff;
  --text-secondary:   #cccccc;
  --text-muted:       #888888;
  --border:           #2a2a2a;
  --border-accent:    rgba(255, 69, 0, 0.35);
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --shadow-card:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:      0 0 32px rgba(255,69,0,0.25);
  --font-heading:     'Black Ops One', 'Oswald', Impact, sans-serif;
  --font-body:        'DM Sans', 'Space Grotesk', system-ui, sans-serif;
  --nav-h:            68px;
  --transition:       0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-secondary); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-secondary);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
section:first-of-type { padding-top: calc(var(--nav-h) + 64px); }
.text-center { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 0 20px rgba(255,69,0,0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,69,0,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-secondary);
  box-shadow: 0 0 16px var(--accent-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ── Cards ─────────────────────────────────────────────────────── */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 40px rgba(255,69,0,0.12);
  transform: translateY(-4px);
}

/* ── Navigation ────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#main-nav.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Keep nav layout stable on all pages: Track Order + Cart always in same position */
.nav-actions .btn,
.nav-actions .nav-cart-btn {
  flex-shrink: 0;
  box-sizing: border-box;
}
.nav-actions .btn:focus,
.nav-actions .btn:active,
.nav-actions .nav-cart-btn:focus,
.nav-actions .nav-cart-btn:active {
  outline: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 14px; right: 14px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cart-btn {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.nav-cart-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-secondary);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 12px 32px;
  transition: var(--transition);
}
.nav-mobile-drawer a:hover { color: var(--accent-secondary); }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-secondary); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-secondary);
  box-shadow: 0 0 12px var(--accent-glow);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.payment-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.payment-badge {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Hero shared ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,69,0,0.15) 0%, transparent 70%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../logo-inked-design-studio.png') center/cover;
  opacity: 0;
}

/* ── Lava divider ───────────────────────────────────────────────── */
.lava-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  margin: 0 auto 40px;
}
.lava-divider.left { margin-left: 0; }

/* ── Grid helpers ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Form controls ──────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
  width: 100%;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-fire {
  background: rgba(255,69,0,0.15);
  color: var(--accent-secondary);
  border: 1px solid rgba(255,69,0,0.3);
}

/* ── Floating WhatsApp ──────────────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 12px 20px 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
#whatsapp-float:hover {
  box-shadow: 0 6px 32px rgba(37,211,102,0.6);
  transform: translateY(-2px);
}
#whatsapp-float i { font-size: 1.2rem; }
.whatsapp-label { white-space: nowrap; }

/* ── Social proof ticker ────────────────────────────────────────── */
#social-proof-ticker {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
#social-proof-ticker.visible {
  opacity: 1;
  transform: translateY(0);
}
.ticker-icon { font-size: 1.4rem; flex-shrink: 0; }
.ticker-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }
.ticker-text strong { color: var(--text-primary); }
.ticker-time { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* ── Cart sidebar ───────────────────────────────────────────────── */
#cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  z-index: 1100;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
#cart-sidebar.open { transform: translateX(0); }
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1rem; }
.cart-close {
  background: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.cart-close:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 200px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-weight: 700; color: var(--accent-secondary); font-size: 0.9rem; }
.cart-item-remove { background: none; color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.cart-item-remove:hover { color: #ef4444; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--accent-primary); color: var(--accent-secondary); }
.qty-count { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cart-total-row span:first-child { color: var(--text-secondary); }
.cart-total-row span:last-child { font-weight: 700; font-size: 1.1rem; color: var(--accent-secondary); }

/* ── Chatbot widget ─────────────────────────────────────────────── */
#chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 910;
  width: 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 420px;
}
#chatbot-widget.open { display: flex; }
.chatbot-header {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 10px; }
.chatbot-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.chatbot-name { font-size: 0.88rem; font-weight: 700; }
.chatbot-status { font-size: 0.72rem; opacity: 0.85; }
.chatbot-close { background: none; color: #fff; font-size: 1.1rem; padding: 2px; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 85%;
  font-size: 0.83rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
}
.chat-msg.bot {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chatbot-input-row input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text-primary);
}
.chatbot-input-row input::placeholder { color: var(--text-muted); }
.chatbot-send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#chatbot-toggle-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 910;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,69,0,0.45);
  border: none;
  transition: var(--transition);
}
#chatbot-toggle-btn:hover {
  box-shadow: 0 6px 32px rgba(255,69,0,0.65);
  transform: scale(1.08);
}

/* ── AOS animation base (fallback if CDN fails) ─────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ── Accordion ──────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--border-accent); }
.accordion-header {
  width: 100%;
  background: var(--bg-secondary);
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--accent-secondary); }
.accordion-icon { transition: transform 0.3s ease; font-size: 0.8rem; color: var(--text-muted); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); color: var(--accent-primary); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ── Steps / How it works ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  text-align: center;
  padding: 40px 24px;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,69,0,0.12);
  border: 2px solid rgba(255,69,0,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent-secondary);
  margin: 0 auto 20px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; }

/* ── Testimonial cards ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
}
.author-name { font-size: 0.9rem; font-weight: 700; }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── Feature highlights ─────────────────────────────────────────── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,69,0,0.1);
  border: 1px solid rgba(255,69,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; }

/* ── Glow border animation ──────────────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,69,0,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,69,0,0.6), 0 0 80px rgba(255,69,0,0.2); }
}
.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

@keyframes ember-float {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(-100px) scale(0.3); opacity: 0; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #cart-sidebar { width: 100%; }
  #chatbot-widget { width: calc(100vw - 40px); right: 20px; }
  #chatbot-toggle-btn { right: 20px; }
  #whatsapp-float { right: 20px; bottom: 20px; }
  #social-proof-ticker { left: 20px; bottom: 20px; max-width: 260px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-lg { padding: 14px 24px; }
  .container { padding: 0 16px; }

  /* Extra-tight nav so hamburger and cart never clip on small phones */
  .nav-inner { padding: 0 12px; }
  .nav-actions { gap: 6px; }
  /* Hide Track Order to free up space; still available in mobile drawer */
  .nav-actions .btn-ghost.btn-sm { display: none; }
  .nav-cart-btn { padding: 6px 10px; }
}
