/* =============================================================================
   AutoGlow Accessories — site.css
   Unified design system for all pages. Light Apple-theme + WhatsApp-green accent.
   Single source of truth — every page links this file.
   ============================================================================= */

/* Self-contained font load so a single CSS edit swaps typography site-wide. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --bg: #ffffff;
  --panel: #f5f5f7;
  --panel-2: #f0f0f2;
  --line: #e8e8ed;
  --line-soft: rgba(0, 0, 0, 0.06);
  --line-strong: #d2d2d7;
  --text: #1d1d1f;
  --text-soft: #424245;
  --soft: #6e6e73;
  --accent: #1d1d1f;
  --accent-hover: #2d2d2f;
  --green: #25d366;
  --green-dark: #1ebe5a;
  --green-soft: #e8faef;
  --red: #ff3b30;
  --orange: #ff9500;
  --blue: #007aff;
  --warn-bg: #fff3cd;
  --warn-fg: #92600a;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.12);
  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.05);
  --shadow-nav-scrolled: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --max-w: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 0;
  overflow: hidden;
}
.announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.announce-track span { flex-shrink: 0; opacity: 0.92; }
.announce-track span b { opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TOPBAR / NAV ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-nav-scrolled);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 50px; width: auto; display: block; }
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-icon svg, .brand-icon img { width: 26px; height: 26px; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.18s;
}
.nav-links a:hover { background: var(--panel); color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text); background: var(--panel); }
.btn-dark {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-dark:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.30);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-white {
  background: #fff;
  color: var(--text);
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* ── MOBILE MENU + HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: none;
}
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.99);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

/* ── HERO (product pages) ── */
.hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-size: cover;
  background-position: center;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  width: 100%;
}
.breadcrumb { font-size: 0.82rem; color: var(--soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--soft); }
.breadcrumb a:hover { color: var(--text); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ── BUY CARD ── */
.buy-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--warn-bg);
  color: var(--warn-fg);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.buy-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.buy-price del {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--soft);
  margin-left: 8px;
  text-decoration: line-through;
}
.buy-card p,
.buy-card-desc { font-size: 0.92rem; color: var(--soft); line-height: 1.65; margin: 12px 0 16px; }
.compat-tag {
  padding: 10px 14px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 14px;
}
.buy-points { display: grid; gap: 8px; margin-bottom: 20px; }
.buy-points div {
  padding: 10px 14px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

/* ── SECTIONS ── */
section { padding: 64px 0; }
section.alt { background: var(--panel); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 1rem;
  color: var(--soft);
  max-width: 560px;
  line-height: 1.75;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

/* ── FEATURE CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  padding: 28px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.feat-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feat-card p { font-size: 0.88rem; color: var(--soft); line-height: 1.7; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.step-card {
  padding: 28px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}
.step-list { display: grid; gap: 12px; }
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 12px;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-item p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; margin: 0; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 0.9rem; color: var(--soft); line-height: 1.7; }

/* ── GALLERY ── */
.gallery-wrap { display: grid; grid-template-columns: 80px 1fr; gap: 12px; margin-bottom: 32px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
  background: var(--panel);
  transition: border-color 0.18s;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--text); }
.gallery-thumb:hover { border-color: #c7c7cc; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1.5px solid var(--line);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.gallery-main .no-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-soft);
  gap: 8px;
}
.gallery-main .no-img span { font-size: 0.85rem; font-weight: 500; color: var(--soft); }

/* ── RELATED PRODUCTS ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s;
  display: block;
}
.related-card:hover {
  border-color: #c7c7cc;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.related-img { aspect-ratio: 1 / 1; background: var(--panel); overflow: hidden; position: relative; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 18px; }
.related-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.related-card p { font-size: 0.85rem; color: var(--soft); margin-bottom: 16px; line-height: 1.6; }
.related-price,
.rel-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.rel-compat { font-size: 0.78rem; color: var(--soft); margin-bottom: 12px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(255, 255, 255, 0.70); font-size: 0.95rem; max-width: 500px; line-height: 1.75; }

/* ── FOOTER ── */
.footer { background: var(--panel); border-top: 1.5px solid var(--line); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.88rem; color: var(--soft); line-height: 1.75; margin-bottom: 20px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; color: var(--soft); transition: color 0.18s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1.5px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 0.85rem; color: var(--soft); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.85rem; color: var(--soft); transition: color 0.18s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── HOMEPAGE-SPECIFIC ── */
.all-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.all-product-card {
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s;
  display: block;
}
.all-product-card:hover {
  border-color: #c7c7cc;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.all-product-card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 13px; }
.card-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.c-compat { font-size: 0.76rem; color: var(--soft); margin-bottom: 10px; line-height: 1.35; }
.c-price { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.c-now { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); }
.c-was { font-size: 0.78rem; color: var(--soft); text-decoration: line-through; }
.c-btn {
  padding: 7px 11px;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.all-product-card:hover .c-btn { background: var(--green); }
.sale-dot {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff3b30;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* ── CATALOG (shop-all-products) ── */
.page-hero {
  background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
  padding: 52px 0 36px;
  border-bottom: 1.5px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.page-hero p { font-size: 1rem; color: var(--soft); max-width: 560px; line-height: 1.7; margin-bottom: 20px; }
.filter-sticky {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--line);
  padding: 14px 0;
}
.filter-bar { display: flex; flex-wrap: nowrap; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cat-section { padding: 52px 0 20px; scroll-margin-top: 130px; }
.cat-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.cat-section-head h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.cat-section-head span { font-size: 0.85rem; color: var(--soft); }
.product-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pcard {
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.22s;
  display: block;
}
.pcard:hover {
  border-color: #c7c7cc;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.pcard-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-img .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.badge-sale { background: #ff3b30; }
.badge-new  { background: #007aff; }
.badge-hot  { background: #ff9500; }
.pcard-img .name-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-align: center;
  padding: 16px;
  line-height: 1.3;
}
.pcard-body { padding: 13px; }
.pcard-body h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.pcard-body .compat { font-size: 0.74rem; color: var(--soft); margin-bottom: 10px; line-height: 1.35; }
.pcard-price { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.price-now { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); }
.price-was { font-size: 0.78rem; color: var(--soft); text-decoration: line-through; }
.order-btn {
  padding: 7px 11px;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.pcard:hover .order-btn { background: var(--green); }

/* ── CONTENT / LEGAL PAGES (about, contact, faq, terms, refund) ──
   Light-theme equivalents of the dark-theme pages being unified in Phase 0. */
.content-hero {
  background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
  padding: 60px 0 44px;
  border-bottom: 1.5px solid var(--line);
}
.content-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.content-hero p { font-size: 1.02rem; color: var(--text-soft); max-width: 640px; line-height: 1.75; }
.content-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.content-card h2,
.content-card h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.content-card h2 { font-size: 1.5rem; font-weight: 800; }
.content-card h3 { font-size: 1.1rem; font-weight: 700; margin-top: 18px; }
.content-card p,
.content-card li { color: var(--text-soft); line-height: 1.8; font-size: 0.95rem; }
.content-card ul { padding-left: 20px; margin: 10px 0; }
.content-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: start; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .all-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid-5 { grid-template-columns: repeat(4, 1fr); }
  .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner,
  .steps-grid,
  .content-grid { grid-template-columns: 1fr; }
  .feat-grid,
  .related-grid,
  .all-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .container,
  .nav-inner { padding: 0 16px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 40px 0 32px; gap: 28px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .buy-card { padding: 20px; }
  .buy-price { font-size: 2.2rem; }
  section { padding: 48px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .product-grid-5,
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-sticky { top: 60px; }
  .gallery-wrap { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; }
  .gallery-thumb { width: 64px; height: 64px; }
}
@media (max-width: 540px) {
  .feat-grid,
  .related-grid,
  .all-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-banner { padding: 24px 18px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
  .section-title { font-size: 1.5rem; }
  .buy-price { font-size: 2rem; }
  .product-grid-5,
  .product-grid-4 { gap: 8px; }
  .pcard-body { padding: 10px; }
  .pcard-body h4 { font-size: 0.82rem; }
  .wa-float { width: 52px; height: 52px; }
}

/* =============================================================================
   PHASE 1 — Global polish
   ============================================================================= */

/* ── ACCESSIBILITY: focus rings ── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.filter-btn:focus-visible,
.pcard:focus-visible,
.all-product-card:focus-visible,
.related-card:focus-visible,
.gallery-thumb:focus-visible {
  outline-offset: 2px;
}

/* ── INTERACTIVE GREEN STATES ──
   Default buttons stay dark; hover/focus feedback uses green for affordance. */
.btn-dark:hover {
  background: linear-gradient(180deg, #2a2a2c, var(--accent));
}
.btn-outline:hover { border-color: var(--green); color: var(--accent); background: var(--green-soft); }

.nav-links a:hover { background: var(--green-soft); color: var(--accent); }

/* ── WHATSAPP FLOAT — pulsing breathing animation ── */
.wa-float { animation: wa-pulse 2.6s ease-in-out infinite; will-change: transform, box-shadow; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.55;
  z-index: -1;
  animation: wa-ring 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40); }
  50%      { box-shadow: 0 10px 36px rgba(37,211,102,0.60); }
}
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0;    }
  100% { transform: scale(1.6); opacity: 0;    }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float::before, .announce-track { animation: none !important; }
}

/* ── TRUST BAR (homepage, content pages) ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.trust-item .trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.trust-item .trust-text strong { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.trust-item .trust-text span    { font-size: 0.78rem; color: var(--soft); }

/* ── MOBILE CTA BAR (product pages, mobile only) ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}
.mobile-cta-bar .mcta-inner {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-cta-bar .mcta-call {
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text);
}
.mobile-cta-bar .mcta-wa {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.mobile-cta-bar .mcta-wa:hover { background: var(--green-dark); }

/* ── ANNOUNCE BAR — slight green accent ── */
.announce { background: var(--accent); }
.announce-track span b { color: #fff; }
.announce strong { color: var(--green); }

/* ── BUY CARD — sticky on desktop, prominent on product pages ── */
.buy-card { position: relative; }
@media (min-width: 901px) {
  .hero-inner > .buy-card-wrap { position: sticky; top: 92px; align-self: start; }
}
.buy-card .urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #fff5f4;
  color: var(--red);
  border: 1px solid #ffd9d6;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
.buy-card .urgency::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── BADGES (catalog) — colored corner ribbons feel ── */
.pcard-img .badge {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
  padding: 4px 9px;
}

/* ── RELATED PRODUCTS — horizontal scroll on mobile ── */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .related-grid::-webkit-scrollbar { display: none; }
  .related-card { scroll-snap-align: start; }
}

/* ── GALLERY — fade image on src swap (paired with site.js crossfade) ── */
.gallery-main img { transition: opacity 0.18s ease, transform 0.4s var(--ease); }

/* ── HERO H1 strokes — slightly subtler on the new font ── */
.hero h1 em { -webkit-text-stroke: 1.5px var(--text); }

/* ── BREADCRUMB — chevron separator + subtle hover ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--soft);
}
.breadcrumb a {
  color: var(--soft);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a:hover { color: var(--green-dark); }

/* ── HOMEPAGE HERO ENHANCEMENT — full impact ── */
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff5f4;
  color: var(--red);
  border: 1px solid #ffd9d6;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-urgency::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* CTA pulsing button (hero) */
.btn-pulse { animation: btn-pulse 2.4s ease-in-out infinite; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30); }
  50%      { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55); }
}

/* ── BRAND GRID (homepage "Shop by Brand") ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: all 0.22s var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.brand-tile:hover {
  border-color: var(--green);
  background: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.brand-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-tile small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  color: var(--soft);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } .brand-tile { font-size: 0.78rem; } }

/* ── PRODUCT CARD HOVER — quick-view feel ── */
.pcard, .all-product-card {
  position: relative;
  isolation: isolate;
}
.pcard::after, .all-product-card::after {
  content: "→";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: all 0.25s var(--ease);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.pcard:hover::after,
.all-product-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hide the floating round WhatsApp on small screens when mobile-cta-bar is shown */
@media (max-width: 768px) {
  .has-mobile-cta .wa-float { display: none; }
  .has-mobile-cta { padding-bottom: 76px; }
  .mobile-cta-bar { display: block; }
}

/* ── CONSISTENT BUTTON LIFT EASING ── */
.btn,
.filter-btn,
.pcard,
.all-product-card,
.related-card,
.feat-card,
.brand-tile {
  transition: all 0.22s var(--ease);
}

/* =============================================================================
   PHASE 2 — Homepage-specific components
   Re-added to site.css after Phase 0 stripped them from the inline block.
   Restyled with new design tokens (Inter/Manrope, green accent, polished hovers).
   ============================================================================= */

/* ── HERO CARD (offer card on the right side of homepage hero) ── */
.hero-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-soft), transparent 70%);
  pointer-events: none;
}
.hero-card-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--warn-bg);
  color: var(--warn-fg);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  position: relative;
}
.hero-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.hero-price sub { font-size: 0.95rem; font-weight: 600; vertical-align: middle; }
.hero-price del { font-size: 1rem; font-weight: 500; color: var(--soft); margin-left: 8px; text-decoration: line-through; }
.hero-card p {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.65;
  margin: 12px 0 16px;
  position: relative;
}
.hero-card-points { display: grid; gap: 8px; margin-bottom: 18px; position: relative; }
.hero-card-points div {
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 500;
}

/* ── CATEGORIES GRID (homepage "Shop by Category") ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #f0f0f5;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s var(--ease);
  isolation: isolate;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.5s var(--ease);
}
.cat-card:hover .cat-card-img { transform: scale(1.10); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.cat-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: auto;
  backdrop-filter: blur(6px);
}

/* ── CATEGORY TABS (tabbed nav, e.g. "Shop By Category" filter row) ── */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.cat-tab {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  text-decoration: none;
  display: inline-block;
}
.cat-tab:hover { border-color: var(--green); color: var(--accent); background: var(--green-soft); }
.cat-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── BRAND SCROLL (legacy horizontal row of brand cards) ── */
.brand-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.brand-card {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all 0.22s var(--ease);
}
.brand-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.brand-card-img {
  aspect-ratio: 4 / 3;
  background: var(--panel);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  padding: 12px;
}
.brand-card-body { padding: 12px; text-align: center; }
.brand-card-body h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.brand-card-body span { font-size: 0.74rem; color: var(--soft); }

/* ── PRODUCT GRID + PRODUCT CARD (legacy "Top Selling" section) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  isolation: isolate;
}
.product-card:hover {
  border-color: #c7c7cc;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.product-card::after {
  content: "→";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: all 0.25s var(--ease);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.product-card:hover::after { opacity: 1; transform: translate(0, 0); }
.product-card-img {
  aspect-ratio: 1 / 1;
  background: var(--panel);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 16px; }
.product-card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.product-card-body .compat { font-size: 0.78rem; color: var(--soft); margin-bottom: 12px; line-height: 1.4; }
.product-price,
.price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 10px;
}
.product-price .price-now,
.price-wrap .price-now {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.product-price .price-was,
.price-wrap .price-was {
  font-size: 0.8rem;
  color: var(--soft);
  text-decoration: line-through;
}
.btn-order {
  display: block;
  width: 100%;
  padding: 9px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.product-card:hover .btn-order { background: var(--green); }
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* ── WHY US GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: #fff;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s var(--ease);
}
.why-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p  { font-size: 0.9rem; color: var(--soft); line-height: 1.7; }

/* ── REVIEWS GRID ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.stars {
  letter-spacing: 0.18em;
  color: #f0a500;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.review-card p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 18px; }
.review-card strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.review-card span   { font-size: 0.82rem; color: var(--soft); }

/* ── CTA ACTIONS + ghost button ── */
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255, 255, 255, 0.10); }

