/* ============================================================
   FORGED PERFORMANCE PARTS — theme
   Dark forged-carbon, brushed-silver accent, mobile-first
   ============================================================ */
:root {
  --bg: #0d0e12;
  --bg-2: #121419;
  --panel: #161821;
  --panel-2: #1c1f2a;
  --line: #2b2e3a;
  --text: #f2f2f5;
  --muted: #a3a3ad;
  --accent: #c7ccd6;
  --accent-2: #e6eaf1;
  --ember: linear-gradient(135deg, #f5f7fa 0%, #c6ccd6 50%, #9097a3 100%);
  --led: #ff2d2d;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0,0,0,.55);
  --header-h: 88px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; letter-spacing: .5px; line-height: 1.12; text-transform: uppercase; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* flat premium dark panel (subtle sheen, no busy texture) */
.carbon {
  background-color: #0b0c10;
  background-image:
    radial-gradient(1100px 520px at 50% -12%, rgba(255,255,255,.04), transparent 70%),
    linear-gradient(180deg, #101218 0%, #0a0b0f 100%);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid #e3e4e8;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  display: flex; align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* Brand logo: sits on a white panel so the artwork reads cleanly on the dark theme */
.logo-link { display: inline-flex; align-items: center; }
.logo-link img { height: 62px; width: auto; display: block; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: #2a2d35; font-weight: 600; font-size: 1.02rem; transition: color .2s; }
.nav a:hover { color: #0a0b0f; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--panel-2); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  color: var(--text); cursor: pointer; transition: border-color .2s;
}
.cart-btn:hover { border-color: var(--accent); }
.cart-count {
  background: var(--ember); color: #15171c; font-size: .75rem; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}
.menu-toggle { display: none; background: none; border: 0; color: #15171c; font-size: 1.7rem; cursor: pointer; line-height: 1; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(199,204,214,.12), transparent 65%),
    radial-gradient(700px 380px at 10% 90%, rgba(255,45,45,.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-2); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; font-size: .8rem; margin-bottom: 18px;
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--ember); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
.hero h1 .ember-text { background: var(--ember); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: var(--muted); font-size: 1.12rem; margin: 20px 0 30px; max-width: 34rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  border-radius: 20px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-chip {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(11,11,14,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 16px; font-size: .85rem; font-weight: 600;
}
.hero-chip strong { color: var(--accent-2); }

/* trust bar */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-2); }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 18px 10px; text-align: center; font-size: .86rem; color: var(--muted); font-weight: 600; }
.trust-item strong { display: block; color: var(--text); font-size: .95rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1rem; letter-spacing: .3px;
  padding: 14px 28px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform .15s, box-shadow .2s, border-color .2s;
  font-family: inherit;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ember); color: #15171c; box-shadow: 0 6px 24px rgba(140,147,160,.32); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(150,158,172,.45); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section-head { margin-bottom: 40px; }
.section-head .kicker { color: var(--accent); font-weight: 800; letter-spacing: 3px; font-size: .78rem; text-transform: uppercase; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 6px; }
.section-head p { color: var(--muted); max-width: 44rem; margin-top: 10px; }

/* ---------- shop tools (search + make filters) ---------- */
.shop-tools { margin-bottom: 26px; }
.shop-search {
  width: 100%; padding: 14px 18px; margin-bottom: 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  color: var(--text); font-size: 1rem; font-family: inherit;
}
.shop-search:focus { outline: none; border-color: var(--accent); }
.shop-search::placeholder { color: var(--muted); }
.make-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.make-chip {
  background: var(--panel-2); border: 1px solid var(--line); color: var(--muted);
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .85rem;
  cursor: pointer; font-family: inherit; transition: border-color .15s, color .15s, background .15s;
}
.make-chip span { opacity: .6; font-size: .78rem; margin-left: 2px; }
.make-chip:hover { color: var(--text); border-color: var(--accent); }
.make-chip.active { background: var(--ember); color: #15171c; border-color: transparent; }
.make-chip.active span { opacity: .8; }

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: #3d3d49; box-shadow: var(--shadow); }
.card-img { position: relative; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-img img { transform: scale(1.045); }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ember); color: #15171c; font-size: .72rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
}
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-vehicle { color: var(--accent-2); font-size: .76rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.card-title { font-size: 1.3rem; font-weight: 700; }
.card-short { color: var(--muted); font-size: .89rem; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.price { font-size: 1.45rem; font-weight: 800; font-family: "Barlow Condensed", sans-serif; }
.price-was { color: var(--muted); text-decoration: line-through; font-size: .95rem; }
.price-save { color: #51d97b; font-size: .8rem; font-weight: 700; }

/* ---------- LED feature section ---------- */
.led-section { background: #0a0a0d; border-block: 1px solid var(--line); position: relative; overflow: hidden; }
.led-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(255,45,45,.13), transparent 70%);
}
.led-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.led-strip { display: flex; gap: 7px; margin-bottom: 22px; }
.led-dot { width: 14px; height: 14px; border-radius: 50%; background: #2a2a33; }
.led-dot.on { background: var(--led); box-shadow: 0 0 12px var(--led), 0 0 30px rgba(255,45,45,.6); animation: pulse 1.6s infinite alternate; }
.led-dot.on:nth-child(2) { animation-delay: .2s; }
.led-dot.on:nth-child(3) { animation-delay: .4s; }
@keyframes pulse { from { opacity: .65; } to { opacity: 1; } }
.led-grid img { border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ---------- steps / why us ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ember);
  color: #15171c; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  font-family: "Barlow Condensed", sans-serif;
}
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- info / shipping ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-card h3 { font-size: 1.35rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.info-card p, .info-card li { color: var(--muted); font-size: .95rem; }
.info-card ul { list-style: none; margin-top: 8px; }
.info-card li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed var(--line); }
.info-card li:last-child { border-bottom: 0; }
.info-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* FAQ */
details.faq {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 22px; margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { color: var(--muted); padding-bottom: 18px; font-size: .94rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #08080b; padding: 54px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--text); }
.site-footer p, .site-footer a { color: var(--muted); font-size: .9rem; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--accent-2); }
.footer-logo { height: 60px; width: auto; box-sizing: content-box; background: #fff; padding: 10px 16px; border-radius: 10px; display: inline-block; margin-bottom: 16px; }
.fineprint { border-top: 1px solid var(--line); padding-top: 22px; color: #6b6b75; font-size: .78rem; }

/* ---------- product page ---------- */
.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; padding: 44px 0 70px; }
.gallery-main {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 1/1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); background: #fff; cursor: pointer; padding: 0;
}
.gallery-thumbs button.active { border-color: var(--accent); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.image-note { color: var(--muted); font-size: .8rem; margin-top: 10px; font-style: italic; }

.pp-vehicle { color: var(--accent-2); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-size: .8rem; }
.pp-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 6px 0 12px; }
.pp-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.pp-price { font-size: 2.2rem; font-weight: 800; font-family: "Barlow Condensed", sans-serif; }
.pp-was { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.pp-save { background: rgba(81,217,123,.12); color: #51d97b; font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: 999px; }
.pp-lead { color: var(--muted); font-size: .85rem; margin-bottom: 22px; }
.pp-desc { color: var(--muted); margin-bottom: 24px; }

.opt-group { margin-bottom: 20px; }
.opt-group label.opt-name { display: block; font-weight: 700; margin-bottom: 8px; font-size: .92rem; }
.opt-group label.opt-name span { color: var(--accent-2); font-weight: 600; }
.opt-select {
  width: 100%; background: var(--panel-2); color: var(--text);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font-size: .95rem; font-family: inherit; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff6b1a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.opt-select:focus { outline: none; border-color: var(--accent); }

.addon {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(255,45,45,.07), rgba(199,204,214,.06));
  border: 1.5px solid rgba(199,204,214,.30); border-radius: 12px;
  padding: 16px; margin-bottom: 22px; cursor: pointer;
}
.addon input { width: 20px; height: 20px; accent-color: var(--accent); margin-top: 3px; cursor: pointer; }
.addon .addon-name { font-weight: 800; }
.addon .addon-price { color: var(--accent-2); font-weight: 800; }
.addon p { color: var(--muted); font-size: .85rem; }

.buy-buttons { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.feature-list { list-style: none; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.feature-list li { padding: 6px 0 6px 28px; position: relative; color: var(--muted); font-size: .93rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 800; }
.pp-disclaimer { margin-top: 24px; padding: 14px 16px; background: var(--panel); border-left: 3px solid var(--accent); border-radius: 8px; color: var(--muted); font-size: .8rem; }

/* breadcrumb */
.crumbs { padding: 18px 0 0; color: var(--muted); font-size: .85rem; }
.crumbs a:hover { color: var(--accent-2); }

/* ---------- cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; padding: 44px 0 70px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; margin-bottom: 14px; align-items: center;
}
.cart-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; background: #fff; }
.cart-item .ci-name { font-weight: 700; }
.cart-item .ci-spec { color: var(--muted); font-size: .8rem; white-space: pre-line; }
.ci-right { text-align: right; }
.ci-price { font-weight: 800; font-size: 1.1rem; }
.ci-remove { background: none; border: 0; color: #ff5b5b; cursor: pointer; font-size: .8rem; margin-top: 8px; font-family: inherit; }
.qty-row { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty-row button {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--panel-2); color: var(--text); cursor: pointer; font-size: 1rem;
}
.summary-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--muted); font-size: .95rem; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; color: var(--text); font-weight: 800; font-size: 1.25rem; }
.pay-note { color: var(--muted); font-size: .8rem; margin-top: 14px; line-height: 1.5; }
.secure-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--muted); font-size: .8rem; }
.empty-cart { text-align: center; padding: 70px 0; }
.empty-cart p { color: var(--muted); margin: 12px 0 26px; }

/* toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--panel-2); border: 1px solid var(--accent); color: var(--text);
  padding: 14px 26px; border-radius: 12px; font-weight: 700; z-index: 200;
  transition: transform .3s; box-shadow: var(--shadow); max-width: 92vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* modal */
.modal-back {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px;
}
.modal-back.show { display: flex; }
.modal {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  max-width: 520px; width: 100%; padding: 30px;
}
.modal h3 { font-size: 1.5rem; margin-bottom: 12px; }
.modal p { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.modal .spec-box {
  background: var(--bg-2); border: 1px dashed var(--line); border-radius: 10px;
  padding: 14px; font-size: .82rem; color: var(--muted); white-space: pre-line;
  max-height: 180px; overflow: auto; margin-bottom: 18px;
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero .container, .led-grid, .product-layout, .cart-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 44px 0 56px; }
  .section { padding: 56px 0; }
  .summary-card { position: static; }
  .nav {
    position: fixed; top: var(--header-h); right: 0; height: 100vh;
    background: var(--bg-2); border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(0,0,0,.55);
    flex-direction: column; align-items: flex-start; gap: 0;
    width: min(300px, 80vw); padding: 18px 24px; transform: translateX(100%);
    transition: transform .25s; z-index: 99; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--line); color: var(--text); }
  .nav a:hover { color: var(--accent-2); }
  .menu-toggle { display: block; }
  .hero-img-wrap { order: -1; }
}
@media (max-width: 480px) {
  .cart-item { grid-template-columns: 72px 1fr; }
  .ci-right { grid-column: 1 / -1; text-align: left; display: flex; justify-content: space-between; align-items: center; }
  .logo-link img { height: 46px; }
}

/* ============================================================
   ENHANCEMENTS — announce bar, menu polish, LED badge, etc.
   ============================================================ */

/* top announcement bar */
.announce-bar { background: #08090c; border-bottom: 1px solid var(--line); }
.announce-bar .container {
  padding: 9px 0; text-align: center; color: var(--muted);
  font-size: .8rem; font-weight: 600; letter-spacing: .3px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.announce-bar strong { color: var(--accent-2); font-weight: 800; }
.announce-bar .sep { opacity: .4; }
@media (max-width: 600px) { .announce-bar .sep { display: none; } .announce-bar .container { gap: 4px 14px; font-size: .72rem; } }

/* menu polish — animated underline + bolder cart */
.nav a { position: relative; }
.nav > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
  background: #15171c; border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav > a:hover::after { transform: scaleX(1); }
.cart-btn { box-shadow: 0 0 0 0 rgba(255,107,26,.0); }
.cart-btn:hover { background: var(--panel); }

/* LED badge — red glow to set the LED models apart */
.badge.badge-led {
  background: var(--led); color: #fff;
  box-shadow: 0 0 16px rgba(255,45,45,.75);
  display: inline-flex; align-items: center; gap: 5px;
}
.badge.badge-led::before { content: "●"; font-size: .6rem; animation: pulse 1.4s infinite alternate; }

/* option helper note (e.g. leather colours) */
.opt-note { color: var(--muted); font-size: .78rem; margin-top: 7px; font-style: italic; opacity: .9; }

/* version cross-link (standard <-> LED) */
.ver-link {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 20px; padding: 12px 15px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--panel-2);
  font-weight: 700; font-size: .86rem; transition: border-color .2s, transform .15s;
}
.ver-link:hover { border-color: var(--accent); transform: translateY(-1px); }
.ver-link.is-led { border-color: rgba(255,45,45,.55); }
.ver-link .arr { margin-left: auto; color: var(--accent); font-weight: 800; }
.ver-link .vl-tag { color: var(--accent-2); }

/* free-shipping line on product page */
.pp-ship { display: flex; align-items: center; gap: 8px; color: #51d97b; font-weight: 700; font-size: .85rem; margin: 0 0 4px; }
