/* ═══════════════════════════════════════════════════════════════
   TESTOSHOPPEN — shared.css (mörk butik, lava-gradient, Barlow/Manrope)
   Färger styrs av CSS-variabler → kan ändras från admin (site/config.theme)
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0b0b0c;
  --card: #161617;
  --card-hover: #1f1f21;
  --control: #1c1c1e;
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.1);
  --text: #ffffff;
  --text-2: #b9b9bf;
  --muted: #a4a4ab;
  --muted-2: #8e8e95;
  --lava-1: #ff3d00;
  --lava-2: #ff7a00;
  --lava-3: #ffb300;
  --lava: linear-gradient(95deg, var(--lava-1) 0%, var(--lava-2) 55%, var(--lava-3) 100%);
  --lava-diag: linear-gradient(135deg, var(--lava-1), var(--lava-3));
  --glow: rgba(255,90,0,0.35);
  --ok: #3ddc84;
  --err: #ff4d4d;
  --r-pill: 999px;
  --r-card: 20px;
  --r-sm: 14px;
  --r-hero: 32px;
  --font-display: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --pad-x: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }

.display { font-family: var(--font-display); letter-spacing: -0.02em; }
.lava-text { background: var(--lava); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lava-2); }
.hidden { display: none !important; }

.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ── Knappar ─────────────────────────────────────────────── */
.btn { height: 52px; padding: 0 28px; border-radius: var(--r-pill); font-weight: 800; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; transition: transform .2s ease, filter .2s ease; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-lava { background: var(--lava); color: var(--bg); box-shadow: 0 12px 40px var(--glow); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--line-strong); font-weight: 700; }
.btn-dark { background: var(--bg); color: var(--text); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 14px; }

/* ── Chips ───────────────────────────────────────────────── */
.chips { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { height: 40px; padding: 0 18px; border-radius: var(--r-pill); background: var(--control); color: #e8e8ea;
  font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; white-space: nowrap; border: 1px solid var(--line); flex-shrink: 0; }
.chip.on { background: var(--lava); color: var(--bg); border-color: transparent; font-weight: 700; }

/* ── Kort ────────────────────────────────────────────────── */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); transition: transform .25s ease, background .25s ease; }
.card.hover:hover { background: var(--card-hover); transform: translateY(-4px); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; height: 84px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(11,11,12,0.7); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 26px; font-weight: 900; letter-spacing: 0.02em; }
.brand svg { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 15px; font-weight: 600; color: #d6d6da; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.search { display: flex; align-items: center; gap: 10px; height: 44px; width: 260px; padding: 0 16px; border-radius: var(--r-pill);
  background: var(--control); color: var(--muted-2); font-size: 14px; border: 1px solid var(--line); }
.search input { background: none; border: 0; color: var(--text); font-family: inherit; font-size: 14px; width: 100%; outline: none; }
.search input::placeholder { color: var(--muted-2); }
.icon-btn { position: relative; width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--control); display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--line); }
.badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: var(--r-pill); background: var(--lava-diag);
  color: var(--bg); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero-wrap { position: relative; overflow: hidden; }