/* ── FOOTER SOCIAL ROW ── */
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.social-btn:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }

/* ── Responsive grids ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .review-grid  { grid-template-columns: 1fr; }
  .trust-bar    { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .product-grid, .cat-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
  .hero-card { padding: 20px; }
  .hero-price { font-size: 2.2rem; }
}

/* "X items found" pill in shop hero — desktop only */
@media (max-width: 768px) { .items-count { display: none; } }

/* ── FAQ ACCORDION (collapsible items, JS-controlled) ── */
.faq-item.is-collapsible h3 {
  cursor: pointer;
  position: relative;
  padding-right: 36px;
  margin-bottom: 0;
  transition: color 0.18s var(--ease);
  user-select: none;
}
.faq-item.is-collapsible h3:hover { color: var(--green-dark); }
.faq-item.is-collapsible h3::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s var(--ease), background 0.18s var(--ease);
}
.faq-item.is-collapsible.is-open h3::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: var(--green);
  color: #fff;
}
.faq-item.is-collapsible p {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.28s var(--ease), margin-top 0.28s var(--ease);
  margin-top: 0;
}
.faq-item.is-collapsible p > * { min-height: 0; }
.faq-item.is-collapsible p {
  /* Inner content wrapper trick using :before/:after won't work for <p>, so:
     we use max-height fallback for browsers without grid-template-rows: 0fr support. */
  max-height: 0;
}
.faq-item.is-collapsible.is-open p {
  grid-template-rows: 1fr;
  max-height: 400px;
  margin-top: 12px;
}

/* =============================================================================
   BRAND ART CARDS — premium placeholder visuals for door-light products
   when real product photography isn't available.
   Each brand modifier sets --b1, --b2 (gradient), --bf (foreground), and an
   accent on the door-light icon overlay.
   ============================================================================= */
.brand-art {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(135deg, var(--b1, #1a1a1a) 0%, var(--b2, #404040) 100%);
  color: var(--bf, #fff);
  overflow: hidden;
  isolation: isolate;
}
.brand-art::before {
  /* faint diagonal tech-stripes */
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 80% 110%, rgba(255,255,255,0.12), transparent 55%);
  z-index: 0;
}
.brand-art::after {
  /* projected-light fan in the lower corner — abstract LED door-light reference */
  content: "";
  position: absolute;
  bottom: -42%;
  left: 50%;
  width: 180%;
  height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.20) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.brand-art-mark {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.brand-art-mark small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin-top: 6px;
  opacity: 0.78;
  text-transform: uppercase;
}
.brand-art-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 12px;
  font-size: 1.4rem;
  backdrop-filter: blur(4px);
}
.brand-art .brand-art-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--bf);
  backdrop-filter: blur(4px);
}

/* Hover: lift + slight gradient brightening */
.pcard:hover .brand-art,
.related-card:hover .brand-art,
.product-card:hover .brand-art,
.all-product-card:hover .brand-art { filter: brightness(1.08); }
.brand-art { transition: filter 0.3s var(--ease); }

