/* ============================================================
   VPerformance — Design System
   No build step. Pure CSS custom properties + components.
   ============================================================ */

:root {
  /* Palette — light, premium, aligned to the shop's orange + graphite branding */
  --bg: #ffffff;
  --bg-elev: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-hover: #fbfbfc;
  --line: #e7e7ec;
  --line-soft: #f0f0f3;

  --text: #1c1c22;          /* graphite, like the logo wordmark */
  --text-soft: #51515c;
  --text-mute: #8b8b96;

  --accent: #f15a24;        /* signature orange (from the logo) */
  --accent-hot: #ff6f37;
  --accent-soft: rgba(241, 90, 36, 0.10);
  --accent-glow: rgba(241, 90, 36, 0.28);

  --on-accent: #ffffff;     /* text/icon colour on the orange accent */

  --green: #15a34a;
  --amber: #d97706;
  --red: #dc2626;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow: 0 16px 40px -22px rgba(24, 24, 35, 0.25);
  --shadow-soft: 0 6px 20px -12px rgba(24, 24, 35, 0.18);
  --shadow-accent: 0 16px 40px -22px var(--accent-glow);

  --maxw: 1200px;
  --header-h: 76px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 14px 0 0; }
.section-lead { color: var(--text-soft); max-width: 620px; margin-top: 14px; font-size: 1.05rem; }

.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-hot); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-whatsapp { background: #25d366; color: #07351b; }
.btn-whatsapp:hover { background: #2ee676; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.logo .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #c93a00);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: var(--shadow-accent);
}
.logo .mark svg { width: 22px; height: 22px; }
.logo b { color: var(--accent); }
.brand-logo { height: 50px; width: auto; display: block; }
.site-footer .brand-logo { height: 54px; }
.mobile-nav .brand-logo { height: 48px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--text-soft); font-size: 0.95rem; font-weight: 500; transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 2px; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; color: var(--text); }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(80px, 12vw, 150px) 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(241, 90, 36, 0.12), transparent 60%),
    radial-gradient(700px 500px at -5% 10%, rgba(241, 90, 36, 0.06), transparent 55%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3; object-fit: cover; width: 100%; height: 100%;
  opacity: 0.08; filter: grayscale(0.1) contrast(1.02);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-hot)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin-top: 22px; font-size: 1.15rem; color: var(--text-soft); max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; color: var(--text-mute); font-size: 0.9rem; }
.hero-trust b { color: var(--text); }

/* Hero featured-products card */
.hero-feature-card {
  position: relative; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--bg-card);
  box-shadow: var(--shadow); padding: 18px;
}
.hfc-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 6px 14px; }
.hfc-head .hfc-title { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.hfc-head .hfc-title .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.hfc-head a { color: var(--accent); font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); }
.hfc-head a:hover { text-decoration: underline; }
/* Generic single-slide auto-rotating carousel */
.car-track { display: grid; }
.car-track > * { grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .5s ease; }
.car-track > *.active { opacity: 1; visibility: visible; pointer-events: auto; }
.car-dots { display: flex; gap: 7px; justify-content: center; margin-top: 16px; }
.car-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: width .25s ease, background .25s ease; }
.car-dots button:hover { background: var(--text-mute); }
.car-dots button.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* Hero featured card: single product showcase */
.hfc-carousel { min-height: 248px; }
.hfc-slide { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-elev); transition: border-color .2s ease, transform .2s ease; }
.hfc-slide:hover { border-color: var(--accent); transform: translateY(-2px); }
.hfc-slide-media { width: 100%; aspect-ratio: 16 / 10; background: var(--bg-elev); }
.hfc-slide-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfc-slide-body { padding: 16px 18px; }
.hfc-slide-brand { font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.hfc-slide-body b { display: block; font-family: var(--font-display); font-size: 1.12rem; line-height: 1.25; margin-top: 4px; }
.hfc-slide-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.hfc-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.hfc-go { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-weight: 600; font-family: var(--font-display); font-size: 0.9rem; }
.hfc-go .arrow { width: 16px; height: 16px; }

/* ---------- Marquee / brands ---------- */
.brand-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; background: var(--bg-elev); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--text-mute); letter-spacing: 0.02em; white-space: nowrap; transition: color .2s; }
.marquee-track span:hover { color: var(--text); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.cat-tile {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; background: var(--bg-card); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--bg-card-hover); }
.cat-tile .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.cat-tile .ico svg { width: 24px; height: 24px; }
.cat-tile h3 { font-size: 1.1rem; }
.cat-tile p { color: var(--text-mute); font-size: 0.88rem; margin-top: 6px; }
.cat-tile .arrow { position: absolute; top: 22px; right: 22px; color: var(--text-mute); transition: color .2s, transform .2s; }
.cat-tile:hover .arrow { color: var(--accent); transform: translate(3px, -3px); }

/* ---------- Product cards ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }

.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--bg-elev); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-brand { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--text); font-size: 0.72rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; letter-spacing: 0.04em; }
.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.02rem; line-height: 1.25; }
.card-fitment { color: var(--text-mute); font-size: 0.82rem; margin-top: 6px; }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.price small { color: var(--text-mute); font-weight: 500; font-size: 0.78rem; }

/* Availability pills */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; letter-spacing: 0.02em; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill.in_stock { color: var(--green); background: rgba(52, 211, 153, 0.12); }
.pill.low_stock { color: var(--amber); background: rgba(251, 191, 36, 0.12); }
.pill.made_to_order { color: #60a5fa; background: rgba(96, 165, 250, 0.12); }
.pill.out_of_stock { color: var(--red); background: rgba(248, 113, 113, 0.12); }

/* ---------- Catalog controls ---------- */
.catalog-head { padding: 56px 0 8px; }
.controls { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 28px 0 6px; }
.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-mute); }
.search-box input { width: 100%; padding: 13px 16px 13px 46px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 0.95rem; outline: none; transition: border-color .2s; }
.search-box input:focus { border-color: var(--accent); }
.select { padding: 13px 16px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 0.92rem; outline: none; cursor: pointer; }
.select:focus { border-color: var(--accent); }

.chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 8px; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--text-soft); font-size: 0.86rem; font-weight: 500; transition: all .2s; }
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.result-count { color: var(--text-mute); font-size: 0.9rem; margin: 18px 0; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-mute); }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 40px; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-main-img { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-elev); }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumb { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); cursor: pointer; opacity: 0.6; transition: opacity .2s, border-color .2s; }
.pd-thumb.active, .pd-thumb:hover { opacity: 1; border-color: var(--accent); }
.pd-brand { color: var(--accent); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }
.pd-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 10px 0 14px; }
.pd-price-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 22px 0; }
.pd-price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; }
.pd-desc { color: var(--text-soft); font-size: 1.05rem; margin: 8px 0 24px; }
.pd-meta { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; margin: 8px 0 26px; display: grid; gap: 12px; }
.pd-meta-row { display: flex; gap: 14px; font-size: 0.95rem; }
.pd-meta-row span:first-child { color: var(--text-mute); min-width: 120px; }
.highlights { list-style: none; display: grid; gap: 10px; margin: 18px 0 28px; }
.highlights li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.highlights li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-note { color: var(--text-mute); font-size: 0.86rem; margin-top: 18px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--text-mute); font-size: 0.88rem; padding-top: 28px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 5/4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.stat { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat .v { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--accent); }
.stat .l { color: var(--text-mute); font-size: 0.82rem; margin-top: 4px; }

.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature { display: flex; gap: 16px; }
.feature .ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.05rem; }
.feature p { color: var(--text-mute); font-size: 0.92rem; margin-top: 3px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 44px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-elev); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,0.45)); opacity: 0; transition: opacity .3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .gallery { grid-auto-rows: 140px; }
}

/* ---------- Reviews + About (two-column) ---------- */
.reviews-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ra-about .about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.ra-about .ap-item { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.ra-about .ap-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ra-about .ap-item:hover img { transform: scale(1.05); }
.ra-about .stats-grid { grid-template-columns: repeat(2, 1fr); }

.reviews-summary { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; }
.rs-score { text-align: center; flex-shrink: 0; }
.rs-num { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--text); }
.rs-score .stars { display: block; margin: 8px 0 4px; font-size: 1rem; }
.rs-count { color: var(--text-mute); font-size: 0.9rem; }
.rs-body { flex: 1; min-width: 200px; }
.rs-on { display: inline-flex; align-items: center; gap: 8px; font-size: 1.02rem; color: var(--text); margin-bottom: 8px; }
.rs-body p { color: var(--text-soft); margin-bottom: 16px; }
.g-mark { width: 22px; height: 22px; display: inline-block; flex-shrink: 0; }
.g-mark.sm { width: 16px; height: 16px; opacity: 0.9; }

.reviews-carousel { margin-top: 18px; }
.review { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; gap: 22px; }
.review.has-media { align-items: stretch; }
.review-media { width: 42%; max-width: 230px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.rm-main { display: block; flex: 1; min-height: 210px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.rm-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rm-main:hover img { transform: scale(1.05); }
.rm-thumbs { display: flex; gap: 8px; }
.rm-thumbs a { flex: 1; aspect-ratio: 1; border-radius: 9px; overflow: hidden; border: 1px solid var(--line); }
.rm-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.review-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stars { color: var(--accent); letter-spacing: 2px; }
.review p { color: var(--text-soft); font-size: 0.95rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--accent), #c93a00); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex-shrink: 0; }
.review .avatar img { width: 100%; height: 100%; object-fit: cover; }
.review .who b { display: block; font-size: 0.92rem; }
.review .who small { color: var(--text-mute); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Contact / CTA ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, var(--bg-card), var(--bg-elev)); padding: 56px; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 10%, var(--accent-soft), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 600px; }
.cta-band p { color: var(--text-soft); margin-top: 14px; max-width: 520px; }
.cta-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item small { color: var(--text-mute); display: block; }
.contact-item b { font-family: var(--font-display); }
.contact-item a:hover { color: var(--accent); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; height: 100%; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.15); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); font-family: var(--font); margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-soft); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-about p { color: var(--text-mute); font-size: 0.92rem; margin: 14px 0 18px; max-width: 320px; }
.social { display: flex; gap: 12px; }
.social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-soft); transition: all .2s; }
.social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-mute); font-size: 0.85rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6); transition: transform .2s; animation: wa-pulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 100; background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); display: none; flex-direction: column; padding: 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .mn-close { background: transparent; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; color: var(--text); }
.mobile-nav .mn-close svg { width: 22px; height: 22px; margin: auto; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-nav nav a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-nav .mn-cta { margin-top: auto; display: grid; gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cat-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .reviews-about-grid { grid-template-columns: 1fr; gap: 44px; }
  .ra-reviews .reviews-summary, .reviews-carousel { max-width: 680px; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; margin: 0 auto; }
  .pd-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-gallery { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { gap: 20px; padding: 24px; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .cat-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
  .product-grid { gap: 14px; }
  .card-body { padding: 14px; }
  .review { flex-direction: column; gap: 16px; }
  .review-media { width: 100%; max-width: none; flex-direction: row; }
  .rm-main { min-height: 150px; aspect-ratio: 4/3; flex: 2; }
  .rm-thumbs { flex-direction: column; width: 76px; flex: none; }
  .rm-thumbs a { aspect-ratio: 4/3; }
}