.glow { position: absolute; top: -220px; right: -160px; width: 820px; height: 820px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, var(--glow) 0%, rgba(255,61,0,0.12) 35%, rgba(11,11,12,0) 70%); filter: blur(20px); }
.hero { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; padding-top: 96px; padding-bottom: 72px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero h1 { font-size: clamp(56px, 6.6vw, 96px); line-height: 0.94; font-weight: 900; }
.hero p { max-width: 520px; font-size: 20px; line-height: 1.5; color: var(--text-2); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.stats { display: flex; gap: 28px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat b { font-family: var(--font-display); font-size: 28px; font-weight: 800; }
.stat span { font-size: 13px; color: var(--muted); }
.stat-sep { width: 1px; height: 36px; background: var(--line-strong); }
.hero-visual { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; }
.hero-orb { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(30px);
  background: radial-gradient(circle, rgba(255,122,0,0.45) 0%, rgba(255,61,0,0.15) 40%, rgba(11,11,12,0) 70%); }
.hero-card { position: relative; width: 420px; height: 520px; border-radius: var(--r-hero); padding: 28px; transform: rotate(-4deg);
  background: linear-gradient(160deg, #1d1d20 0%, #101011 100%); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; justify-content: space-between; transition: transform .4s ease; }
.hero-card:hover { transform: rotate(-2deg) translateY(-6px); }

/* ── USP ─────────────────────────────────────────────────── */
.usps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-bottom: 72px; }
.usp { display: flex; align-items: center; gap: 16px; padding: 20px 22px; }
.usp-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,122,0,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp b { font-weight: 800; font-size: 15px; display: block; }
.usp span { font-size: 13px; color: var(--muted); }

/* ── Sektioner ───────────────────────────────────────────── */
.section { padding-bottom: 88px; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 20px; }
.section-head h2 { font-size: 40px; }
.section-head a { font-size: 14px; font-weight: 700; color: var(--muted); }

/* ── Produktkort ─────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product { display: flex; flex-direction: column; gap: 14px; padding: 16px; }
.jar { width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 100%, rgba(255,90,0,0.22) 0%, rgba(255,90,0,0) 60%), #1b1b1d; }
.jar img { width: 100%; height: 100%; object-fit: contain; }
.product-row { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.product-name { font-weight: 800; font-size: 16px; }
.product-sub { font-size: 13px; color: var(--muted); }
.product-price { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-top: 4px; }
.add { width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--lava-diag); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,90,0,0.4); flex-shrink: 0; transition: transform .15s ease; }
.add:hover { transform: scale(1.08); }
.tag { height: 32px; padding: 0 14px; border-radius: var(--r-pill); background: var(--lava); color: var(--bg); font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; }

/* ── Banner (kalkylator) ─────────────────────────────────── */
.banner { position: relative; overflow: hidden; border-radius: var(--r-hero); background: linear-gradient(110deg, var(--lava-1) 0%, var(--lava-2) 50%, var(--lava-3) 100%);
  padding: 56px 64px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; color: var(--bg); }
.banner::before { content: ''; position: absolute; right: -80px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,0.14); filter: blur(10px); }
.banner > * { position: relative; }
.banner .kicker { color: rgba(11,11,12,0.7); }
.banner h3 { font-size: clamp(36px, 4vw, 56px); line-height: 0.98; font-weight: 900; }
.banner p { font-size: 17px; color: rgba(11,11,12,0.8); font-weight: 600; max-width: 460px; }
.banner-rows { display: flex; flex-direction: column; gap: 12px; }
.banner-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-radius: 18px; background: rgba(11,11,12,0.85); color: var(--text); }
.banner-row b { font-family: var(--font-display); font-size: 22px; font-weight: 800; }

/* ── Guider ──────────────────────────────────────────────── */
.guide { display: flex; flex-direction: column; gap: 14px; padding: 24px; min-height: 200px; justify-content: space-between; }
.guide h3 { font-size: 26px; line-height: 1.05; }
.guide span { font-size: 13px; color: var(--muted); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; padding-top: 56px; padding-bottom: 64px; border-top: 1px solid var(--line); }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #c9c9ce; }
.footer-col b { font-weight: 800; color: var(--text); }
.footer-col a:hover { color: var(--text); }

/* ── Toast ───────────────────────────────────────────────── */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); opacity: 0; pointer-events: none; z-index: 100;
  padding: 14px 22px; border-radius: var(--r-pill); background: var(--control); border: 1px solid var(--line-strong); font-weight: 700; font-size: 14px; transition: all .25s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Mobil ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; }
  .nav-links { display: none; }
  .search { width: 200px; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { height: 460px; }
  .hero-card { width: 340px; height: 420px; }
  .usps, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .banner { grid-template-columns: 1fr; padding: 36px 32px; }
  .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .nav { height: 72px; }
  .search { display: none; }
  .hero h1 { font-size: 56px; }
  .hero p { font-size: 15px; }
  .hero-visual { display: none; }
  .btn { height: 48px; padding: 0 22px; font-size: 15px; }
  .usps { gap: 10px; }
  .usp { padding: 14px; gap: 12px; }
  .usp b { font-size: 13px; } .usp span { font-size: 12px; }
  .section-head h2 { font-size: 28px; }
  .grid-4 { gap: 12px; }
  .product { padding: 12px; gap: 10px; }
  .product-name { font-size: 14px; } .product-price { font-size: 18px; }
  .add { width: 40px; height: 40px; }
  .banner { padding: 24px; border-radius: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 24px; }
}