/* Per-brand color tokens */
.b-mercedes      { --b1: #1c1c1c; --b2: #61686d; --bf: #ffffff; }
.b-mercedes-amg  { --b1: #0c0c0c; --b2: #b41a1a; --bf: #ffffff; }
.b-bmw           { --b1: #003e7e; --b2: #0066b1; --bf: #ffffff; }
.b-audi          { --b1: #0d0d0d; --b2: #303030; --bf: #ffffff; }
.b-range-rover   { --b1: #0a4019; --b2: #1a6630; --bf: #ffffff; }
.b-toyota        { --b1: #cc0000; --b2: #8a0000; --bf: #ffffff; }
.b-toyota-corolla{ --b1: #cc0000; --b2: #8a0000; --bf: #ffffff; }
.b-toyota-camry  { --b1: #cc0000; --b2: #8a0000; --bf: #ffffff; }
.b-land-cruiser  { --b1: #8b6f3a; --b2: #5e4a26; --bf: #ffffff; }
.b-lexus         { --b1: #0d0d0d; --b2: #2a2a2a; --bf: #b7975e; }
.b-lexus-fsport  { --b1: #0d0d0d; --b2: #1f1f1f; --bf: #d50032; }
.b-nissan        { --b1: #1a1a1a; --b2: #4a4a4a; --bf: #ffffff; }
.b-nissan-patrol { --b1: #1a1a1a; --b2: #4a4a4a; --bf: #ffffff; }
.b-nissan-gtr    { --b1: #8b0000; --b2: #1a1a1a; --bf: #ffffff; }
.b-hyundai       { --b1: #002c5f; --b2: #00aad2; --bf: #ffffff; }
.b-mazda         { --b1: #930011; --b2: #5a0008; --bf: #ffffff; }
.b-ford          { --b1: #003478; --b2: #001f4d; --bf: #ffffff; }
.b-kia           { --b1: #bb162b; --b2: #1a1a1a; --bf: #ffffff; }
.b-volkswagen    { --b1: #001e50; --b2: #0040a0; --bf: #ffffff; }
.b-infiniti      { --b1: #2c2c4d; --b2: #545477; --bf: #ffffff; }
.b-chevrolet     { --b1: #d4a017; --b2: #1a1a1a; --bf: #ffffff; }
.b-mitsubishi    { --b1: #e60012; --b2: #8a000d; --bf: #ffffff; }
.b-suzuki        { --b1: #1860a8; --b2: #003c7a; --bf: #ffffff; }
.b-honda         { --b1: #8a0000; --b2: #cc0000; --bf: #ffffff; }
.b-pajero        { --b1: #2a2a2a; --b2: #6a6a6a; --bf: #ffffff; }
.b-subaru        { --b1: #001f5c; --b2: #003399; --bf: #ffffff; }

/* =============================================================================
   PRODUCT DETAIL PAGE (PDP) — Shopify-style two-column hero
   ============================================================================= */
.pdp-hero {
  padding: 24px 0 60px;
  background: #ffffff;
  background-image: none;
  min-height: 0;
}
/* Defensive: prevent any nested .brand-art from leaking into the PDP hero */
.pdp-hero .brand-art,
.pdp-hero .brand-art::before,
.pdp-hero .brand-art::after,
.pdp-hero .hero-bg { display: none !important; }
.pdp-hero .breadcrumb { margin-bottom: 16px; }
.pdp-grid { display: grid; grid-template-columns: 60% 40%; gap: 40px; }
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 24px; } }

.pdp-media { display: flex; flex-direction: column; gap: 12px; }
.pdp-main {
  background: #f5f5f7;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto !important;
  max-height: none !important;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.18s ease; }
#galleryMain {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
/* Hyundai: focus on logo at the bottom of the door-light photo */
.pdp-grid[data-slug="hyundai"] #galleryMain { object-position: center bottom; }
.pdp-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-thumb {
  width: 78px; height: 78px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  overflow: hidden; padding: 0; cursor: pointer; background: var(--panel);
  transition: border-color 0.18s var(--ease);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--text); }

.pdp-info { display: flex; flex-direction: column; gap: 14px; }
.pdp-brand {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.pdp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  color: var(--text);
  margin: -4px 0 0;
}
.pdp-title em { font-style: normal; color: var(--soft); font-weight: 700; display: block; font-size: 0.6em; letter-spacing: 0.04em; margin-top: 2px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pdp-stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.pdp-rating-text { font-size: 0.85rem; color: var(--soft); }
.pdp-rating-text strong { color: var(--text); font-weight: 700; }
.pdp-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  line-height: 1.05;
}
.pdp-price-unit { font-size: 0.78rem; color: var(--soft); font-weight: 600; margin-left: 6px; }
.pdp-free {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-soft); color: var(--green-dark);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 0.84rem; font-weight: 700; align-self: flex-start;
}
.pdp-compat { font-size: 0.86rem; color: var(--text-soft); padding: 10px 14px; background: var(--panel); border-radius: var(--radius-md); }
.pdp-compat strong { color: var(--text); }

.pdp-variant-label, .pdp-qty-label { font-size: 0.84rem; font-weight: 700; color: var(--text); }
.pdp-variants { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-pill {
  padding: 12px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff; cursor: pointer;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--text);
  transition: all 0.18s var(--ease);
}
.variant-pill:hover { border-color: var(--text); }
.variant-pill.active { border-color: var(--text); background: var(--text); color: #fff; }

.pdp-qty-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pdp-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
}
.pdp-qty-btn {
  width: 38px; height: 42px;
  border: none; background: var(--panel); color: var(--text);
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
}
.pdp-qty-btn:hover { background: var(--panel-2); }
.pdp-qty-input {
  width: 48px; height: 42px;
  border: none; text-align: center;
  font-size: 0.95rem; font-weight: 700;
  background: #fff;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button, .pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty-input:focus { outline: none; }

.pdp-viewing {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-soft);
  padding: 10px 14px;
  background: rgba(196, 68, 46, 0.06);
  border-radius: var(--radius-md);
}
.pdp-viewing strong { color: var(--text); font-weight: 700; }
.viewing-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #c4442e;
  animation: pulse-dot 1.6s infinite;
  box-shadow: 0 0 0 0 rgba(196, 68, 46, 0.6);
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(196, 68, 46, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(196, 68, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 68, 46, 0); }
}

.pdp-add, .pdp-wa { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; display: flex; }
.pdp-add.is-added { background: var(--green); border-color: var(--green); }
.pdp-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 10px;
  padding: 18px 12px;
  background: var(--panel);
  border-radius: var(--radius-md);
}
.trust-item {
  text-align: center;
  font-size: 0.74rem; font-weight: 600; color: var(--text-soft);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.trust-icon { font-size: 1.1rem; }
@media (max-width: 540px) {
  .pdp-trust { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Free Delivery indicator on every product card */
.pcard-body::after,
.product-card-body::after,
.all-product-card .card-body::after,
.related-body::after {
  content: "✓ Free Delivery";
  display: block;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* =============================================================================
   CART — floating button, drawer, items
   ============================================================================= */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1.5px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--text); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-family: var(--font-display);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.cart-backdrop.open { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
}
.cart-drawer-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: 6px;
}
.cart-drawer-close {
  background: var(--panel);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}
.cart-drawer-close:hover { background: var(--panel-2); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 12px 16px 16px; }

.cart-empty { text-align: center; padding: 60px 24px; }
.cart-empty-icon { font-size: 2.4rem; margin-bottom: 10px; }
.cart-empty p { color: var(--soft); margin-bottom: 18px; font-size: 0.92rem; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: #fff;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
  display: grid;
  place-items: center;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-noimg { font-size: 1.4rem; color: var(--soft); }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-name:hover { color: var(--green); }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.cart-qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.cart-qty-btn:hover { border-color: var(--text); }
.cart-qty-val { min-width: 22px; text-align: center; font-weight: 700; font-size: 0.88rem; }
.cart-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.cart-remove:hover { color: #c4442e; background: rgba(196, 68, 46, 0.06); }

.cart-drawer-foot {
  border-top: 1px solid var(--line);
  padding: 16px 20px 20px;
  background: #fff;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-subtotal span { font-size: 0.88rem; color: var(--soft); font-weight: 600; }
.cart-subtotal strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 800;
}
.cart-foot-note { font-size: 0.74rem; color: var(--soft); margin-bottom: 14px; line-height: 1.4; }
/* Prominent green Checkout button in cart drawer */
.cart-checkout-btn {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1ebe5a) !important;
  color: #04130b !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(37,211,102,0.42), 0 0 0 1px rgba(255,255,255,0.06) inset;
  text-decoration: none;
  transition: transform 0.18s var(--ease, ease), filter 0.18s ease, box-shadow 0.18s ease;
}
.cart-checkout-btn:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 16px 36px rgba(37,211,102,0.55); }
.cart-checkout-btn::after { content: '🛡️'; font-size: 0.86em; opacity: 0.85; }

/* In-card "+ Add" button styling — reuses .order-btn / .btn-order / .c-btn classes */
.order-btn.is-cart, .btn-order.is-cart, .c-btn.is-cart { transition: all 0.18s var(--ease); }
.order-btn.is-added, .btn-order.is-added, .c-btn.is-added,
.add-to-cart-btn.is-added { background: var(--green) !important; color: #fff !important; border-color: var(--green) !important; }

@media (max-width: 540px) {
  .cart-drawer { width: 100vw; }
}

/* =============================================================================
   CHECKOUT PAGE
   ============================================================================= */
.checkout-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 900px) { .checkout-wrap { grid-template-columns: 1fr; } }
.checkout-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.checkout-form h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  transition: border-color 0.18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--text);
}
.field textarea { min-height: 76px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field-error {
  font-size: 0.78rem;
  color: #c4442e;
  margin-top: -8px;
  margin-bottom: 8px;
  display: none;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c4442e; }
.field.has-error + .field-error { display: block; }

.order-summary {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
  align-self: start;
}
.order-summary h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text);
}
.summary-list { margin-bottom: 16px; }
.summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: none; }
.summary-thumb {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  overflow: hidden; background: #fff; flex-shrink: 0;
  display: grid; place-items: center;
}
.summary-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-info { flex: 1; min-width: 0; }
.summary-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.summary-qty { font-size: 0.74rem; color: var(--soft); }
.summary-price { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.summary-totals { padding-top: 14px; border-top: 1px solid var(--line-strong); }
.summary-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.88rem; color: var(--text-soft); }
.summary-grand { display: flex; justify-content: space-between; padding-top: 10px; margin-top: 8px; border-top: 1px dashed var(--line-strong); }
.summary-grand span { font-weight: 700; font-size: 1rem; color: var(--text); }
.summary-grand strong { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text); }

.place-order-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: 18px; display: flex; }
.place-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* =============================================================================
   THANK YOU PAGE
   ============================================================================= */
.thankyou-card {
  max-width: 640px;
  margin: 60px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thankyou-icon {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
  font-size: 2.2rem;
}
.thankyou-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--text);
}
.thankyou-card .order-id {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin: 8px 0 18px;
  letter-spacing: 0.04em;
}
.thankyou-msg { color: var(--text-soft); font-size: 0.96rem; line-height: 1.55; margin-bottom: 24px; }
.thankyou-eta {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.thankyou-summary { text-align: left; margin-bottom: 24px; }
.thankyou-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* =============================================================================
   HOMEPAGE — FIRE THEME (premium dark hero, glass card, glowing trust bar)
   ============================================================================= */

/* Premium gradient announcement bar */
.announce {
  background: linear-gradient(90deg, #04130b 0%, #0e2b1a 50%, #04130b 100%);
  border-bottom: 1px solid rgba(37, 211, 102, 0.22);
  color: #e8faef;
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.12), transparent);
  animation: announce-shimmer 7s linear infinite;
  pointer-events: none;
}
@keyframes announce-shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}
.announce-track span { color: #e8faef; font-weight: 500; }
.announce-track b, .announce-track strong { color: #6affb6; font-weight: 800; }

/* HERO — full dark with layered glow + particles */
.hero.hero-fire {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 64px 0 72px;
  background: radial-gradient(ellipse at top, #16161a 0%, #0a0a0c 55%, #050506 100%);
  color: #fff;
  display: block;
  isolation: isolate;
}

/* Background layers */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.78) 0%, rgba(8,8,10,0.92) 70%, rgba(5,5,6,1) 100%),
    url('../../images/Audi/audi-door-logo-light-1.jpg') center/cover no-repeat;
  filter: saturate(1.15) contrast(1.05);
  opacity: 0.9;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.hero-glow-1 {
  width: 420px; height: 420px;
  background: #25d366;
  top: -140px; right: -80px;
  animation: glow-drift 18s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 340px; height: 340px;
  background: #1ea0d6;
  bottom: -180px; left: -60px;
  opacity: 0.4;
  animation: glow-drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.08); }
}

/* Floating particles */
.hero-bg-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.hero-bg-particles span {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(37,211,102,0.85), 0 0 28px rgba(37,211,102,0.45);
  animation: particle-float 12s linear infinite;
  opacity: 0.7;
}
.hero-bg-particles span:nth-child(1)  { left: 6%;  animation-delay: 0s;   animation-duration: 12s; }
.hero-bg-particles span:nth-child(2)  { left: 15%; animation-delay: -3s;  animation-duration: 14s; }
.hero-bg-particles span:nth-child(3)  { left: 23%; animation-delay: -6s;  animation-duration: 11s; opacity: 0.45; }
.hero-bg-particles span:nth-child(4)  { left: 32%; animation-delay: -1s;  animation-duration: 16s; }
.hero-bg-particles span:nth-child(5)  { left: 42%; animation-delay: -8s;  animation-duration: 13s; opacity: 0.55; }
.hero-bg-particles span:nth-child(6)  { left: 52%; animation-delay: -2s;  animation-duration: 15s; }
.hero-bg-particles span:nth-child(7)  { left: 62%; animation-delay: -10s; animation-duration: 11s; }
.hero-bg-particles span:nth-child(8)  { left: 72%; animation-delay: -4s;  animation-duration: 17s; opacity: 0.45; }
.hero-bg-particles span:nth-child(9)  { left: 80%; animation-delay: -7s;  animation-duration: 12s; }
.hero-bg-particles span:nth-child(10) { left: 88%; animation-delay: -5s;  animation-duration: 14s; }
.hero-bg-particles span:nth-child(11) { left: 94%; animation-delay: -9s;  animation-duration: 10s; opacity: 0.55; }
.hero-bg-particles span:nth-child(12) { left: 3%;  animation-delay: -11s; animation-duration: 13s; }
@keyframes particle-float {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { opacity: 0.95; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-110vh); opacity: 0; }
}

/* Diagonal scan lines */
.hero-bg-lines {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.hero-bg-lines span {
  position: absolute; left: -70%;
  height: 1px; width: 70%;
  background: linear-gradient(90deg, transparent, rgba(106,255,182,0.65), transparent);
  animation: scan-line 7s ease-in-out infinite;
}
.hero-bg-lines span:nth-child(1) { top: 22%; animation-delay: 0s; }
.hero-bg-lines span:nth-child(2) { top: 68%; animation-delay: 3.5s; }
@keyframes scan-line {
  0%   { transform: translateX(0); opacity: 0; }
  20%  { opacity: 0.95; }
  100% { transform: translateX(220%); opacity: 0; }
}

/* Hero inner grid */
.hero.hero-fire .hero-inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 56px;
  align-items: center;
  min-height: 540px;
  padding: 0 24px;
}
.hero.hero-fire .hero-left { color: #fff; }
.hero.hero-fire .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(37,211,102,0.32);
  background: rgba(37,211,102,0.08);
  color: #6affb6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.hero.hero-fire .hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366, 0 0 20px rgba(37,211,102,0.6);
  animation: pulse-dot-fire 1.5s infinite;
}
@keyframes pulse-dot-fire {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7), 0 0 10px #25d366; }
  50%      { box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 0 16px #25d366; }
}
/* High-specificity rules so the older `.hero h1 em` stroke can't bleed in */
.hero.hero-fire .hero-fire-title,
.hero-fire-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 22px;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 0;
}
.hero.hero-fire .hero-fire-title em,
.hero-fire-title em {
  font-style: normal;
  display: inline-block;
  color: #25d366;
  background: none;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  -webkit-text-fill-color: #25d366;
  -webkit-text-stroke: 0;
  filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.8));
  animation: none;
}
.hero-fire-desc {
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 580px;
  font-weight: 400;
}
.hero-fire-meta {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 30px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.18rem; line-height: 1;
}
.hero-meta-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-meta-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

.hero-fire-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-fire-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5a 100%);
  color: #04130b;
  font-weight: 800; font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  border: none; cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(37,211,102,0.42), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform 0.22s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-fire-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-fire-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(37,211,102,0.6), 0 0 0 1px rgba(255,255,255,0.15) inset;
  color: #04130b;
}
.btn-fire-primary:hover::before { transform: translateX(100%); }
.btn-fire-arrow { transition: transform 0.2s var(--ease); display: inline-block; }
.btn-fire-primary:hover .btn-fire-arrow { transform: translateX(4px); }
.btn-fire-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s var(--ease);
}
.btn-fire-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
  color: #fff;
}

/* Glass-morphism offer card */
.hero-glass-card {
  position: relative;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,211,102,0.06) inset;
  overflow: hidden;
  color: #fff;
}
.hero-glass-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #25d366 40%, #25d366 60%, transparent);
  opacity: 0.75;
}
.hero-glass-card::after {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,211,102,0.2), transparent 70%);
  pointer-events: none;
}
.glass-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(37,211,102,0.16);
  color: #6affb6;
  font-size: 0.74rem;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(37,211,102,0.32);
}
.glass-card-eyebrow {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 6px;
}
.glass-card-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.55rem;
  color: #fff; margin: 0 0 18px; line-height: 1.15;
}
.glass-card-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 22px;
}
.glass-currency { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 600; }
.glass-amount {
  font-family: var(--font-display); font-weight: 900; font-size: 3rem; line-height: 1;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.glass-was {
  margin-left: auto;
  color: #6affb6;
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px;
  background: rgba(37,211,102,0.16);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 999px;
}
.glass-card-points {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
}
.glass-card-points li {
  display: flex; align-items: center;
  color: rgba(255,255,255,0.78); font-size: 0.88rem;
  padding-left: 26px; position: relative;
}
.glass-card-points li::before {
  content: "✓"; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  display: grid; place-items: center;
  background: rgba(37,211,102,0.22);
  color: #6affb6;
  border-radius: 50%;
  font-size: 0.72rem; font-weight: 800;
}
.glass-stock {
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.stock-dot {
  width: 7px; height: 7px;
  background: #ff5252;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff5252;
  animation: pulse-stock 1.4s infinite;
}
@keyframes pulse-stock {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Trust bar — premium dark */
.trust-bar.trust-bar-fire {
  background: #0a0a0c;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(37,211,102,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(37,211,102,0.08), transparent 55%);
  border: none;
  border-top: 1px solid rgba(37,211,102,0.18);
  border-bottom: 1px solid rgba(37,211,102,0.18);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  max-width: var(--max-w);
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.trust-fire-item {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  padding: 8px 12px;
  position: relative;
}
.trust-fire-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.14), transparent);
}
.trust-fire-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.28);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(37,211,102,0.18), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.trust-fire-text { display: flex; flex-direction: column; gap: 2px; }
.trust-fire-text strong {
  color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem; line-height: 1.1;
}
.trust-fire-text span {
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Product card hover glow (Top Selling, Latest Products, listings) */
.product-card, .all-product-card, .pcard {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.product-card:hover, .all-product-card:hover, .pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(37,211,102,0.20), 0 6px 18px rgba(0,0,0,0.14);
  border-color: rgba(37,211,102,0.5);
}
.product-card .product-card-img,
.all-product-card .card-img,
.pcard .pcard-img {
  position: relative;
  overflow: hidden;
}
.product-card .product-card-img::before,
.all-product-card .card-img::before,
.pcard .pcard-img::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(37,211,102,0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.product-card:hover .product-card-img::before,
.all-product-card:hover .card-img::before,
.pcard:hover .pcard-img::before {
  opacity: 1;
}
.product-card .product-card-img img,
.all-product-card .card-img img,
.pcard .pcard-img img {
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img,
.all-product-card:hover .card-img img,
.pcard:hover .pcard-img img {
  transform: scale(1.08);
}

/* Slightly larger product card images on listings */
.product-grid { gap: 22px; }
.all-grid { gap: 22px; }

/* Mobile responsive overrides */
@media (max-width: 900px) {
  .hero.hero-fire { min-height: auto; padding: 32px 0 56px; }
  .hero.hero-fire .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero.hero-fire .hero-right { order: 2; }
  .hero-fire-meta { width: 100%; gap: 14px; padding: 14px 16px; flex-wrap: wrap; box-sizing: border-box; }
  .trust-bar.trust-bar-fire { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px; }
  .trust-bar.trust-bar-fire .trust-fire-item:not(:last-child)::after { display: none; }
}
@media (max-width: 540px) {
  .hero.hero-fire .hero-inner { padding: 0 16px; }
  .hero-fire-actions { flex-direction: column; width: 100%; }
  .btn-fire-primary, .btn-fire-ghost { width: 100%; justify-content: center; }
  .hero-glass-card { padding: 24px; }
  .glass-amount { font-size: 2.4rem; }
  .trust-bar.trust-bar-fire { grid-template-columns: 1fr 1fr; }
}

/* =============================================================================
   MOBILE OPTIMIZATION (≤768px / ≤540px / ≤390px)
   Targets 375px iPhone SE up to 768px tablets. CSS-only; no HTML edits.
   ============================================================================= */

/* Global guards */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; }

/* ---- Tablet & below (≤768px) ---- */
@media (max-width: 768px) {
  /* Container padding: never less than 16px */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Topbar: smaller logo, ensure cart + hamburger visible */
  .topbar .nav-inner { height: 60px; gap: 10px; padding: 0 16px; }
  .brand-logo { height: 38px; }
  .brand-name, .brand-sub { display: none; } /* logo image already shows brand */
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  /* Show hamburger; hide desktop call/whatsapp buttons (kept in mobile menu) */
  .nav-actions .btn-outline,
  .nav-actions .btn-dark { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center;
               width: 44px; height: 44px; flex-shrink: 0; }
  /* Cart button stays — bump to 44×44 for touch target */
  .cart-btn { width: 44px; height: 44px; }

  /* Homepage Top Selling product grid: 2 cols */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* PDP grid stacks already at 900px — ensure it's clean here */
  .pdp-hero { padding: 20px 0 56px; }
  .pdp-hero .breadcrumb { font-size: 0.78rem; }

  /* PDP gallery thumbs: horizontal scroll instead of wrap */
  .pdp-thumbs {
    display: flex; flex-wrap: nowrap; gap: 8px;
    overflow-x: auto; overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb { flex: 0 0 64px; width: 64px; height: 64px; }

  /* Variant pills wrap nicely, full row */
  .pdp-variants .variant-pill { flex: 1 1 calc(50% - 4px); min-width: 0; padding: 12px 14px; text-align: center; }

  /* PDP CTA buttons full width with proper touch targets */
  .pdp-add, .pdp-wa { width: 100%; min-height: 50px; }

  /* Cart drawer */
  .cart-drawer { width: 100vw; }

  /* Checkout: form + summary stack */
  .checkout-form, .order-summary { padding: 20px; }
  .field input, .field select, .field textarea { font-size: 16px; /* prevent iOS zoom */ }
  .place-order-btn { width: 100%; min-height: 52px; }

  /* Buttons: ensure 44px touch target */
  .btn { min-height: 44px; padding: 11px 20px; }

  /* Hero pills + actions full-width feel */
  .hero-fire-actions { width: 100%; }
  .hero-fire-actions .btn-fire-primary,
  .hero-fire-actions .btn-fire-ghost { flex: 1 1 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Section padding tighter */
  section { padding: 44px 0; }

  /* Brand grid 4-col on tablet */
  .brand-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }

  /* Filter bar (shop-all) horizontal scroll already exists; ensure correct */
  .filter-bar { padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .filter-bar .filter-btn { flex-shrink: 0; }

  /* Cat tabs (homepage) — horizontal scroll on mobile */
  .cat-tabs {
    display: flex; flex-wrap: nowrap; gap: 8px;
    overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { flex-shrink: 0; }

  /* Mobile CTA bar — solid, always visible */
  .mobile-cta-bar { padding: 10px 12px; }
  .mobile-cta-bar .mcta-wa { min-height: 50px; font-size: 1rem; }

  /* Section heads stack on small screens */
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { font-size: 1.5rem; }
}

/* ---- Phone (≤540px) ---- */
@media (max-width: 540px) {
  /* Hero — readable, not enormous */
  .hero.hero-fire { min-height: auto; padding: 28px 0 48px; }
  .hero.hero-fire .hero-inner { padding: 0 16px; gap: 24px; }
  .hero-fire-title { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 14px; }
  .hero-fire-desc { font-size: 0.95rem; margin-bottom: 18px; }
  .hero-fire-meta {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 12px 18px;
    padding: 14px 14px;
  }
  .hero-fire-meta .hero-meta-divider { display: none; }
  .hero-meta-item strong { font-size: 1rem; }
  .hero-meta-item span { font-size: 0.66rem; }
  /* Hero badge wraps, smaller text */
  .hero.hero-fire .hero-badge { font-size: 0.7rem; padding: 6px 12px; }

  /* Hero glass card stacks BELOW the text (default source order is text→card,
     so removing any explicit `order` puts the card naturally below) */
  .hero.hero-fire .hero-right { order: initial; width: 100%; }
  .hero-glass-card { padding: 22px; }
  .glass-card-title { font-size: 1.3rem; }
  .glass-amount { font-size: 2.2rem; }
  .glass-was { font-size: 0.7rem; padding: 4px 9px; }

  /* Trust bar 2×2 with proper spacing */
  .trust-bar.trust-bar-fire { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 14px; }
  .trust-bar.trust-bar-fire .trust-fire-item:not(:last-child)::after { display: none; }
  .trust-fire-icon { width: 38px; height: 38px; font-size: 1.05rem; }
  .trust-fire-text strong { font-size: 0.92rem; }
  .trust-fire-text span { font-size: 0.66rem; }

  /* Brand grid — 3 columns on phone */
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Product cards on small phones — bigger images by virtue of 2-col grid */
  .product-grid, .product-grid-5, .product-grid-4 {
    grid-template-columns: repeat(2, 1fr); gap: 10px;
  }
  .all-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcard-body, .product-card-body, .all-product-card .card-body { padding: 10px; }
  .pcard-body h4, .product-card-body h4 { font-size: 0.82rem; }
  .price-now, .c-now { font-size: 0.92rem; }
  .order-btn, .btn-order, .c-btn { font-size: 0.74rem; padding: 6px 10px; min-height: 32px; }

  /* PDP thumbnails — slightly smaller, scroll horizontally */
  .pdp-thumb { flex: 0 0 56px; width: 56px; height: 56px; }
  .pdp-title { font-size: 1.5rem; }
  .pdp-price { font-size: 1.6rem; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Announcement bar — smaller font, smoother scroll feel */
  .announce-track { animation-duration: 28s; font-size: 0.78rem; }
  .announce-track span { padding: 0 16px; }

  /* Buttons inside cards: don't crush on small */
  .pcard-price, .product-price, .c-price { gap: 6px; }

  /* Cat tabs spacing tighter */
  .cat-tab { padding: 8px 14px; font-size: 0.84rem; }
}

/* ---- iPhone SE / 375px micro-tweaks ---- */
@media (max-width: 390px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero-fire-title { font-size: 1.9rem; line-height: 1.05; }
  .hero-fire-desc { font-size: 0.9rem; }
  .glass-card-title { font-size: 1.18rem; }
  .glass-amount { font-size: 2rem; }
  .pdp-title { font-size: 1.35rem; }
  .pdp-price { font-size: 1.5rem; }
  .section-title { font-size: 1.35rem; }
  /* Reduce horizontal padding inside cards */
  .pcard-body h4, .product-card-body h4, .card-body h4 { font-size: 0.78rem; line-height: 1.25; }
  /* Mobile CTA bar pull it tight */
  .mobile-cta-bar { padding: 8px 10px; }
}

/* ---- Touch target minimum (apply globally on touch screens) ---- */
@media (hover: none) and (pointer: coarse) {
  .btn, .order-btn, .btn-order, .c-btn, .cart-qty-btn, .cart-remove,
  .pdp-qty-btn, .variant-pill, .filter-btn, .cat-tab,
  .gallery-thumb, .pdp-thumb { min-height: 36px; }
  /* Top-level CTAs deserve full 44px */
  .btn-fire-primary, .btn-fire-ghost, .pdp-add, .pdp-wa, .place-order-btn,
  .cart-checkout-btn, .mcta-wa, .hamburger, .cart-btn { min-height: 44px; }
}

/* =============================================================================
   FEATURE BUNDLE — search, wishlist, reviews, recently-viewed, bundles, FBT
   ============================================================================= */

/* ---------- Search ---------- */
.nav-search-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1.5px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s var(--ease);
  flex-shrink: 0;
}
.nav-search-btn:hover { border-color: var(--text); transform: translateY(-1px); }
@media (max-width: 768px) { .nav-search-btn { width: 44px; height: 44px; } }

.search-panel { position: fixed; inset: 0; z-index: 1100; }
.search-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.22s ease; }
.search-panel.open .search-overlay { opacity: 1; }
.search-modal {
  position: relative; max-width: 720px; margin: 80px auto 0;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.22s var(--ease), opacity 0.22s ease;
  max-height: calc(100vh - 100px); display: flex; flex-direction: column;
}
.search-panel.open .search-modal { transform: translateY(0); opacity: 1; }
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.search-input-wrap svg { color: var(--soft); flex-shrink: 0; }
#searchInput {
  flex: 1; border: none; outline: none; font-size: 1rem;
  font-family: var(--font-body); color: var(--text);
  background: transparent;
}
#searchInput::placeholder { color: var(--soft); }
.search-close {
  width: 32px; height: 32px; border: none;
  background: var(--panel); color: var(--text);
  border-radius: 50%; cursor: pointer; font-size: 0.9rem;
}
.search-close:hover { background: var(--panel-2); }
.search-results { flex: 1; overflow-y: auto; padding: 8px; }
.search-result {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-md);
  text-decoration: none; color: var(--text);
  align-items: center;
  transition: background 0.15s ease;
}
.search-result:hover { background: var(--panel); }
.search-result-img {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--panel); overflow: hidden;
  display: grid; place-items: center;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-img-fallback { font-size: 1.4rem; color: var(--soft); }
.search-result-name { font-weight: 700; font-size: 0.92rem; line-height: 1.25; }
.search-result-meta { font-size: 0.76rem; color: var(--soft); margin-top: 2px; }
.search-result-price { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; }
.search-empty { padding: 60px 20px; text-align: center; color: var(--soft); font-size: 0.9rem; }
@media (max-width: 768px) {
  .search-modal { margin: 0; height: 100vh; max-height: 100vh; border-radius: 0; }
}

/* ---------- Wishlist (nav badge + heart on cards/PDP + page) ---------- */
.wish-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--panel); border: 1.5px solid var(--line);
  color: var(--text); text-decoration: none;
  transition: all 0.18s var(--ease); flex-shrink: 0;
}
.wish-btn svg { fill: transparent; transition: fill 0.18s ease; }
.wish-btn:hover { border-color: var(--text); transform: translateY(-1px); }
.wish-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--radius-pill); background: #e0245e;
  color: #fff; font-size: 0.7rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff; font-family: var(--font-display);
}
@media (max-width: 768px) { .wish-btn { width: 44px; height: 44px; } }

