/* ============================================================
   VOLTRIDE — Electric Scooters & eBikes
   Theme: "The Woobles" style — cream canvas, deep-teal ink,
   candy pastels, chunky rounded type, pill buttons, dot confetti.
   (structure/selectors preserved; skin fully replaced)
   ============================================================ */

:root {
  --bg: #fbf7ed;            /* cream canvas */
  --bg-2: #f3ecda;          /* deeper cream for alt sections */
  --card: #ffffff;
  --line: #e9dfc6;          /* warm hairline */
  --line-strong: #d9cca8;   /* warm strong border */
  --ink: #004542;           /* deep teal — primary ink */
  --ink-2: #3a3a3a;         /* secondary ink */
  --muted: #7d7560;         /* warm gray */
  --muted-2: #a89f87;       /* faint warm gray */
  --red: #ff2451;           /* punchy coral-red (badges/discounts) */
  --red-dark: #e01e46;
  --red-soft: #ffe3ea;
  --yellow: #ffd748;        /* signature woobles yellow — primary CTA */
  --yellow-dark: #ffc93c;
  --blue: #0ea5c7;          /* candy teal-blue */
  --blue-dark: #0b8aa8;
  --pink: #ef5ba1;
  --orange: #ff933e;
  --purple: #8861ac;
  --teal: #2dc1bd;
  --green: #1f873d;
  --deep: #04312e;          /* deep teal-black for dark sections */
  --deep-2: #063f3b;
  --gold-star: #ffb400;
  --display: "Lilita One", "Poppins", "Baloo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --shadow: 0 18px 44px rgba(4, 49, 46, .10);
  --shadow-lg: 0 30px 70px rgba(4, 49, 46, .16);
  --maxw: 1560px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); }

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

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: .01em; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.dark { color: #7fe0f5; }

.section-title { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 10px; }
.section-sub { color: var(--muted); max-width: 620px; margin-bottom: 40px; font-size: 15.5px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .08);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0, 0, 0, .14); }
.btn:active { transform: translateY(0); box-shadow: 0 3px 0 rgba(0, 0, 0, .10); }
.btn-red { background: var(--yellow); color: var(--ink); border-color: #e8b92a; }
.btn-red:hover { background: var(--yellow-dark); }
.btn-dark { background: var(--blue); color: #fff; border-color: var(--blue-dark); }
.btn-dark:hover { background: var(--blue-dark); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); box-shadow: none; }
.btn-ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn-sm { padding: 10px 22px; font-size: 12.5px; }

/* ---------------- Header ---------------- */
.topbar {
  background: var(--deep);
  color: #fdf3d8;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .04em;
  position: relative;
}
.topbar b { color: var(--yellow); }

.topbar-contact {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0;
}
.topbar-contact a {
  color: #fdf3d8;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topbar-contact a:hover { color: var(--yellow); }
.tc-sep { color: rgba(253, 243, 216, .35); }
@media (max-width: 860px) {
  .topbar { padding: 8px 12px; }
  .topbar-contact {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 6px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .topbar-contact a { font-size: 11.5px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 246, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}
.logo .bolt {
  display: inline-flex;
  width: 30px; height: 30px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .10);
}

.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .2s;
  position: relative;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
}

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

.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  font-size: 19px;
  line-height: 1;
  padding: 6px;
}
.icon-btn:hover { color: var(--blue); }

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(.6);
  transition: all .25s;
}
.cart-count.show { opacity: 1; transform: scale(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* ---------------- Deals banner ---------------- */
.deals-banner {
  background:
    radial-gradient(circle, rgba(255, 255, 255, .55) 1.5px, transparent 1.5px),
    linear-gradient(90deg, #ffe9a8, #ffd748 45%, #ffc93c);
  background-size: 22px 22px, auto;
  border-bottom: 1px solid #e8b92a;
}
.deals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 16px 0;
  flex-wrap: wrap;
  text-align: center;
}
.deals-inner .deal-big {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: .01em;
  color: var(--ink);
}
.deals-inner .deal-big .red { color: var(--red); }
.deals-inner .deal-sub { font-size: 13px; color: #6b5a10; font-weight: 600; }
.countdown {
  display: flex;
  gap: 6px;
  align-items: center;
}
.countdown .unit {
  background: var(--deep);
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  padding: 6px 9px;
  border-radius: 10px;
  min-width: 34px;
  text-align: center;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    radial-gradient(900px 500px at 82% 18%, rgba(255, 215, 72, .28), transparent 60%),
    radial-gradient(700px 420px at 8% 88%, rgba(46, 193, 189, .16), transparent 60%),
    linear-gradient(180deg, #fffdf4, var(--bg));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #ffd748 2px, transparent 2.4px),
    radial-gradient(circle, #ef5ba1 2px, transparent 2.4px),
    radial-gradient(circle, #2dc1bd 2px, transparent 2.4px),
    radial-gradient(circle, #8861ac 2px, transparent 2.4px);
  background-size: 92px 92px, 92px 92px, 92px 92px, 92px 92px;
  background-position: 12px 18px, 52px 62px, 34px 96px, 74px 130px;
  opacity: .5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #ffe9a8 70%);
  border: 3px dashed #e8b92a;
  opacity: .8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero h1 .red { color: var(--red); }

.hero p.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 44px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-stats .stat b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--ink);
}
.hero-stats .stat b .unit { font-size: 14px; color: var(--muted); font-weight: 600; }
.hero-stats .stat span { font-size: 12.5px; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .ride-wrap {
  width: min(520px, 100%);
  filter: drop-shadow(0 44px 50px rgba(4, 49, 46, .22));
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(-1.5deg); }
}

.hero-flag {
  position: absolute;
  top: 6%;
  right: 4%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transform: rotate(4deg);
  box-shadow: 0 12px 26px rgba(232, 185, 42, .45);
  z-index: 2;
  border: 2px solid #e8b92a;
}

/* ---------------- USP bar ---------------- */
.usp-bar { background: var(--deep); color: #fff; }
.usp-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 0;
}
.usp-item { display: flex; gap: 13px; align-items: center; }
.usp-item .ic { font-size: 22px; }
.usp-item b { display: block; font-size: 13.5px; font-weight: 600; }
.usp-item span { font-size: 12px; color: #9fd8c9; }

/* ---------------- Sections ---------------- */
.section { padding: 84px 0; }
.section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section.dark { background: var(--deep); color: #fff; }
.section.dark .section-sub { color: #bcd4ce; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .link-more {
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.section-head .link-more:hover { color: var(--ink); }

/* ---------------- Product cards ---------------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.prod-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  box-shadow: var(--shadow-lg);
  border-color: #e3d5ae;
}

.prod-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #fffdf4, #f6edd9);
  overflow: hidden;
}
.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.prod-card:hover .prod-media img { transform: scale(1.05); }

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(232, 185, 42, .45);
}
.prod-badge.dark { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(14, 165, 199, .4); }

.prod-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }

.prod-cat { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

.prod-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--ink);
}
.prod-card:hover .prod-name { color: var(--blue); }

.prod-specs { display: flex; gap: 5px; flex-wrap: wrap; }
.spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px 8px 4px;
  white-space: nowrap;
}
.spec-chip i {
  font-style: normal;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted-2);
  line-height: 1.2;
}
.spec-chip b { font-weight: 700; color: var(--ink); line-height: 1.25; }

.prod-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price { font-family: var(--display); font-size: 22px; font-weight: 400; letter-spacing: .01em; }
.price .was {
  font-size: 14px;
  color: var(--muted-2);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.price .save {
  display: inline-block;
  margin-left: 8px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  vertical-align: 2px;
}

.add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s;
  flex-shrink: 0;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .08);
}
.add-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------------- Press quotes ---------------- */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.press-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.press-card .quote-mark {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  line-height: .6;
  color: var(--pink);
  margin-bottom: 16px;
}
.press-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; font-style: italic; }
.press-who b { display: block; font-size: 13.5px; }
.press-who span { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.press-card .stars { color: var(--gold-star); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* ---------------- Support blocks ---------------- */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.support-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.support-card:hover { transform: translateY(-5px) rotate(.3deg); box-shadow: var(--shadow); }
.support-card .ic {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: #e7f6f2;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.support-card h3 { font-size: 22px; margin-bottom: 10px; }
.support-card p { color: var(--muted); font-size: 14px; margin-bottom: 18px; flex: 1; }
.support-card .link-more { font-size: 13px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #063f3b, #0b8aa8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.blog-body { padding: 20px 22px 24px; }
.blog-date { font-size: 11.5px; color: var(--muted-2); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.blog-body h3 { font-size: 20px; margin: 8px 0 10px; line-height: 1.25; }
.blog-body p { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.blog-body .read-more { font-size: 13px; color: var(--blue); font-weight: 700; }

/* ---------------- Newsletter ---------------- */
.newsletter {
  background: var(--deep);
  color: #fff;
  text-align: center;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 215, 72, .5) 2.5px, transparent 3px),
    radial-gradient(circle, rgba(239, 91, 161, .45) 2.5px, transparent 3px),
    radial-gradient(circle, rgba(45, 193, 189, .45) 2.5px, transparent 3px);
  background-size: 110px 110px, 110px 110px, 110px 110px;
  background-position: 20px 30px, 70px 80px, 120px 20px;
}
.newsletter .container { position: relative; }
.newsletter h2 { font-size: clamp(30px, 4.4vw, 42px); margin-bottom: 12px; }
.newsletter p { color: #bcd4ce; margin-bottom: 30px; }
.news-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid #1c6a63;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  outline: none;
}
.news-form input:focus { border-color: var(--yellow); }
.news-form input::placeholder { color: #8fb8b0; }
.news-ok { color: #8ff0c0; font-size: 14px; margin-top: 16px; display: none; font-weight: 600; }

/* ---------------- Footer ---------------- */
.site-footer { background: #032826; color: #fff; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: #93b8b0; font-size: 13.5px; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: #b3d1ca; font-size: 13.5px; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #15534d;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7da89f;
}
.pay-icons { display: flex; gap: 10px; font-size: 12px; color: #93b8b0; }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--deep);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all .35s;
  z-index: 100;
  pointer-events: none;
  border: 1px solid #15534d;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  padding: 70px 0 54px;
  background: linear-gradient(180deg, #fffdf4, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(38px, 5.4vw, 58px); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 640px; }
.breadcrumb { font-size: 12.5px; color: var(--muted-2); margin-bottom: 18px; letter-spacing: .04em; font-weight: 600; }
.breadcrumb a { color: var(--blue); }

/* ---------------- Collection ---------------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line-strong);
  background: var(--card);
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--yellow); border-color: #e8b92a; color: var(--ink); }

.sort-select {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line-strong);
  background: var(--card);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.collection-count { color: var(--muted-2); font-size: 13px; font-weight: 600; margin-bottom: 22px; }

/* ---------------- FAQ accordion ---------------- */
.faq-list { max-width: 820px; }
.faq-item {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  color: var(--blue);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; }
.faq-item .faq-a p { margin-bottom: 10px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }
.faq-item .faq-a b { color: var(--ink); }

/* ---------------- Product detail ---------------- */
.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: start;
}
.pd-gallery { position: sticky; top: 94px; }
.pd-main-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--line);
  background: linear-gradient(180deg, #fffdf4, #f6edd9);
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pd-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
  opacity: .7;
  transition: all .2s;
  background: #f6edd9;
}
.pd-thumb.active, .pd-thumb:hover { opacity: 1; border-color: var(--yellow); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info h1 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 10px; }
.pd-rating { display: flex; align-items: center; gap: 10px; color: var(--gold-star); font-size: 14px; margin-bottom: 16px; }
.pd-rating span { color: var(--muted-2); font-size: 13px; font-weight: 600; }

.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.pd-price-row .price { font-size: 36px; }
.pd-price-row .was { font-size: 18px; }
.pd-price-row .save { font-size: 13px; padding: 5px 12px; }
.pd-save-line { color: var(--red); font-size: 13.5px; font-weight: 700; margin-bottom: 18px; }

.pd-desc { color: var(--muted); margin-bottom: 24px; }

.pd-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.quick-spec {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.quick-spec b { display: block; font-family: var(--display); font-size: 18px; font-weight: 400; letter-spacing: .01em; }
.quick-spec span { font-size: 10.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
  font-size: 14px;
}
.pd-specs-table td {
  padding: 12px 16px;
  border: 1px solid var(--line);
}
.pd-specs-table td:first-child {
  color: var(--muted-2);
  width: 42%;
  background: var(--bg);
  font-weight: 600;
}
.pd-specs-table td b { color: var(--ink); font-weight: 600; }

.pd-buy { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.qty {
  display: flex;
  align-items: center;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--card);
}
.qty button {
  width: 46px; height: 50px;
  background: none; border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}
.qty button:hover { color: var(--blue); }
.qty input {
  width: 46px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 600;
  outline: none;
}

.pd-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: 30px;
}
.pd-trust div { text-align: center; }
.pd-trust .ic { font-size: 20px; }
.pd-trust span { display: block; font-size: 11.5px; color: var(--muted-2); margin-top: 4px; font-weight: 600; }

.pd-tabs { margin-top: 8px; }
.tab-bar { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 26px; overflow-x: auto; }
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 13px 20px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: -2px;
  transition: color .2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--yellow); }
.tab-panel { display: none; color: var(--muted); font-size: 14.5px; max-width: 780px; }
.tab-panel.active { display: block; }
.tab-panel h4 { color: var(--ink); font-size: 18px; margin-bottom: 10px; }
.tab-panel ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.tab-panel li { margin-bottom: 8px; }
.tab-panel p { margin-bottom: 12px; }

/* ---------------- Support page ---------------- */
.support-hero-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.manual-list, .guide-list { display: grid; gap: 10px; }
.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.doc-row b { font-size: 14.5px; }
.doc-row span { font-size: 12.5px; color: var(--muted-2); font-weight: 600; }
.doc-row .btn { flex-shrink: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .press-grid, .support-grid, .blog-grid, .support-hero-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-quick-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: #fffdf6;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .3s;
    z-index: 40;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual .ride-wrap { width: min(360px, 86%); }

  .usp-inner { grid-template-columns: repeat(2, 1fr); }

  .pd-layout { grid-template-columns: 1fr; gap: 36px; }
  .pd-gallery { position: static; }
}

@media (max-width: 640px) {
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .press-grid, .support-grid, .blog-grid, .support-hero-cards { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 0 50px; }
  .hero-stats { gap: 24px; }
  .pd-trust { grid-template-columns: repeat(2, 1fr); }
  .deals-inner { gap: 12px; }
}

/* ---------------- Video carousel ---------------- */
.vcar { position: relative; }

.vcar-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: #063f3b;
  box-shadow: var(--shadow-lg);
}
.vcar-stage video { width: 100%; height: 100%; object-fit: cover; }

.vcar-caption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 3;
  max-width: 72%;
}
.vcar-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.vcar-caption h3 {
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.8vw, 32px);
  margin-top: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.vcar-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(4, 49, 46, .6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcar-arrow:hover { background: var(--blue); }
.vcar-arrow.prev { left: 18px; }
.vcar-arrow.next { right: 18px; }

.vcar-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .25);
  z-index: 3;
}
.vcar-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow);
  transition: width .2s linear;
}

.vcar-mute {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(4, 49, 46, .6);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .2s;
}
.vcar-mute:hover { background: var(--blue); }

.vcar-counter {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(4, 49, 46, .6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.vcar-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.vcar-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: .72;
  transition: all .25s;
  aspect-ratio: 16 / 9;
  background: #063f3b;
}
.vcar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vcar-thumb .ttl {
  position: absolute;
  left: 10px; right: 10px; bottom: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vcar-thumb:hover { opacity: 1; border-color: var(--line-strong); }
.vcar-thumb.active { border-color: var(--yellow); opacity: 1; }

@media (max-width: 640px) {
  .vcar-thumbs { grid-template-columns: repeat(2, 1fr); }
  .vcar-caption { left: 16px; bottom: 18px; max-width: 82%; }
  .vcar-arrow.prev { left: 10px; }
  .vcar-arrow.next { right: 10px; }
}

/* ============================================================
   Video carousel — FULL-WINDOW + ALWAYS-ON-TOP
   ============================================================ */

.vcar-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  background: #063f3b;
  overflow: hidden;
}

.vcar-section .vcar { position: absolute; inset: 0; }
.vcar-section .vcar-stage {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}
.vcar-section .vcar-stage video { width: 100%; height: 100%; object-fit: cover; }

.vcar-section .vcar-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 40, 38, .66) 0%, rgba(3, 40, 38, 0) 34%, rgba(3, 40, 38, 0) 55%, rgba(3, 40, 38, .85) 100%);
}

.vcar-head {
  position: absolute;
  top: 26px;
  left: 30px;
  z-index: 5;
  max-width: 660px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.vcar-head .section-title { color: #fff; }
.vcar-head .section-sub { color: #cfe3dd; margin-bottom: 0; }

.vcar-section .vcar-caption { bottom: 132px; }

.vcar-section .vcar-thumbs {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 0;
  padding: 16px 30px 22px;
  background: linear-gradient(180deg, rgba(3,40,38,0) 0%, rgba(3,40,38,.9) 45%);
}
.vcar-section .vcar-thumb { aspect-ratio: 16 / 6; }

.vcar-section .vcar-progress { z-index: 6; }

/* ---------- pinned top bar ---------- */
.vcar-mini {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 40;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: rgba(3, 40, 38, .97);
  border-bottom: 1px solid rgba(255, 215, 72, .25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  cursor: pointer;
  overflow: hidden;
}
.vcar-mini[hidden] { display: none; }
.vcar-mini video {
  display: block;
  height: 100%;
  width: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.vcar-mini-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.vcar-mini-tag {
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vcar-mini-title {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vcar-mini-btn {
  position: static;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.vcar-mini-btn:hover { background: var(--blue); }
.vcar-mini-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .2);
  z-index: 2;
}
.vcar-mini-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow);
  transition: width .2s linear;
}

@media (max-width: 640px) {
  .vcar-section { min-height: 480px; }
  .vcar-head { top: 18px; left: 16px; }
  .vcar-head .section-title { font-size: 24px; }
  .vcar-head .section-sub { font-size: 13.5px; }
  .vcar-section .vcar-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 16px 18px;
  }
  .vcar-section .vcar-caption { bottom: 150px; }
  .vcar-mini { top: 70px; height: 56px; gap: 10px; padding: 0 10px; }
  .vcar-mini-tag { display: none; }
  .vcar-mini-title { font-size: 12px; }
  .vcar-mini-btn { width: 28px; height: 28px; }
}

/* ============================================================
   Cart drawer + checkout (admin-backed orders)
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(3, 40, 38, .6); z-index: 900; }
.cart-overlay[hidden] { display: none; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 92vw);
  background: var(--deep);
  border-left: 1px solid rgba(255, 215, 72, .2);
  z-index: 950;
  display: flex; flex-direction: column;
  box-shadow: -18px 0 50px rgba(0, 0, 0, .5);
}
.cart-drawer[hidden] { display: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255, 215, 72, .18); }
.cart-head h3 { color: #fff; margin: 0; font-size: 17px; }
.cart-close { background: none; border: none; color: #9fd8c9; font-size: 16px; cursor: pointer; }
.cart-close:hover { color: #fff; }
.cart-items { flex: 1; overflow: auto; padding: 14px 20px; }
.cart-empty { color: #9fd8c9; text-align: center; margin-top: 40px; }
.cart-done { color: #fff; text-align: center; margin-top: 40px; line-height: 1.9; }
.cart-done span { color: #9fd8c9; font-size: 13px; }
.cart-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255, 215, 72, .12); }
.cart-line-info b { display: block; color: #fff; font-size: 14px; }
.cart-line-info span { color: #9fd8c9; font-size: 12.5px; }
.cart-line-ops { display: flex; align-items: center; gap: 6px; }
.cart-line-ops button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255, 215, 72, .3); background: transparent; color: #fff; cursor: pointer; font-size: 13px; line-height: 1; }
.cart-line-ops button:hover { border-color: var(--yellow); color: var(--yellow); }
.cart-line-ops .cart-rm { border: none; color: #9fd8c9; }
.cart-line-ops span { color: #fff; min-width: 18px; text-align: center; font-size: 13px; }
.cart-foot { padding: 16px 20px 20px; border-top: 1px solid rgba(255, 215, 72, .18); }
.cart-total { display: flex; justify-content: space-between; color: #fff; font-size: 15px; margin-bottom: 12px; }
.cart-checkout { width: 100%; }
.checkout-form input, .checkout-form textarea {
  width: 100%;
  background: #0a4a44;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 13.5px;
  outline: none;
}
.checkout-form .btn { width: 100%; margin-top: 4px; }
.co-back { color: #9fd8c9; font-size: 12.5px; text-align: center; margin-top: 10px; cursor: pointer; }
.co-back:hover { color: #fff; }
body.no-scroll { overflow: hidden; }

/* brand logo image (replaces the text/emoji mark) */
.logo img { height: 40px; width: auto; border-radius: 10px; display: block; }
.footer-brand .logo img { height: 48px; border-radius: 12px; }

.site-footer .logo { color: #fff; }

/* language switch */
.lang-btn {
  font-size: 13px; font-weight: 700; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 5px 12px; text-decoration: none; transition: .15s;
  background: #fff; line-height: 1.4; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--yellow); background: var(--yellow); }
@media (max-width: 560px) { .lang-btn { display: none; } }

/* ---------------- User accounts (login / register) ---------------- */
.auth-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 5px 12px; cursor: pointer; white-space: nowrap; line-height: 1.4;
  transition: .15s;
}
.auth-btn:hover { border-color: var(--yellow); background: var(--yellow); }

.auth-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 49, 46, .45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.auth-modal[hidden] { display: none; }
.auth-box {
  background: var(--card); border-radius: var(--radius);
  max-width: 400px; width: 100%; padding: 30px 28px 24px;
  position: relative; box-shadow: var(--shadow-lg);
}
.auth-box h3 { font-family: var(--display); font-size: 27px; font-weight: 400; margin-bottom: 18px; }
.auth-box label {
  display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 13px;
}
.auth-box input {
  display: block; width: 100%; margin-top: 5px;
  padding: 10px 12px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--sans); color: var(--ink);
  background: var(--bg); box-sizing: border-box;
}
.auth-box input:focus { outline: none; border-color: var(--blue); background: #fff; }
.auth-err { color: var(--red); font-size: 12.5px; font-weight: 600; min-height: 16px; margin: 0 0 8px; }
.auth-submit {
  width: 100%; padding: 12px 14px; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-pill); cursor: pointer; border: none;
}
.auth-submit.btn-red { background: var(--yellow); color: var(--ink); }
.auth-submit.btn-red:hover { background: var(--yellow-dark); }
.auth-submit.btn-ghost { background: var(--bg-2); color: var(--ink); border: 2px solid var(--line); }
.auth-submit.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.auth-switch {
  display: block; margin: 14px auto 0; background: none; border: none;
  color: var(--blue); font-size: 13px; font-weight: 600; cursor: pointer;
}
.auth-switch:hover { text-decoration: underline; }
.auth-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 18px; cursor: pointer; color: var(--muted-2); line-height: 1;
}
.auth-close:hover { color: var(--ink); }
.auth-user-line {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--bg); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 14px;
}
.auth-user-line b { font-size: 16px; color: var(--ink); }
.auth-email { font-size: 12.5px; color: var(--muted-2); }

/* ---------------- Floating WhatsApp button ---------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37, 211, 102, .55); }
.wa-float svg { display: block; }
.wa-float-label {
  position: absolute;
  right: 62px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-float-label { opacity: 1; }
@media (max-width: 640px) {
  .wa-float { width: 48px; height: 48px; right: 14px; bottom: 14px; }
  .wa-float svg { width: 23px; height: 23px; }
}