/* ── V0.2: katalog-tillägg ───────────────────────────────── */
.jar { position: relative; }
.jar-tag { position: absolute; top: 10px; left: 10px; }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; margin-top: 6px; color: var(--muted); }
.stock i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock.ok { color: var(--ok); } .stock.warn { color: var(--lava-3); } .stock.err { color: var(--err); }
.add:disabled { opacity: 0.35; cursor: default; box-shadow: none; }
.crumbs { display: flex; gap: 8px; padding-top: 24px; font-size: 13px; color: var(--muted-2); font-weight: 600; flex-wrap: wrap; }
.crumbs a:hover { color: var(--text); } .crumbs .cur { color: var(--text); }
.page-title { font-size: clamp(36px, 4.5vw, 60px); line-height: 0.96; font-weight: 900; margin: 20px 0 8px; }
.filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 24px 0 28px; }
.filters select { height: 40px; padding: 0 14px; border-radius: var(--r-pill); background: var(--control); color: var(--text); border: 1px solid var(--line); font-family: inherit; font-weight: 600; font-size: 14px; }
.seo-text { max-width: 720px; color: var(--text-2); line-height: 1.6; font-size: 15px; margin-top: 40px; }

/* Produktsida */
.pdp { display: grid; grid-template-columns: 640px minmax(0, 1fr); gap: 64px; padding-top: 32px; padding-bottom: 72px; align-items: start; }
.gallery-main { position: relative; height: 640px; border-radius: 28px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(100% 80% at 50% 100%, var(--glow) 0%, rgba(255,90,0,0) 60%), #151517; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main .tag { position: absolute; top: 20px; left: 20px; }
.thumbs { display: flex; gap: 12px; margin-top: 16px; }
.thumb { width: 88px; height: 88px; border-radius: 14px; background: #1b1b1d; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer; }
.thumb.on { border-color: var(--lava-2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { display: flex; flex-direction: column; gap: 26px; }
.pdp-info h1 { font-size: clamp(40px, 4.2vw, 60px); line-height: 0.96; font-weight: 900; }
.rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); font-weight: 600; }
.rating svg { width: 16px; height: 16px; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { height: 44px; padding: 0 20px; border-radius: var(--r-pill); background: var(--control); color: #e8e8ea; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; border: 1px solid var(--line-strong); cursor: pointer; }
.pill.on { border-color: var(--lava-2); background: rgba(255,122,0,0.12); color: var(--lava-3); }
.pill.out { opacity: 0.4; text-decoration: line-through; }
.price-row { display: flex; align-items: end; gap: 16px; flex-wrap: wrap; }
.price-row b { font-family: var(--font-display); font-size: 48px; font-weight: 900; line-height: 1; }
.buy-row { display: flex; gap: 12px; align-items: center; }
.qty { display: flex; align-items: center; height: 56px; border-radius: var(--r-pill); background: var(--control); border: 1px solid var(--line-strong); }
.qty button { width: 52px; height: 100%; font-size: 22px; font-weight: 700; }
.qty span { width: 32px; text-align: center; font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.info-cards { display: flex; gap: 10px; flex-wrap: wrap; }
.info-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; }
.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line-strong); overflow-x: auto; }
.tab { padding: 14px 0; font-size: 15px; font-weight: 700; color: var(--muted-2); border-bottom: 2px solid transparent; white-space: nowrap; }
.tab.on { color: var(--text); border-bottom-color: var(--lava-2); }
.tab-panel { padding-top: 4px; font-size: 15px; line-height: 1.6; color: var(--text-2); }
.trow { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--text); }
.trow:last-child { border-bottom: none; }
.diet-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.diet-tags span { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(61,220,132,0.12); color: var(--ok); }
.related { display: flex; align-items: center; gap: 14px; padding: 14px; }
.related .mini { width: 64px; height: 64px; border-radius: 12px; background: #1b1b1d; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.related .mini img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1100px) { .pdp { grid-template-columns: 1fr; gap: 32px; } .gallery-main { height: 460px; } }
@media (max-width: 640px) { .gallery-main { height: 340px; border-radius: 20px; } .price-row b { font-size: 36px; } .buy-row { flex-wrap: wrap; } .buy-row .btn { width: 100%; } }

/* ── V0.3: kassa + order ─────────────────────────────────── */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 40px; align-items: start; margin-top: 28px; }
.co-form { display: flex; flex-direction: column; gap: 28px; }
.co-block h2 { font-size: 22px; margin-bottom: 14px; }
.co-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fld { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }
.fld input { height: 52px; padding: 0 16px; border-radius: 14px; background: var(--control); border: 1px solid var(--line-strong); color: var(--text); font-family: inherit; font-size: 15px; outline: none; transition: border .15s; }
.fld input:focus { border-color: var(--lava-2); box-shadow: 0 0 0 3px rgba(255,122,0,0.18); }
.ship-opts { display: flex; flex-direction: column; gap: 10px; }
.ship-opt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; background: var(--control); border: 1px solid var(--line-strong); cursor: pointer; font-weight: 700; }
.ship-opt.on { border-color: var(--lava-2); background: rgba(255,122,0,0.08); }
.ship-opt input { accent-color: var(--lava-2); width: 18px; height: 18px; }
.ship-opt b { margin-left: auto; font-family: var(--font-display); font-size: 18px; }
.form-err { padding: 14px 16px; border-radius: 14px; background: rgba(255,77,77,0.12); color: var(--err); font-weight: 700; font-size: 14px; }
.co-cart { padding: 24px; position: sticky; top: 100px; }
.co-cart h2 { font-size: 22px; margin-bottom: 14px; }
.free-meter { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 700; color: var(--muted); }
.free-bar { height: 6px; border-radius: 999px; background: var(--control); overflow: hidden; }
.free-bar i { display: block; height: 100%; background: var(--lava); border-radius: 999px; transition: width .3s ease; }
.cl { display: grid; grid-template-columns: minmax(0, 1fr) auto auto 28px; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.cl-name { font-weight: 700; }
.cl-x { color: var(--muted-2); font-size: 14px; }
.qty.sm { height: 36px; } .qty.sm button { width: 34px; font-size: 18px; } .qty.sm span { width: 24px; font-size: 15px; }
.co-sum { margin-top: 12px; }
.co-sum .trow.total { font-family: var(--font-display); font-size: 22px; }
.status-steps { display: flex; gap: 0; margin-top: 24px; overflow-x: auto; }
.step { flex: 1; min-width: 110px; display: flex; flex-direction: column; gap: 10px; font-size: 12px; font-weight: 700; color: var(--muted-2); }
.step i { display: block; height: 6px; border-radius: 999px; background: var(--control); }
.step.done i, .step.on i { background: var(--lava); } .step.on, .step.done { color: var(--text); }
@media (max-width: 1100px) { .checkout { grid-template-columns: 1fr; } .co-cart { position: static; } }
@media (max-width: 640px) { .co-grid { grid-template-columns: 1fr; } .co-grid .span-2 { grid-column: span 1; } }
.span-2 { grid-column: span 2; }

/* ── V0.4: bitcoin ───────────────────────────────────────── */
.btc-pay { display: grid; grid-template-columns: 224px minmax(0, 1fr); gap: 28px; margin-top: 20px; align-items: start; }
.btc-qr { display: flex; flex-direction: column; align-items: center; }
.btc-qr #qr { padding: 12px; background: #fff; border-radius: 16px; }
.btc-qr #qr img, .btc-qr #qr canvas { display: block; }
.btc-info { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.btc-amount { display: flex; flex-direction: column; gap: 4px; }
.btc-amount b { font-family: var(--font-display); font-size: 34px; font-weight: 900; line-height: 1; }
.btc-addr { display: flex; flex-direction: column; gap: 6px; }
.btc-addr code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; word-break: break-all; padding: 12px 14px; border-radius: 12px; background: var(--control); border: 1px solid var(--line-strong); }
.btc-addr .btn { width: fit-content; }
.btc-timer { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--lava-3); }
.btc-timer i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (max-width: 640px) { .btc-pay { grid-template-columns: 1fr; } .btc-qr { align-items: center; } }