.wish-heart {
  position: absolute; top: 10px; right: 10px;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.06);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  color: rgba(0,0,0,0.45);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.wish-heart svg { fill: transparent; stroke: currentColor; stroke-width: 2; transition: all 0.18s ease; }
.wish-heart:hover { color: #e0245e; transform: scale(1.08); }
.wish-heart.is-on { color: #e0245e; }
.wish-heart.is-on svg { fill: #e0245e; stroke: #e0245e; }
.wish-heart-pdp {
  position: relative; top: auto; right: auto;
  width: 44px; height: 44px;
  margin-top: 4px; margin-bottom: 4px;
  align-self: flex-start;
  background: var(--panel);
  border: 1.5px solid var(--line);
}

.wishlist-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 900px) { .wishlist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.wish-empty {
  text-align: center; padding: 60px 24px;
  background: var(--panel); border-radius: var(--radius-lg);
}
.wish-empty-icon { font-size: 3rem; margin-bottom: 12px; }

/* ---------- Reviews ---------- */
.reviews-section { padding: 56px 0; background: var(--panel); }
.reviews-section .section-head { margin-bottom: 28px; }
.reviews-wrap {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start;
}
@media (max-width: 900px) { .reviews-wrap { grid-template-columns: 1fr; gap: 22px; } }
.reviews-summary {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; position: sticky; top: 96px; align-self: start;
}
@media (max-width: 900px) { .reviews-summary { position: static; } }
.reviews-avg { font-family: var(--font-display); font-weight: 900; font-size: 3rem; line-height: 1; color: var(--text); }
.reviews-stars { font-size: 1.1rem; color: #f5a623; letter-spacing: 2px; margin: 6px 0 4px; }
.reviews-stars .star.empty { color: #e8e8ed; }
.reviews-stars .star.half { background: linear-gradient(90deg, #f5a623 50%, #e8e8ed 50%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reviews-total { font-size: 0.85rem; color: var(--soft); margin-bottom: 16px; }
.reviews-bars { display: grid; gap: 6px; margin-top: 8px; }
.rev-bar { display: grid; grid-template-columns: 24px 1fr 20px; gap: 8px; align-items: center; font-size: 0.78rem; color: var(--soft); }
.rev-bar-track { height: 8px; background: var(--panel); border-radius: 999px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: #f5a623; border-radius: 999px; transition: width 0.4s var(--ease); }

.reviews-list { display: grid; gap: 16px; }
.review-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px;
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1f, #6e6e73); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
}
.review-meta { flex: 1; min-width: 0; }
.review-meta strong { color: var(--text); font-weight: 700; font-size: 0.9rem; }
.review-stars { color: #f5a623; font-size: 0.78rem; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.review-stars .star.empty { color: #e8e8ed; }
.review-date { color: var(--soft); font-size: 0.76rem; letter-spacing: 0; }
.review-verified { font-size: 0.72rem; font-weight: 700; color: var(--green); padding: 4px 10px; background: var(--green-soft); border-radius: 999px; }
.review-text { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; margin: 0; }

/* ---------- Recently Viewed ---------- */
.rv-section { padding: 48px 0; }
.rv-section[hidden] { display: none; }
.rv-strip {
  display: flex; gap: 14px; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 0 14px;
  scroll-snap-type: x mandatory;
}
.rv-strip::-webkit-scrollbar { display: none; }
.rv-card {
  flex: 0 0 200px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; text-decoration: none; color: var(--text);
  transition: all 0.22s var(--ease);
}
.rv-card:hover { border-color: var(--text); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rv-card-img { aspect-ratio: 1 / 1; background: var(--panel); overflow: hidden; }
.rv-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rv-img-fallback { font-size: 1.6rem; color: var(--soft); display: grid; place-items: center; height: 100%; }
.rv-card-body { padding: 12px; }
.rv-card-body h4 { font-size: 0.84rem; font-weight: 700; line-height: 1.25; margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rv-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.rv-price { font-family: var(--font-display); font-weight: 800; font-size: 0.92rem; }
.rv-add {
  background: var(--text); color: #fff; border: none;
  padding: 7px 12px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700; cursor: pointer;
  font-family: var(--font-body);
}
.rv-add:hover { background: var(--green); }

/* ---------- Bundles (homepage dark section) ---------- */
.bundles-section {
  padding: 64px 0;
  background: radial-gradient(ellipse at top, #16161a 0%, #0a0a0c 60%, #050506 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.bundles-section::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 70%);
  pointer-events: none;
}
.bundles-head { text-align: center; margin-bottom: 36px; position: relative; z-index: 2; }
.bundles-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(37,211,102,0.15); color: #6affb6;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.bundles-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: #fff; margin: 0 0 8px; line-height: 1.15;
}
.bundles-sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 520px; margin: 0 auto; }
.bundles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .bundles-grid { grid-template-columns: 1fr; gap: 16px; } }
.bundle-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: all 0.25s var(--ease);
  display: flex; flex-direction: column;
}
.bundle-card:hover {
  border-color: rgba(37,211,102,0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(37,211,102,0.18);
}
.bundle-tag {
  position: absolute; top: -10px; left: 22px;
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: #04130b; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.bundle-imgs {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
  justify-content: center;
}
.bundle-imgs img {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 8px; background: #fff;
}
.bundle-slot-fallback {
  width: 64px; height: 64px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center; font-size: 1.4rem;
}
.bundle-plus { color: rgba(255,255,255,0.4); font-size: 1.2rem; font-weight: 800; }
.bundle-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.18rem; color: #fff; margin: 0 0 8px;
}
.bundle-desc { color: rgba(255,255,255,0.65); font-size: 0.84rem; line-height: 1.5; margin: 0 0 14px; }
.bundle-list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 6px; }
.bundle-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.84rem; color: rgba(255,255,255,0.78);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bundle-list li span { color: rgba(255,255,255,0.5); font-weight: 600; }
.bundle-pricing {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bundle-total span { color: rgba(255,255,255,0.55); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bundle-total strong {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.6rem; color: #fff; line-height: 1.05;
}
.bundle-save {
  background: rgba(37,211,102,0.16);
  color: #6affb6;
  padding: 6px 12px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 800;
  border: 1px solid rgba(37,211,102,0.3);
}
.bundle-add {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: #04130b; font-weight: 800; font-size: 0.92rem;
  border: none; border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  margin-top: auto;
}
.bundle-add:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }
.bundle-add.is-added { background: #6affb6; }

/* ---------- Bundle slot selectors ---------- */
.bundle-slots { display: grid; gap: 10px; margin: 0 0 14px; }
.bundle-slot { display: flex; flex-direction: column; gap: 6px; }
.bundle-slot label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.bundle-select {
  width: 100%;
  padding: 11px 36px 11px 13px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2325d366' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 13px center;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.bundle-select:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
}
.bundle-select:hover { border-color: rgba(37,211,102,0.5); }
.bundle-select option { background: #0b0f0d; color: #fff; }
.bundle-select option[disabled] { color: rgba(255,255,255,0.45); }
.bundle-select.is-invalid {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.25);
  animation: bundleShake 0.42s cubic-bezier(.36,.07,.19,.97);
}
.bundle-slot-fixed .bundle-slot-static {
  padding: 11px 13px;
  background: rgba(37,211,102,0.08);
  color: rgba(255,255,255,0.85);
  border: 1.5px dashed rgba(37,211,102,0.35);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
}
.bundle-error {
  min-height: 18px;
  font-size: 0.78rem;
  color: #ff6b6b;
  margin: -4px 0 8px;
  font-weight: 600;
}
@keyframes bundleShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}

/* ---------- Frequently Bought Together (PDP) ---------- */
.fbt-section { padding: 56px 0; background: var(--panel); }
.fbt-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.fbt-card {
  flex: 0 0 160px;
  text-align: center;
  text-decoration: none; color: var(--text);
}
.fbt-card.fbt-current { opacity: 1; }
.fbt-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-md); background: var(--panel); margin-bottom: 8px; }
.fbt-fallback { display: block; height: 160px; line-height: 160px; font-size: 2rem; background: var(--panel); border-radius: var(--radius-md); margin-bottom: 8px; }
.fbt-name { font-size: 0.82rem; font-weight: 700; line-height: 1.3; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fbt-price { font-family: var(--font-display); font-weight: 800; font-size: 0.92rem; color: var(--text); }
.fbt-plus { font-size: 1.4rem; color: var(--soft); font-weight: 800; }
.fbt-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.fbt-total span { font-size: 0.82rem; color: var(--soft); text-transform: uppercase; letter-spacing: 0.05em; }
.fbt-total strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; }
.fbt-add {
  padding: 14px 26px;
  background: var(--text); color: #fff;
  border: none; border-radius: 12px;
  font-weight: 800; font-size: 0.92rem; cursor: pointer;
  transition: background 0.2s ease;
}
.fbt-add:hover { background: var(--green); }
.fbt-add.is-added { background: var(--green); }

@media (max-width: 540px) {
  .fbt-card { flex: 0 0 calc(50% - 24px); }
  .reviews-section { padding: 40px 0; }
  .bundles-section { padding: 48px 0; }
}

/* ========================================================================
   AFFILIATE PAGE
   ======================================================================== */
.aff-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
  background: radial-gradient(ellipse at top, #16161a 0%, #0a0a0c 55%, #050506 100%);
  color: #fff;
  isolation: isolate;
}
.aff-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.82) 0%, rgba(8,8,10,0.94) 70%, rgba(5,5,6,1) 100%),
    url('../../images/Audi/audi-door-logo-light-1.jpg') center/cover no-repeat;
  filter: saturate(1.15) contrast(1.05);
  opacity: 0.85;
}
.aff-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  pointer-events: none;
}
.aff-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55; z-index: 1;
  pointer-events: none;
}
.aff-hero-glow-1 {
  width: 420px; height: 420px; background: #25d366;
  top: -140px; right: -80px;
  animation: glow-drift 18s ease-in-out infinite alternate;
}
.aff-hero-glow-2 {
  width: 340px; height: 340px; background: #1ea0d6;
  bottom: -180px; left: -60px; opacity: 0.4;
  animation: glow-drift 22s ease-in-out infinite alternate-reverse;
}
.aff-hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.aff-hero-particles span {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px;
  background: #25d366; border-radius: 50%;
  box-shadow: 0 0 12px rgba(37,211,102,0.85), 0 0 28px rgba(37,211,102,0.45);
  animation: particle-float 12s linear infinite;
  opacity: 0.7;
}
.aff-hero-particles span:nth-child(1)  { left: 6%;  animation-delay: 0s;   animation-duration: 12s; }
.aff-hero-particles span:nth-child(2)  { left: 18%; animation-delay: -3s;  animation-duration: 14s; }
.aff-hero-particles span:nth-child(3)  { left: 28%; animation-delay: -6s;  animation-duration: 11s; opacity: 0.45; }
.aff-hero-particles span:nth-child(4)  { left: 38%; animation-delay: -1s;  animation-duration: 16s; }
.aff-hero-particles span:nth-child(5)  { left: 48%; animation-delay: -8s;  animation-duration: 13s; opacity: 0.55; }
.aff-hero-particles span:nth-child(6)  { left: 58%; animation-delay: -2s;  animation-duration: 15s; }
.aff-hero-particles span:nth-child(7)  { left: 68%; animation-delay: -10s; animation-duration: 11s; }
.aff-hero-particles span:nth-child(8)  { left: 76%; animation-delay: -4s;  animation-duration: 17s; opacity: 0.45; }
.aff-hero-particles span:nth-child(9)  { left: 84%; animation-delay: -7s;  animation-duration: 12s; }
.aff-hero-particles span:nth-child(10) { left: 92%; animation-delay: -5s;  animation-duration: 14s; }
.aff-hero-particles span:nth-child(11) { left: 12%; animation-delay: -9s;  animation-duration: 10s; opacity: 0.55; }
.aff-hero-particles span:nth-child(12) { left: 3%;  animation-delay: -11s; animation-duration: 13s; }