/* ── V0.7: artiklar/sidor ───────────────────────────────── */
.article-wrap { max-width: 860px; }
.prose { font-size: 17px; line-height: 1.7; color: var(--text-2); }
.prose h2 { font-size: 30px; margin: 36px 0 12px; color: var(--text); }
.prose h3 { font-size: 22px; margin: 28px 0 10px; color: var(--text); }
.prose h4 { font-size: 18px; margin: 22px 0 8px; color: var(--text); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--lava-3); font-weight: 700; }
.prose b { color: var(--text); }
.prose code { font-family: ui-monospace, Menlo, monospace; background: var(--control); padding: 2px 6px; border-radius: 6px; font-size: 14px; }
.prose blockquote { margin: 0 0 16px; padding: 14px 18px; border-left: 3px solid var(--lava-2); background: var(--card); border-radius: 0 12px 12px 0; }
.ingr-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ingr { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; }
.ingr b { font-family: var(--font-display); font-size: 22px; }
.ingr span { font-size: 13px; }
@media (max-width: 900px) { .ingr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ingr-grid { grid-template-columns: 1fr; } .prose { font-size: 16px; } }

/* ── V0.8: kalkylator ───────────────────────────────────── */
.calc { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 40px; align-items: start; margin-top: 20px; }
.calc-form { padding: 28px; position: sticky; top: 100px; }
.calc-form .fld input { font-size: 22px; height: 60px; font-family: var(--font-display); font-weight: 800; }
.calc-rows { display: flex; flex-direction: column; gap: 10px; }
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; }
@media (max-width: 1100px) { .calc { grid-template-columns: 1fr; } .calc-form { position: static; } }
@media (max-width: 640px) { .calc-row { flex-direction: column; align-items: flex-start; } }

/* ── V0.9: recensioner, bevaka, rabatt ──────────────────── */
.review { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.review:last-of-type { border-bottom: none; }
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 14px; }
.review-stars { color: var(--lava-3); letter-spacing: 2px; }
.review p { margin-top: 6px; color: var(--text-2); }
.rv-form { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.rv-form input, .rv-form textarea { height: 46px; padding: 10px 14px; border-radius: 12px; background: var(--control); border: 1px solid var(--line-strong); color: var(--text); font-family: inherit; font-size: 14px; }
.rv-form textarea { height: 90px; resize: vertical; }
.rv-form .btn { width: fit-content; }
.stars { display: flex; gap: 4px; }
.stars button { font-size: 28px; color: var(--muted-2); line-height: 1; }
.stars button.on { color: var(--lava-3); }
.watch { display: flex; flex-direction: column; gap: 12px; padding: 16px 18px; border-color: var(--lava-2); }
.watch input { flex: 1; height: 44px; padding: 0 14px; border-radius: 12px; background: var(--control); border: 1px solid var(--line-strong); color: var(--text); font-family: inherit; font-size: 14px; }