.aff-hero-inner { position: relative; z-index: 3; text-align: center; max-width: 880px; }
.aff-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(37,211,102,0.32);
  background: rgba(37,211,102,0.08);
  color: #6affb6;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 999px;
  margin-bottom: 26px; backdrop-filter: blur(10px);
}
.aff-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366, 0 0 20px rgba(37,211,102,0.6);
  animation: pulse-dot-fire 1.5s infinite;
}
.aff-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.025em; color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 0 40px rgba(255,255,255,0.3);
}
.aff-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #25d366, #6affb6);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.aff-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem; line-height: 1.6;
  max-width: 620px; margin: 0 auto 34px;
}
.aff-hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.aff-cta-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px;
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: #04130b; font-weight: 800; font-size: 0.96rem;
  border: none; border-radius: 14px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 14px 40px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.aff-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(37,211,102,0.55); }
.aff-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; font-weight: 700; font-size: 0.96rem;
  border-radius: 14px; text-decoration: none;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.aff-cta-ghost:hover { border-color: #25d366; background: rgba(37,211,102,0.1); }

.aff-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 760px; margin: 0 auto;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}
.aff-stat { text-align: center; padding: 4px; }
.aff-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: #fff; letter-spacing: -0.01em;
}
.aff-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px; display: block;
}
@media (max-width: 640px) {
  .aff-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Sections */
.aff-section {
  padding: 80px 0;
  background: #0a0a0c;
  color: #fff;
  position: relative;
}
.aff-section-alt {
  background: linear-gradient(180deg, #0a0a0c 0%, #101013 100%);
}
.aff-section-head { text-align: center; margin-bottom: 44px; max-width: 760px; margin-left: auto; margin-right: auto; }
.aff-section-head .section-label {
  color: #6affb6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.aff-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800; color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.aff-section-sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; }

/* How it works steps */
.aff-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.aff-step {
  position: relative;
  padding: 30px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.aff-step:hover { transform: translateY(-4px); border-color: rgba(37,211,102,0.4); }
.aff-step-num {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: #04130b;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.aff-step h3 { color: #fff; font-size: 1.15rem; margin: 0 0 8px; font-weight: 700; }
.aff-step p { color: rgba(255,255,255,0.7); line-height: 1.6; font-size: 0.92rem; margin: 0; }
@media (max-width: 800px) { .aff-steps { grid-template-columns: 1fr; } }

/* Commission table */
.aff-table-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.aff-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.aff-table th, .aff-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
.aff-table th {
  background: rgba(37,211,102,0.08);
  color: #6affb6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
}
.aff-table tbody tr:last-child td { border-bottom: none; }
.aff-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.aff-table td:nth-child(2) { color: rgba(255,255,255,0.7); }
.aff-table td strong { color: #6affb6; font-weight: 800; }
@media (max-width: 600px) {
  .aff-table th, .aff-table td { padding: 12px 14px; font-size: 0.86rem; }
}

/* Perks grid */
.aff-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.aff-perk {
  display: flex; gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s var(--ease);
}
.aff-perk:hover { border-color: rgba(37,211,102,0.4); }
.aff-tick { font-size: 1.1rem; flex-shrink: 0; }
.aff-perk strong { color: #fff; font-weight: 700; font-size: 0.98rem; display: block; margin-bottom: 2px; }
.aff-perk p { color: rgba(255,255,255,0.6); font-size: 0.86rem; margin: 0; line-height: 1.5; }
@media (max-width: 720px) { .aff-perks { grid-template-columns: 1fr; } }

/* Audience cards */
.aff-audience {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.aff-audience-card {
  padding: 24px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.aff-audience-card:hover { transform: translateY(-4px); border-color: rgba(37,211,102,0.4); }
.aff-audience-icon { font-size: 2rem; margin-bottom: 12px; }
.aff-audience-card h3 { color: #fff; font-size: 0.98rem; font-weight: 700; margin: 0 0 6px; }
.aff-audience-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; line-height: 1.55; }
@media (max-width: 1000px) { .aff-audience { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .aff-audience { grid-template-columns: 1fr; } }

/* FAQ */
.aff-faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.aff-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.aff-faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.aff-faq-item summary::-webkit-details-marker { display: none; }
.aff-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #25d366;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}
.aff-faq-item[open] summary::after { transform: rotate(45deg); }
.aff-faq-item p {
  margin: 0; padding: 0 22px 20px;
  color: rgba(255,255,255,0.72); line-height: 1.65; font-size: 0.92rem;
}
.aff-faq-item p a { color: #6affb6; }

/* Signup form */
.aff-signup-section { background: linear-gradient(180deg, #101013 0%, #0a0a0c 100%); }
.aff-form {
  max-width: 720px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}
.aff-field { display: flex; flex-direction: column; gap: 8px; }
.aff-field-full { grid-column: span 2; }
.aff-field label {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.aff-optional { color: rgba(255,255,255,0.4); font-weight: 500; text-transform: none; letter-spacing: 0; }
.aff-form input,
.aff-form select {
  width: 100%;
  padding: 13px 14px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.aff-form select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2325d366' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.aff-form select option { background: #0b0f0d; color: #fff; }
.aff-form select option[disabled] { color: rgba(255,255,255,0.45); }
.aff-form input::placeholder { color: rgba(255,255,255,0.4); }
.aff-form input:focus,
.aff-form select:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
}
.aff-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.2) !important;
}
.aff-phone-wrap {
  display: flex; align-items: stretch;
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  overflow: hidden;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.aff-phone-wrap:focus-within {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.18);
}
.aff-phone-prefix {
  display: flex; align-items: center;
  padding: 0 14px;
  background: rgba(37,211,102,0.1);
  color: #6affb6;
  font-weight: 700;
  font-size: 0.92rem;
  border-right: 1.5px solid rgba(255,255,255,0.08);
}
.aff-phone-wrap input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.aff-form-actions { grid-column: span 2; margin-top: 6px; }
.aff-submit { width: 100%; padding: 16px; font-size: 1rem; }
.aff-form-error {
  grid-column: span 2;
  min-height: 18px;
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 640px) {
  .aff-form { grid-template-columns: 1fr; padding: 22px; }
  .aff-field-full, .aff-form-actions, .aff-form-error { grid-column: span 1; }
}

/* Result panel */
.aff-result {
  max-width: 720px; margin: 28px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(37,211,102,0.14), rgba(37,211,102,0.04));
  border: 1.5px solid rgba(37,211,102,0.4);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  text-align: center;
  animation: aff-result-pop 0.45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes aff-result-pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.aff-result-emoji { font-size: 2.4rem; margin-bottom: 8px; }
.aff-result-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 6px;
}
.aff-result-head p { color: rgba(255,255,255,0.75); margin: 0 0 22px; font-size: 0.95rem; }
.aff-link-box {
  display: flex; align-items: stretch;
  background: rgba(0,0,0,0.5);
  border: 1.5px dashed rgba(37,211,102,0.5);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.aff-link-box code {
  flex: 1;
  padding: 14px 16px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.9rem;
  color: #6affb6;
  text-align: left;
  word-break: break-all;
  background: transparent;
}
.aff-copy-btn {
  border: none;
  padding: 0 22px;
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: #04130b;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: filter 0.18s var(--ease);
}
.aff-copy-btn:hover { filter: brightness(1.08); }
.aff-whats-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #25d366;
  color: #04130b;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 14px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}
.aff-whats-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(37,211,102,0.55); }
.aff-next-steps { color: rgba(255,255,255,0.65); font-size: 0.86rem; margin: 8px 0 0; }
.aff-next-steps a { color: #6affb6; }

/* =============================================================================
   MOBILE HARDENING (v15) — agency-level polish for touch devices.
   Applied globally; existing breakpoint rules above still take precedence
   where they need to.
   ============================================================================= */

/* ---- iOS / Android global behavior ---- */
html {
  -webkit-text-size-adjust: 100%;          /* prevent landscape text scaling */
  text-size-adjust: 100%;
}
html, body {
  -webkit-tap-highlight-color: transparent;/* no gray flash on tap */
  -webkit-touch-callout: default;          /* keep long-press for images */
}

/* Smooth iOS-style scrolling on every scroll container */
.filter-bar, .cat-tabs, .pdp-thumbs, .gallery-thumbs,
.rv-strip, .related-strip, .search-results,
.fbt-row, .cart-drawer-body,
[class*="overflow-x"] {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Kill 300ms tap delay + prevent double-tap zoom on every interactive control */
a, button, input[type="button"], input[type="submit"], input[type="reset"],
.btn, .order-btn, .btn-order, .c-btn, .order-btn-bottom,
.cart-btn, .wish-btn, .nav-search-btn, .hamburger,
.cart-qty-btn, .cart-remove, .cart-checkout-btn,
.pdp-qty-btn, .variant-pill, .filter-btn, .cat-tab,
.gallery-thumb, .pdp-thumb, .pdp-add, .pdp-wa,
.place-order-btn, .mcta-wa, .mobile-close,
.rv-add, .fbt-add, .bundle-add, .wish-heart, .wish-heart-pdp,
.search-close, .cart-drawer-close, .faq-item h3 {
  touch-action: manipulation;
}

/* Form inputs: always 16px on touch (prevent iOS zoom on focus everywhere) */
@media (hover: none) and (pointer: coarse) {
  input[type="text"], input[type="tel"], input[type="email"],
  input[type="number"], input[type="password"], input[type="search"],
  input[type="url"], select, textarea {
    font-size: 16px;
  }
}

/* Prevent long product names / customer notes from breaking layout */
h1, h2, h3, h4,
.pcard-body h4, .product-card-body h4, .all-product-card .card-body h4,
.pdp-title, .cart-item-name, .summary-name, .rv-card h4,
.bundle-title, .fbt-name, .search-result-name, .reviews-list .review-text {
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* Flex items inside cart/summary rows must allow shrinking */
.cart-item-info, .summary-info, .search-result-info, .rv-card-body { min-width: 0; }

/* Universal touch-target floor: 44px for primary CTAs, 40px for everything else */
@media (hover: none) and (pointer: coarse) {
  .btn, .order-btn, .btn-order, .c-btn,
  .cart-qty-btn, .cart-remove, .pdp-qty-btn,
  .variant-pill, .filter-btn, .cat-tab,
  .rv-add, .fbt-add, .bundle-add {
    min-height: 40px;
  }
  .btn-fire-primary, .btn-fire-ghost,
  .pdp-add, .pdp-wa, .place-order-btn,
  .cart-checkout-btn, .mcta-wa,
  .hamburger, .cart-btn, .wish-btn, .nav-search-btn,
  .cart-drawer-close, .mobile-close, .search-close {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Make sure NOTHING can horizontally overflow the viewport on mobile */
@media (max-width: 768px) {
  body { overflow-x: clip; }
  img, video, iframe, table { max-width: 100%; }
  pre, code { white-space: pre-wrap; word-break: break-word; }
  /* Sticky top bar: ensure iOS Safari renders position:sticky */
  .topbar { position: -webkit-sticky; position: sticky; top: 0; }
  /* Body has padding-bottom for the mobile sticky CTA — re-assert it */
  body.has-mobile-cta { padding-bottom: 88px; }
}

/* ≤414px (iPhone 14 Plus / Pro Max in portrait) — between phone & SE */
@media (max-width: 414px) {
  .nav-actions .btn.btn-outline,
  .nav-actions .btn.btn-dark {
    /* Hide "Call / Order on WhatsApp" buttons on tightest viewports — they push the cart icon off-screen */
    display: none;
  }
}

/* iPhone SE (≤375px) — last-mile tightening */
@media (max-width: 375px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .hero-fire-title { font-size: 1.75rem; }
  .hero-fire-desc { font-size: 0.86rem; }
  .section-title { font-size: 1.25rem; }
  .pcard-body h4, .product-card-body h4 { font-size: 0.78rem; }
  .price-now, .c-now { font-size: 0.88rem; }
  /* Stat pills on earn page wrap nicely */
  .earn-page .stat-pill { min-width: 0; flex: 1 1 calc(50% - 6px); }
}

/* Reduced-motion accessibility — kill animation for users who request it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .announce-track { animation: none !important; }
}

/* Visible focus outline for keyboard users (preserves tap-highlight: transparent above) */
:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 2px;
  border-radius: 4px;
}

/* iOS Safari: prevent rubber-banding "bounce" from exposing pure-black behind body */
html { background: #fff; }
body.earn-page, body[style*="background:#06"] { background: #06060a; }

/* =============================================================================
   CRO ADDITIONS (v16) — exit intent, sticky CTA, social proof, cart toast,
   trust badges, WhatsApp pulse + speech bubble, count-up ticker.
   ============================================================================= */

/* ---------- Exit Intent Modal ---------- */
.ei-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1200; display: none; opacity: 0; transition: opacity 0.22s ease; padding: 18px; align-items: center; justify-content: center; }
.ei-overlay.is-open { display: flex; opacity: 1; }
.ei-card { position: relative; max-width: 440px; width: 100%; background: linear-gradient(180deg, #ffffff 0%, #fff9f3 100%); border-radius: 18px; padding: 32px 28px; text-align: center; transform: scale(0.92); transition: transform 0.25s var(--ease, ease); box-shadow: 0 28px 64px rgba(0,0,0,0.45); }
.ei-overlay.is-open .ei-card { transform: scale(1); }
.ei-close { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.06); border: none; cursor: pointer; font-size: 18px; color: #666; }
.ei-close:hover { background: rgba(0,0,0,0.12); }
.ei-eyebrow { display: inline-block; padding: 4px 12px; background: rgba(255,107,46,0.12); color: #ff6b2e; border-radius: 999px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.ei-h1 { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 1.7rem; margin: 0 0 6px; color: #1d1d1f; line-height: 1.15; }
.ei-sub { color: #6e6e73; font-size: 0.94rem; margin: 0 0 18px; }
.ei-coupon { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #1d1d1f; color: #fff; border-radius: 11px; font-family: var(--font-display, 'Outfit', sans-serif); margin: 0 0 16px; justify-content: center; }
.ei-coupon-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.ei-coupon-code { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.1em; }
.ei-copy { padding: 6px 10px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 7px; font-weight: 700; cursor: pointer; font-size: 0.78rem; font-family: inherit; }
.ei-copy.copied { background: #25d366; color: #04130b; border-color: transparent; }
.ei-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 18px; background: linear-gradient(135deg, #25d366, #1ebe5a); color: #04130b; font-weight: 800; font-size: 1rem; border-radius: 12px; text-decoration: none; box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
.ei-fineprint { color: #999; font-size: 0.75rem; margin: 12px 0 0; }

/* ---------- Social Proof (PDP injection) ---------- */
.sp-strip { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 16px; }
.sp-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; background: rgba(255,107,46,0.08); border: 1px solid rgba(255,107,46,0.22); color: #c5440a; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.sp-chip.green { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.22); color: #157f3d; }
.sp-chip.amber { background: rgba(255,184,46,0.08); border-color: rgba(255,184,46,0.22); color: #a66b00; }
.sp-chip .sp-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 2px rgba(255,107,46,0.12); animation: sp-pulse 1.6s ease-in-out infinite; }
.sp-chip.green .sp-dot { box-shadow: 0 0 0 2px rgba(37,211,102,0.12); }
.sp-chip.amber .sp-dot { box-shadow: 0 0 0 2px rgba(255,184,46,0.12); }
@keyframes sp-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }

/* PDP trust badges (free delivery / plug & play / estimated delivery) */
.pdp-trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 18px; }
.pdp-trust-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; background: var(--panel, #f5f5f7); border: 1px solid var(--line, #e5e5e7); border-radius: 10px; font-size: 0.8rem; font-weight: 700; color: var(--text, #1d1d1f); }
.pdp-trust-badge svg { flex-shrink: 0; }
.pdp-trust-badge.green { background: rgba(37,211,102,0.06); border-color: rgba(37,211,102,0.25); color: #157f3d; }

/* ---------- Sticky Add-to-Cart bar (PDP only) ---------- */
.sticky-pdp-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: #fff; border-top: 1px solid var(--line, #e5e5e7);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  transform: translateY(100%); transition: transform 0.25s var(--ease, ease);
}
.sticky-pdp-bar.is-visible { transform: translateY(0); }
.sticky-pdp-name { flex: 1; min-width: 0; font-weight: 700; font-size: 0.86rem; color: var(--text, #1d1d1f); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-pdp-price { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 1.05rem; color: var(--text, #1d1d1f); white-space: nowrap; }
.sticky-pdp-add { padding: 11px 16px; background: var(--text, #1d1d1f); color: #fff; border: none; border-radius: 10px; font-weight: 800; cursor: pointer; font-family: inherit; font-size: 0.86rem; white-space: nowrap; min-height: 44px; }
.sticky-pdp-add:hover { transform: translateY(-1px); }
@media (max-width: 540px) {
  .sticky-pdp-name { font-size: 0.78rem; }
  .sticky-pdp-price { font-size: 0.95rem; }
  .sticky-pdp-add { padding: 10px 12px; font-size: 0.78rem; }
  /* Push the existing mobile-cta-bar up so it doesn't overlap our sticky bar when both want to show.
     The sticky-pdp-bar replaces the mobile-cta-bar's role on PDP. */
  .sticky-pdp-bar.is-visible ~ .mobile-cta-bar { display: none; }
}

/* ---------- Cart Abandonment Toast ---------- */
.ca-toast {
  position: fixed; bottom: 22px; right: 22px; z-index: 1050;
  background: #1d1d1f; color: #fff;
  padding: 14px 16px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
  max-width: 360px;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease, ease), opacity 0.3s ease;
}
.ca-toast.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.ca-toast .ca-icon { font-size: 1.4rem; }
.ca-toast .ca-body { flex: 1; min-width: 0; }
.ca-toast .ca-title { font-weight: 800; font-size: 0.94rem; margin-bottom: 2px; }
.ca-toast .ca-sub { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.ca-toast .ca-cta { padding: 8px 14px; background: #25d366; color: #04130b; border: none; border-radius: 9px; font-weight: 800; cursor: pointer; font-family: inherit; font-size: 0.82rem; white-space: nowrap; }
.ca-toast .ca-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 18px; line-height: 1; padding: 0 4px; }
.ca-toast .ca-close:hover { color: #fff; }
@media (max-width: 540px) { .ca-toast { left: 14px; right: 14px; bottom: 76px; max-width: none; } }

/* ---------- WhatsApp Floating Button improvements ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 95;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5a 100%);
  color: #04130b; font-weight: 800; font-size: 0.92rem;
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.6); }
  50%      { box-shadow: 0 12px 32px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-bubble {
  position: fixed; right: 18px; bottom: 76px; z-index: 95;
  background: #fff; color: #1d1d1f;
  padding: 12px 14px 12px 14px; padding-right: 32px;
  border-radius: 14px 14px 4px 14px;
  font-size: 0.86rem; font-weight: 600;
  max-width: 240px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  transform: translateY(8px); opacity: 0; pointer-events: none;
  transition: transform 0.28s var(--ease, ease), opacity 0.28s ease;
}
.wa-bubble.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wa-bubble-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,0.06); border: none; cursor: pointer; font-size: 12px; color: #666; line-height: 1; padding: 0; }
.wa-bubble-tail { display: none; }
@media (max-width: 540px) {
  .wa-float { padding: 10px 14px 10px 12px; font-size: 0.84rem; }
  .wa-bubble { right: 14px; bottom: 70px; max-width: 210px; font-size: 0.82rem; }
  /* On pages with mobile-cta-bar, lift the wa-float so it doesn't overlap */
  body.has-mobile-cta .wa-float { bottom: 78px; }
  body.has-mobile-cta .wa-bubble { bottom: 138px; }
}

/* ---------- Homepage count-up ticker ---------- */
.cust-ticker { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; background: linear-gradient(90deg, rgba(37,211,102,0.06), rgba(255,107,46,0.06)); border-top: 1px solid var(--line, #e5e5e7); border-bottom: 1px solid var(--line, #e5e5e7); font-weight: 700; font-size: 0.92rem; color: var(--text, #1d1d1f); flex-wrap: wrap; text-align: center; }
.cust-ticker strong { font-family: var(--font-display, 'Outfit', sans-serif); font-size: 1.4rem; font-weight: 800; color: #157f3d; }
@media (max-width: 540px) { .cust-ticker { font-size: 0.84rem; } .cust-ticker strong { font-size: 1.15rem; } }

/* =============================================================================
   FEATURE BUNDLE v17 — warranty badge, model selector, variant row,
   install video section, custom-order card on shop page
   ============================================================================= */

.warranty-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(106,177,255,0.08); border: 1px solid rgba(106,177,255,0.28); color: #1c6ed4; border-radius: 8px; font-size: 0.78rem; font-weight: 800; white-space: nowrap; vertical-align: middle; }
.warranty-tag { display: inline-flex; align-items: center; gap: 4px; padding: 2px 7px; background: rgba(106,177,255,0.08); color: #1c6ed4; border-radius: 6px; font-size: 0.66rem; font-weight: 800; line-height: 1.4; margin-left: 6px; vertical-align: middle; }
.warranty-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(106,177,255,0.06); border: 1px solid rgba(106,177,255,0.2); border-radius: 12px; margin: 14px 0; }
.warranty-row .w-icon { font-size: 1.6rem; flex-shrink: 0; }
.warranty-row .w-text strong { display: block; color: var(--text, #1d1d1f); font-size: 0.94rem; font-family: var(--font-display, 'Outfit', sans-serif); }
.warranty-row .w-text span { color: var(--soft, #6e6e73); font-size: 0.82rem; }

.model-selector { margin: 14px 0; padding: 14px 16px; background: var(--panel, #f5f5f7); border: 1px solid var(--line, #e5e5e7); border-radius: 12px; }
.model-selector label { display: block; font-size: 0.78rem; color: var(--soft, #6e6e73); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.model-selector select { width: 100%; padding: 11px 12px; background: #fff; color: var(--text, #1d1d1f); border: 1.5px solid var(--line, #e5e5e7); border-radius: 10px; font-family: inherit; font-size: 16px; font-weight: 600; }
.model-selector select:focus { outline: none; border-color: var(--green, #25d366); box-shadow: 0 0 0 3px rgba(37,211,102,0.18); }
.model-compat { margin-top: 8px; font-size: 0.86rem; font-weight: 700; }
.model-compat.unselected { color: var(--soft, #6e6e73); }
.model-compat.matched    { color: #157f3d; }

.logo-variant-row { margin-top: 14px; }
.logo-variant-row .logo-variant-label { display: block; font-size: 0.78rem; color: var(--soft, #6e6e73); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.logo-variant-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.logo-variant-pill { flex: 1 1 calc(33% - 6px); min-width: 100px; padding: 11px 12px; background: #fff; border: 1.5px solid var(--line, #e5e5e7); border-radius: 10px; cursor: pointer; text-align: center; font-family: inherit; font-weight: 700; font-size: 0.84rem; color: var(--text, #1d1d1f); transition: all 0.18s ease; }
.logo-variant-pill .v-name { display: block; font-weight: 800; font-size: 0.88rem; }
.logo-variant-pill .v-price { display: block; font-size: 0.76rem; color: var(--soft, #6e6e73); font-weight: 700; margin-top: 2px; }
.logo-variant-pill.active { border-color: var(--green, #25d366); background: rgba(37,211,102,0.08); }
.logo-variant-pill.active .v-price { color: #157f3d; }
.logo-variant-pill:hover { border-color: var(--green, #25d366); }

.install-section { margin: 36px 0; padding: 28px; background: var(--panel, #f5f5f7); border: 1px solid var(--line, #e5e5e7); border-radius: 18px; }
.install-section h3 { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 1.3rem; margin: 0 0 6px; color: var(--text, #1d1d1f); }
.install-section .install-sub { color: var(--soft, #6e6e73); font-size: 0.92rem; margin: 0 0 18px; }
.install-video { position: relative; aspect-ratio: 16/9; width: 100%; background: #14141a; border-radius: 14px; overflow: hidden; }
.install-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.install-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 20px; text-align: center; background: linear-gradient(135deg, #1a1a22, #0a0a10); color: #fff; }
.install-placeholder .play-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(37,211,102,0.18); display: flex; align-items: center; justify-content: center; color: #6affb6; font-size: 1.4rem; }
.install-placeholder strong { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 1.1rem; }
.install-placeholder span { color: rgba(255,255,255,0.6); font-size: 0.86rem; max-width: 340px; line-height: 1.5; }
.install-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.install-step { padding: 16px; background: #fff; border: 1px solid var(--line, #e5e5e7); border-radius: 12px; }
.install-step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, #25d366, #1ebe5a); color: #04130b; font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 0.84rem; margin-bottom: 8px; }
.install-step h4 { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 0.96rem; margin: 0 0 4px; }
.install-step p { font-size: 0.82rem; color: var(--soft, #6e6e73); margin: 0; line-height: 1.45; }
.install-help { margin-top: 18px; padding: 12px 16px; background: rgba(37,211,102,0.06); border: 1px solid rgba(37,211,102,0.2); border-radius: 10px; font-size: 0.88rem; color: var(--text, #1d1d1f); text-align: center; }
.install-help a { color: #157f3d; font-weight: 800; text-decoration: underline; }
@media (max-width: 800px) { .install-steps { grid-template-columns: 1fr; } }

.custom-order-card { display: flex; flex-direction: column; padding: 24px; background: linear-gradient(135deg, rgba(255,140,46,0.08), rgba(255,94,58,0.04)); border: 1.5px solid rgba(255,140,46,0.35); border-radius: 18px; gap: 8px; min-height: 240px; justify-content: center; align-items: center; text-align: center; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.custom-order-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(255,140,46,0.18); }
.custom-order-card .co-icon { font-size: 2.4rem; }
.custom-order-card h3 { font-family: var(--font-display, 'Outfit', sans-serif); font-weight: 800; font-size: 1.1rem; margin: 0; color: var(--text, #1d1d1f); }
.custom-order-card p { color: var(--soft, #6e6e73); font-size: 0.86rem; margin: 0; line-height: 1.4; }
.custom-order-card .co-cta { display: inline-block; margin-top: 6px; padding: 9px 16px; background: linear-gradient(135deg, #ff8c2e, #ff5e3a); color: #fff; border-radius: 9px; font-weight: 800; font-size: 0.86rem; }

/* =============================================================================
   FRICTION REDUCTION (v18) — checkout progress, collapsed details, COD pill,
   trust message, sticky Place Order on mobile
   ============================================================================= */

/* Progress indicator at top of checkout page */
.checkout-progress { display: flex; gap: 4px; margin-bottom: 22px; padding: 12px 14px; background: var(--panel, #f7f7f9); border-radius: 12px; align-items: center; }
.cp-step { flex: 1; display: flex; align-items: center; gap: 8px; padding: 8px 4px; font-size: 0.82rem; font-weight: 700; color: var(--soft, #6e6e73); line-height: 1.2; }
.cp-step .cp-num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--line, #e5e5e7); color: var(--soft, #6e6e73); font-size: 0.78rem; font-weight: 800; flex-shrink: 0; }
.cp-step.done .cp-num { background: rgba(37,211,102,0.16); color: #157f3d; }
.cp-step.done { color: #157f3d; }
.cp-step.done .cp-num::before { content: '✓'; }
.cp-step.done .cp-num { font-size: 0; }
.cp-step.done .cp-num::before { font-size: 0.86rem; }
.cp-step.active .cp-num { background: linear-gradient(135deg, #25d366, #1ebe5a); color: #04130b; }
.cp-step.active { color: var(--text, #1d1d1f); }
.cp-arrow { color: var(--line, #d8d8de); flex-shrink: 0; font-weight: 700; }
@media (max-width: 540px) {
  .checkout-progress { padding: 10px; }
  .cp-step { font-size: 0.72rem; padding: 6px 2px; }
  .cp-step .cp-num { width: 20px; height: 20px; font-size: 0.7rem; }
}

/* COD pill — prominent green pill near top of checkout form */
.cod-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: linear-gradient(135deg, rgba(37,211,102,0.16), rgba(37,211,102,0.08)); border: 1px solid rgba(37,211,102,0.4); color: #157f3d; border-radius: 999px; font-weight: 800; font-size: 0.88rem; margin: 0 0 14px; }
.cod-pill .cod-icon { font-size: 1.1rem; }

/* "Add more details" toggle for Building + Notes */
.collapse-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(0,0,0,0.04); border: 1px dashed var(--line, #d8d8de); border-radius: 10px; color: var(--text, #1d1d1f); font-family: inherit; font-weight: 700; font-size: 0.86rem; cursor: pointer; margin: 8px 0 6px; transition: background 0.18s ease; }
.collapse-toggle:hover { background: rgba(0,0,0,0.08); }
.collapse-toggle .ct-icon { display: inline-block; width: 16px; text-align: center; font-weight: 800; }
.collapse-panel[hidden] { display: none; }
.collapse-panel { animation: collapseFadeIn 0.22s ease; }
@keyframes collapseFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* Trust line near submit button */
.checkout-trust-line { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(37,211,102,0.06); border-left: 3px solid #25d366; border-radius: 6px; margin: 14px 0; font-size: 0.86rem; color: var(--text, #1d1d1f); font-weight: 600; }
.checkout-trust-line strong { color: #157f3d; font-weight: 800; }

/* Sticky Place Order on mobile */
@media (max-width: 768px) {
  .place-order-btn {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    box-shadow: 0 -2px 0 #fff inset, 0 12px 28px rgba(29,29,31,0.32);
  }
  /* On pages with the mobile-cta-bar, lift the sticky button above it */
  body.has-mobile-cta .place-order-btn { bottom: 78px; }
}
