/* Instrumentwala v2 — "Stage" direction
   Dials: VARIANCE 6 · MOTION 5 · DENSITY 7
   Dark stage for the moments that sing (hero, finder, strum), warm paper for the catalogue. */

:root {
  /* colour */
  --ink: #17131f;          /* stage black, tinted aubergine */
  --ink-2: #221c2c;
  --ink-3: #2f2739;
  --paper: #f6f3ee;        /* warm catalogue ground */
  --paper-2: #efeae2;
  --surface: #ffffff;
  --line: #e6e0d6;
  --line-dk: rgba(255,255,255,.12);
  --text: #1d1824;
  --muted: #6a6374;
  --muted-dk: #b4abbf;
  --amp: #d63f14;          /* amp-orange — the only loud colour */
  --amp-hi: #ff6a3d;       /* amp on dark grounds */
  --amp-soft: #fde9e1;
  --brass: #f2b544;
  --save: #0f7b53;
  --save-soft: #e3f3ec;
  --wa: #1fa855;

  /* type */
  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;

  /* space (4px base) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  /* radius / elevation */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(23,19,31,.06), 0 1px 1px rgba(23,19,31,.04);
  --sh-2: 0 10px 30px -12px rgba(23,19,31,.22);
  --sh-3: 0 30px 70px -20px rgba(10,6,16,.55);

  /* motion */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-1: 160ms; --dur-2: 260ms; --dur-3: 520ms;
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 130px; }
body { margin: 0; font: 400 16px/1.55 var(--f-body); color: var(--text); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input { font: inherit; }
h1,h2,h3,h4 { font-family: var(--f-display); font-stretch: 112%; line-height: 1.08; margin: 0; letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
:focus-visible { outline: 2.5px solid var(--amp); outline-offset: 2px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--sm { width: 18px; height: 18px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: var(--r-pill);
  background: var(--amp); color: #fff; font-weight: 600; font-size: 15.5px; letter-spacing: .005em; white-space: nowrap;
  transition: transform var(--dur-1) var(--ease-out), background var(--dur-2), box-shadow var(--dur-2); box-shadow: 0 6px 18px -8px rgba(214,63,20,.7); }
.btn:hover { background: #bf3711; transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn--line { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--text); }
.btn--line:hover { background: var(--text); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--ink { background: var(--ink); box-shadow: none; }
.btn--ink:hover { background: var(--ink-3); }
.btn--white { background: #fff; color: var(--ink); box-shadow: none; }
.btn--white:hover { background: var(--brass); }
.btn--wa { background: var(--wa); box-shadow: 0 6px 18px -8px rgba(31,168,85,.7); }
.btn--wa:hover { background: #178a45; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--amp); }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- announcement ---------- */
.ann { background: var(--ink); color: var(--muted-dk); font-size: 13.5px; }
.ann__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.ann__msgs { display: flex; gap: 28px; overflow: hidden; }
.ann__msgs span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.ann__msgs .ico { width: 16px; height: 16px; color: var(--brass); }
.ann__msgs b { color: #fff; font-weight: 600; }
.ann__call a { color: #fff; font-weight: 600; }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.hdr__in { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo__mark { width: 38px; height: 38px; border-radius: 11px; background: var(--ink); display: grid; place-items: center; }
.logo__mark i { display: block; width: 3px; border-radius: 2px; background: var(--amp-hi); margin: 0 1.5px; }
.logo__mark span { display: flex; align-items: center; height: 20px; }
.logo__mark i:nth-child(1) { height: 8px; } .logo__mark i:nth-child(2) { height: 18px; background: var(--brass); }
.logo__mark i:nth-child(3) { height: 12px; } .logo__mark i:nth-child(4) { height: 6px; background: #fff; }
.logo__txt { font-family: var(--f-display); font-stretch: 118%; font-weight: 800; font-size: 21px; letter-spacing: -.03em; line-height: 1; }
.logo__txt b { color: var(--amp); font-weight: 800; }
.logo__txt small { display: block; font: 600 10px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.search { flex: 1; display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 6px 0 16px; border-radius: var(--r-pill); background: var(--paper); border: 1.5px solid transparent; transition: border-color var(--dur-2), background var(--dur-2); max-width: 620px; }
.search:focus-within { border-color: var(--ink); background: #fff; }
.search .ico { color: var(--muted); }
.search input { flex: 1; min-width: 0; border: 0; background: none; outline: none; height: 100%; font-size: 15px; }
.search button { height: 36px; padding: 0 16px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; }
.search button:hover { background: var(--amp); }

.hdr__acts { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.hbtn { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--r-md); transition: background var(--dur-1); }
.hbtn:hover { background: var(--paper); }
.hbtn__txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.hbtn__txt small { font-size: 12px; color: var(--muted); }
.hbtn__txt b { font-size: 14.5px; font-weight: 600; }
.burger { display: none; }
.badge { position: absolute; top: 2px; left: 24px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; background: var(--amp); color: #fff; font-size: 11.5px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }
.badge.is-bump { animation: bump 420ms var(--ease-spring); }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }

.cnav { border-top: 1px solid var(--line); }
.cnav__in { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.cnav__in::-webkit-scrollbar { display: none; }
.cnav a { position: relative; padding: 12px 12px; font-size: 14.5px; font-weight: 500; white-space: nowrap; color: #3b3444; transition: color var(--dur-1); }
.cnav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2.5px; border-radius: 2px; background: var(--amp); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-2) var(--ease-out); }
.cnav a:hover { color: var(--text); }
.cnav a:hover::after, .cnav a.is-on::after { transform: scaleX(1); }
.cnav a.is-on { color: var(--text); font-weight: 600; }
.cnav__hot { margin-left: auto; color: var(--amp) !important; font-weight: 600 !important; }

/* ---------- section scaffolding ---------- */
.sec { padding: var(--s9) 0; }
.sec--tight { padding: var(--s8) 0; }
.sec--white { background: var(--surface); }
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: var(--s6); flex-wrap: wrap; }
.shead h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.shead p { margin-top: 10px; color: var(--muted); max-width: 58ch; }
.kick { display: inline-flex; align-items: center; gap: 8px; font: 600 12.5px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--amp); margin-bottom: 14px; }
.kick::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

/* ---------- HERO / STAGE ---------- */
.stage { position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.stage::before { /* the spotlight */ content: ""; position: absolute; z-index: -1; top: -30%; right: 4%; width: 780px; height: 1100px;
  background: radial-gradient(ellipse 45% 55% at 50% 30%, rgba(255,214,150,.22), rgba(255,160,90,.07) 55%, transparent 72%); transform: rotate(14deg); pointer-events: none; }
.stage::after { /* floorboards */ content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 0; height: 240px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 2px, transparent 2px 120px), linear-gradient(to top, #120f18, transparent); pointer-events: none; }
.stage__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; padding: 56px 20px 36px; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,.07); border: 1px solid var(--line-dk); font-size: 13.5px; color: #e9e3f0; }
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--amp-hi); box-shadow: 0 0 0 4px rgba(255,106,61,.22); animation: live 2s infinite; }
@keyframes live { 50% { box-shadow: 0 0 0 7px rgba(255,106,61,0); } }
.stage h1 { font-size: clamp(42px, 5.6vw, 80px); font-weight: 900; font-stretch: 122%; letter-spacing: -.035em; line-height: .98; margin: 22px 0 22px; }
.stage h1 span { color: var(--brass); font-style: italic; font-weight: 800; }
.stage__sub { font-size: 18px; color: #d4cddd; max-width: 52ch; }
.stage__sub b { color: #fff; font-weight: 600; }
.stage__cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.stage__facts { display: flex; gap: 32px; margin: 32px 0 0; padding: 0; list-style: none; }
.stage__facts b { display: block; font-family: var(--f-display); font-stretch: 120%; font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.stage__facts span { font-size: 13.5px; color: var(--muted-dk); }

/* spotlight card */
.spot { position: relative; justify-self: center; width: min(430px, 100%); }
.spot__card { position: relative; background: #fff; color: var(--text); border-radius: var(--r-xl); padding: 18px; box-shadow: var(--sh-3); }
.spot__label { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.spot__label i { width: 7px; height: 7px; border-radius: 50%; background: var(--amp-hi); }
.spot__media { display: block; position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg); background: #fff; overflow: hidden; }
.spot__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 22px; opacity: 0; transform: translateY(12px) scale(.97); transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out); }
.spot__media img.is-on { opacity: 1; transform: none; }
.spot__body { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 14px 6px 4px; }
.spot__body small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.spot__body h3 { font-size: 20px; font-weight: 700; margin-top: 4px; }
.spot__price { text-align: right; white-space: nowrap; }
.spot__price b { display: block; font-family: var(--f-display); font-size: 26px; font-weight: 800; }
.spot__price s { color: var(--muted); font-size: 14px; }
.spot__dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.spot__dots button { width: 26px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.22); transition: background var(--dur-2), width var(--dur-2) var(--ease-out); }
.spot__dots button.is-on { background: var(--brass); width: 40px; }
.eq { position: absolute; left: -46px; bottom: 80px; display: flex; align-items: flex-end; gap: 5px; height: 150px; }
.eq i { width: 8px; border-radius: 4px; background: linear-gradient(to top, var(--amp-hi), var(--brass)); height: 18%; transition: height 380ms var(--ease-out); opacity: .9; }
.save-sticker { position: absolute; top: -18px; right: -14px; z-index: 3; width: 96px; height: 96px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; text-align: center; transform: rotate(10deg); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); font-family: var(--f-display); }
.save-sticker small { display: block; font: 600 11px/1.1 var(--f-body); text-transform: uppercase; letter-spacing: .06em; }
.save-sticker b { display: block; font-size: 22px; font-weight: 900; line-height: 1; }

/* playable keyboard */
.keys { position: relative; padding: 8px 20px 0; }
.keys__hd { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; font-size: 14px; color: var(--muted-dk); }
.keys__hd b { color: #fff; font-weight: 600; }
.keys__hd kbd { font: 600 11.5px var(--f-body); padding: 2px 6px; border-radius: 5px; background: rgba(255,255,255,.1); border: 1px solid var(--line-dk); color: #fff; }
.keys__note { font-family: var(--f-display); font-weight: 800; color: var(--brass); min-width: 3ch; display: inline-block; }
.kb { position: relative; display: flex; height: 132px; user-select: none; -webkit-user-select: none; touch-action: none; border-radius: 14px 14px 0 0; overflow: hidden; background: #0c0a10; padding: 10px 10px 0; box-shadow: inset 0 10px 18px -8px rgba(0,0,0,.9); }
.kb__w { position: relative; flex: 1; margin: 0 1.5px; border-radius: 0 0 9px 9px; background: linear-gradient(#fbfaf7, #e9e5dd); box-shadow: inset 0 -6px 0 #d4cec3; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 12px; font: 600 11px var(--f-body); color: #9a93a3; transition: background 80ms, box-shadow 80ms, transform 80ms; transform-origin: top; }
.kb__w.is-down { background: linear-gradient(#ffe7d8, #ffd2bc); box-shadow: inset 0 -2px 0 #f0b79b; transform: scaleY(.985); color: var(--amp); }
.kb__b { position: absolute; top: 10px; z-index: 2; width: calc((100% - 20px) / 14 * .6); height: 62%; margin-left: calc((100% - 20px) / 14 * -.3); border-radius: 0 0 7px 7px; background: linear-gradient(#2d2735, #0d0b10); box-shadow: inset 0 -5px 0 #000, 0 3px 6px rgba(0,0,0,.5); transition: background 80ms; }
.kb__b.is-down { background: linear-gradient(#7a2a12, var(--amp)); box-shadow: inset 0 -2px 0 #6e220c; }

/* ---------- trust ---------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust__in { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; }
.trust__i { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-right: 1px solid var(--line); }
.trust__i:last-child { border-right: 0; }
.trust__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--paper); display: grid; place-items: center; color: var(--ink); flex: none; }
.trust__i b { display: block; font-size: 15.5px; font-weight: 600; }
.trust__i span { font-size: 13.5px; color: var(--muted); }
.trust__i--pay { background: var(--amp-soft); }
.trust__i--pay .trust__ic { background: var(--amp); color: #fff; }
.split { display: flex; height: 6px; border-radius: 3px; overflow: hidden; margin-top: 7px; max-width: 170px; }
.split i { flex: 1; background: var(--amp); } .split i + i { background: #f3b7a2; }

/* ---------- categories ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { position: relative; display: grid; grid-template-columns: 1fr 108px; align-items: center; gap: 10px; padding: 20px 16px 20px 22px; background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2), border-color var(--dur-2); }
.cat:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: transparent; }
.cat h3 { font-size: 18.5px; font-weight: 700; }
.cat div > span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); }
.cat div > span b { color: var(--text); }
.cat img { width: 108px; height: 108px; object-fit: contain; transition: transform var(--dur-3) var(--ease-out); }
.cat:hover img { transform: scale(1.07) rotate(-3deg); }
.cat__go { position: absolute; left: 22px; bottom: 16px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); transition: background var(--dur-2), color var(--dur-2); }
.cat:hover .cat__go { background: var(--amp); color: #fff; }
.cat > div { align-self: stretch; padding-bottom: 40px; }

/* ---------- tabs ---------- */
.tabs { display: flex; gap: 6px; padding: 5px; border-radius: var(--r-pill); background: var(--paper-2); overflow-x: auto; scrollbar-width: none; max-width: 100%; }
.tab { padding: 9px 16px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; color: var(--muted); white-space: nowrap; transition: background var(--dur-2), color var(--dur-2); }
.tab:hover { color: var(--text); }
.tab.is-on { background: var(--ink); color: #fff; }

/* ---------- product cards ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pcard { display: flex; flex-direction: column; background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2), opacity var(--dur-2); }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.pcard.is-hidden { display: none; }
.pcard__media { position: relative; aspect-ratio: 1 / 1; background: #fff; display: block; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; transition: transform var(--dur-3) var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.off { position: absolute; top: 12px; left: 12px; z-index: 1; padding: 5px 9px; border-radius: 8px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .01em; }
.off--hot { background: var(--amp); }
.tag { position: absolute; top: 12px; right: 12px; z-index: 1; padding: 5px 9px; border-radius: 8px; background: var(--paper); font-size: 12px; font-weight: 600; color: var(--text); }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: 14px 16px 16px; border-top: 1px solid var(--line); }
.pcard__meta { font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.pcard h3 { font-family: var(--f-body); font-stretch: 100%; font-size: 15.5px; font-weight: 600; line-height: 1.35; letter-spacing: 0; margin: 6px 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard h3 a:hover { color: var(--amp); }
.pcard__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; }
.price { line-height: 1.15; }
.price b { font-family: var(--f-display); font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.price s { color: var(--muted); font-size: 13.5px; margin-left: 5px; }
.price em { display: block; font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--save); margin-top: 3px; }
.addbtn { flex: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; min-width: 40px; padding: 0 12px; border-radius: 12px; background: var(--paper); font-weight: 600; font-size: 14px; transition: background var(--dur-1), color var(--dur-1), transform var(--dur-1); }
.addbtn:hover { background: var(--ink); color: #fff; }
.addbtn:active { transform: scale(.95); }
.addbtn.is-done { background: var(--save); color: #fff; }
.pgrid__foot { display: flex; justify-content: center; margin-top: var(--s6); }

/* ---------- FINDER ---------- */
.finder { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 48px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; position: relative; overflow: hidden; isolation: isolate; }
.finder::before { content: ""; position: absolute; z-index: -1; left: -120px; bottom: -220px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(242,181,68,.16), transparent 65%); }
.finder > * { min-width: 0; }
.fitem > div { min-width: 0; }
.finder h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 900; font-stretch: 120%; }
.finder h2 span { color: var(--brass); }
.finder > div > p { margin-top: 14px; color: var(--muted-dk); max-width: 44ch; }
.fq { margin-top: 26px; }
.fq__lbl { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dk); margin-bottom: 10px; }
.fq__lbl i { font-style: normal; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; font-size: 12px; letter-spacing: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 10px 15px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 500; border: 1.5px solid var(--line); background: var(--surface); transition: background var(--dur-1), color var(--dur-1), border-color var(--dur-1), transform var(--dur-1); }
.chip:hover { border-color: var(--text); }
.chip:active { transform: scale(.96); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.finder .chip { background: transparent; border-color: rgba(255,255,255,.2); color: #eee8f4; }
.finder .chip:hover { border-color: #fff; }
.finder .chip.is-on { background: var(--brass); border-color: var(--brass); color: var(--ink); font-weight: 600; }
.fres { background: rgba(255,255,255,.04); border: 1px solid var(--line-dk); border-radius: var(--r-lg); padding: 22px; align-self: start; }
.fres__hd { flex-wrap: wrap; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.fres__hd h3 { font-size: 20px; font-weight: 700; }
.fres__hd span { font-size: 13.5px; color: var(--muted-dk); }
.fres__list { display: grid; gap: 12px; }
.fitem { display: grid; grid-template-columns: 92px 1fr auto; gap: 16px; align-items: center; padding: 12px; border-radius: var(--r-md); background: #fff; color: var(--text); animation: fin var(--dur-3) var(--ease-out) both; }
.fitem:nth-child(2) { animation-delay: 70ms; } .fitem:nth-child(3) { animation-delay: 140ms; }
@keyframes fin { from { opacity: 0; transform: translateY(10px); } }
.fitem img { width: 92px; height: 92px; object-fit: contain; border-radius: 10px; }
.fitem h4 { font-family: var(--f-body); font-stretch: 100%; font-size: 15px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.fitem p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.fitem .price b { font-size: 18px; }
.fitem .addbtn { margin-top: 8px; }
.fitem > div:last-child { text-align: right; }
.fres__empty { padding: 30px 10px; text-align: center; color: var(--muted-dk); }
.fres__ft { margin-top: 16px; font-size: 13.5px; color: var(--muted-dk); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fres__ft a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- promos ---------- */
.promos { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.promo { position: relative; min-height: 340px; border-radius: var(--r-xl); overflow: hidden; color: #fff; display: flex; align-items: flex-end; padding: 34px; isolation: isolate; }
.promo > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.promo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(14,10,20,.88) 20%, rgba(14,10,20,.2) 75%); }
.promo:hover > img { transform: scale(1.04); }
.promo small { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.promo h3 { font-size: clamp(26px, 2.8vw, 38px); font-weight: 900; font-stretch: 120%; margin: 10px 0 10px; max-width: 14ch; }
.promo p { color: #ddd6e6; max-width: 34ch; margin-bottom: 20px; }
.promo--b::after { background: linear-gradient(0deg, rgba(14,10,20,.92) 18%, rgba(14,10,20,.35) 60%, rgba(14,10,20,.05)); }
.promo--b > img { object-position: 70% 40%; }

/* ---------- brands ---------- */
.brands { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands__track { display: flex; gap: 16px; width: max-content; animation: marquee 36s linear infinite; }
.brands:hover .brands__track { animation-play-state: paused; }
.brand { width: 170px; height: 96px; border-radius: var(--r-md); background: #e1e1e1; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); opacity: .8; transition: filter var(--dur-2), opacity var(--dur-2); }
.brand:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(calc(-50% - 8px)); } }

/* ---------- why / about ---------- */
.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about__img { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3.3; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__stamp { position: absolute; left: 20px; bottom: 20px; background: #fff; border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-2); }
.about__stamp b { display: block; font-family: var(--f-display); font-stretch: 120%; font-size: 26px; font-weight: 900; }
.about__stamp span { font-size: 13px; color: var(--muted); }
.about h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.about > div > p { margin-top: 14px; color: var(--muted); max-width: 56ch; }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 30px; }
.why__i { display: flex; gap: 14px; }
.why__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--amp-soft); color: var(--amp); display: grid; place-items: center; flex: none; }
.why__i h3 { font-family: var(--f-body); font-stretch: 100%; font-size: 16px; font-weight: 600; letter-spacing: 0; }
.why__i p { font-size: 14.5px; color: var(--muted); margin-top: 3px; }

/* ---------- bulk ---------- */
.bulk { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 44px 48px; border-radius: var(--r-xl); background: var(--amp); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.bulk::after { content: ""; position: absolute; z-index: -1; right: -40px; top: -40px; bottom: -40px; width: 46%; background: repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 3px, transparent 3px 22px); }
.bulk small { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #ffd9c9; }
.bulk h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 900; font-stretch: 120%; margin: 10px 0 12px; }
.bulk p { color: #ffe7dd; max-width: 48ch; }
.bulk__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; margin: 0 0 22px; padding: 0; }
.bulk__list li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-md); background: rgba(255,255,255,.12); font-weight: 500; }
.bulk__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- learn ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2); }
.post:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.post__img { aspect-ratio: 16 / 9; overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease-out); }
.post:hover .post__img img { transform: scale(1.05); }
.post div:last-child { padding: 18px 20px 22px; }
.post small { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--amp); }
.post h3 { font-family: var(--f-body); font-stretch: 100%; font-size: 18px; font-weight: 600; letter-spacing: -.005em; line-height: 1.3; margin-top: 8px; }
.post p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: var(--muted-dk); padding-top: var(--s8); font-size: 14.5px; }
.ftr__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: var(--s7); }
.ftr .logo__txt { color: #fff; }
.ftr .logo__txt small { color: var(--muted-dk); }
.ftr .logo__mark { background: var(--ink-3); }
.ftr__in > div > p { margin: 18px 0 20px; max-width: 36ch; }
.ftr h4 { font-family: var(--f-body); font-stretch: 100%; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr a:hover { color: #fff; }
.ftr__c { display: grid; gap: 12px; }
.ftr__c > div { display: flex; gap: 10px; align-items: flex-start; }
.ftr__c .ico { color: var(--brass); margin-top: 2px; }
.soc { display: flex; gap: 8px; }
.soc a { width: 40px; height: 40px; border-radius: 12px; background: var(--ink-3); display: grid; place-items: center; transition: background var(--dur-1); }
.soc a:hover { background: var(--amp); }
.soc svg { width: 19px; height: 19px; fill: #fff; }
.pay { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.pay span { padding: 5px 9px; border-radius: 7px; background: var(--ink-3); font-size: 12px; font-weight: 600; color: #ddd6e6; }
.ftr__bot { display: flex; justify-content: space-between; gap: 16px; padding: 20px; border-top: 1px solid var(--line-dk); font-size: 13px; flex-wrap: wrap; max-width: 1280px; }
.ftr__bot a { color: #fff; }

/* ---------- floating / drawers ---------- */
.wa { position: fixed; right: 20px; bottom: 22px; z-index: 45; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 28px -8px rgba(31,168,85,.7); transition: transform var(--dur-2) var(--ease-spring); }
.wa:hover { transform: scale(1.08); }
.wa svg { width: 28px; height: 28px; fill: #fff; }
.tabbar { display: none; }
.scrim { position: fixed; inset: 0; z-index: 60; background: rgba(14,10,20,.5); opacity: 0; pointer-events: none; transition: opacity var(--dur-2); }
.scrim.is-on { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 61; width: min(420px, 92vw); background: #fff; display: flex; flex-direction: column; transform: translateX(104%); transition: transform 380ms var(--ease-out); box-shadow: var(--sh-3); }
.drawer--left { right: auto; left: 0; transform: translateX(-104%); }
.drawer.is-on { transform: none; }
.drawer__hd { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__hd h2 { font-size: 22px; font-weight: 800; }
.xbtn { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--paper); }
.xbtn:hover { background: var(--line); }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer__ft { padding: 18px 20px 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.drawer__ft .sub { display: flex; justify-content: space-between; font-size: 17px; }
.drawer__ft .sub b { font-family: var(--f-display); font-size: 22px; }
.drawer__ft small { color: var(--muted); font-size: 13px; }
.drawer__ft .adv { display: flex; justify-content: space-between; padding: 10px 12px; border-radius: 10px; background: var(--amp-soft); font-size: 14px; }
.drawer__ft .adv b { color: var(--amp); }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .ico { width: 44px; height: 44px; color: var(--line); margin: 0 auto 12px; }
.empty b { display: block; color: var(--text); font-size: 17px; margin-bottom: 6px; }
.citem { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.citem img { width: 72px; height: 72px; object-fit: contain; border-radius: 10px; border: 1px solid var(--line); background: #fff; padding: 4px; }
.citem h4 { font-family: var(--f-body); font-stretch: 100%; font-size: 14.5px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.citem__v { font-size: 13px; color: var(--muted); margin: 3px 0 8px; }
.citem__p { font-weight: 700; text-align: right; }
.citem__rm { font-size: 12.5px; color: var(--muted); text-decoration: underline; margin-top: 6px; }
.citem__rm:hover { color: var(--amp); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 10px; height: 34px; }
.qty button { width: 32px; height: 100%; font-size: 17px; }
.qty button:hover { color: var(--amp); }
.qty span { min-width: 26px; text-align: center; font-weight: 600; }
.mnav h3 { font-family: var(--f-body); font-stretch: 100%; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 18px 0 6px; }
.mnav h3:first-child { margin-top: 0; }
.mnav a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 70; display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500; box-shadow: var(--sh-3); transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: transform 320ms var(--ease-out), opacity 320ms; max-width: calc(100vw - 32px); }
.toast .ico { color: var(--brass); }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }

/* reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.rv.is-in { opacity: 1; transform: none; }
.rise { animation: rise 800ms var(--ease-out) both; animation-delay: calc(var(--i, 0) * 90ms + 80ms); }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } }

/* =================== PRODUCT PAGE =================== */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 0; font-size: 13.5px; color: var(--muted); }
.crumbs a:hover { color: var(--amp); }
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.pdp > *, .gallery > *, .strum > *, .kit > * { min-width: 0; }
.gallery { position: sticky; top: 140px; display: grid; grid-template-columns: 76px 1fr; gap: 14px; }
.thumbs { display: grid; gap: 10px; align-content: start; }
.thumb { width: 76px; height: 76px; border-radius: 12px; background: #fff; border: 1.5px solid var(--line); overflow: hidden; transition: border-color var(--dur-1); }
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.thumb:hover { border-color: var(--muted); }
.thumb.is-on { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.gallery__main { position: relative; aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line); overflow: hidden; cursor: zoom-in; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 30px; transition: opacity 180ms, transform 400ms var(--ease-out); transform-origin: var(--zx, 50%) var(--zy, 50%); }
.gallery__main.is-zoom img { transform: scale(1.9); }
.gallery__main .off { top: 18px; left: 18px; font-size: 13.5px; padding: 7px 11px; }
.gallery__hint { position: absolute; right: 16px; bottom: 14px; font-size: 12.5px; color: var(--muted); background: rgba(255,255,255,.9); padding: 4px 9px; border-radius: 8px; }

.pinfo__brand { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pinfo__brand b { color: var(--text); }
.pinfo h1 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin: 10px 0 14px; }
.pinfo__good { display: flex; flex-wrap: wrap; gap: 6px; }
.pinfo__good span { font-size: 13px; font-weight: 500; padding: 5px 10px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); }
.pinfo__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pinfo__price b { font-family: var(--f-display); font-size: 40px; font-weight: 900; letter-spacing: -.02em; }
.pinfo__price s { font-size: 17px; color: var(--muted); }
.pinfo__price em { font-style: normal; font-weight: 700; font-size: 14px; color: var(--save); background: var(--save-soft); padding: 4px 9px; border-radius: 8px; }
.pinfo__tax { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.pinfo__stock { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--save); margin-top: 12px; }
.pinfo__stock i { width: 8px; height: 8px; border-radius: 50%; background: var(--save); }

.paysel { margin-top: 24px; display: grid; gap: 10px; }
.paysel__hd { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.paysel__hd small { color: var(--muted); font-size: 13px; }
.popt { position: relative; display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; padding: 14px 16px; border-radius: var(--r-md); border: 1.5px solid var(--line); background: #fff; cursor: pointer; transition: border-color var(--dur-1), box-shadow var(--dur-1); }
.popt:hover { border-color: var(--muted); }
.popt input { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid #b8b0c2; margin: 0; display: grid; place-items: center; }
.popt input::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--amp); transform: scale(0); transition: transform var(--dur-1) var(--ease-spring); }
.popt input:checked { border-color: var(--amp); }
.popt input:checked::after { transform: scale(1); }
.popt:has(input:checked) { border-color: var(--amp); box-shadow: 0 0 0 3px var(--amp-soft); }
.popt b { display: block; font-size: 15px; }
.popt span { font-size: 13px; color: var(--muted); }
.popt__amt { text-align: right; font-family: var(--f-display); font-weight: 800; font-size: 18px; }
.popt__amt small { display: block; font: 500 12px var(--f-body); color: var(--muted); }
.popt__bar { grid-column: 2 / -1; display: flex; height: 6px; border-radius: 3px; overflow: hidden; background: #f3b7a2; }
.popt__bar i { width: 50%; background: var(--amp); }
.popt__pop { position: absolute; top: -10px; right: 14px; padding: 3px 8px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em; }

.buy { display: flex; gap: 10px; margin-top: 18px; }
.buy .qty { height: 52px; border-radius: var(--r-pill); padding: 0 6px; }
.buy .qty button { width: 38px; }
.buy .btn { flex: 1; min-height: 52px; font-size: 16px; }
.buy2 { margin-top: 10px; min-height: 50px; }

.perks { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.perk { display: flex; gap: 14px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.perk:last-child { border-bottom: 0; }
.perk > .ico { color: var(--amp); margin-top: 2px; }
.perk b { display: block; font-size: 15px; font-weight: 600; }
.perk span { font-size: 13.5px; color: var(--muted); }
.pin { display: flex; gap: 8px; margin-top: 10px; }
.pin input { flex: 1; min-width: 0; height: 40px; padding: 0 14px; border-radius: 10px; border: 1.5px solid var(--line); outline: none; }
.pin input:focus { border-color: var(--ink); }
.pin__msg { font-size: 13.5px; margin-top: 8px; min-height: 1em; }
.pin__msg.ok { color: var(--save); font-weight: 500; }
.pin__msg.err { color: var(--amp); }

/* hear it — strum panel */
.strum { margin-top: var(--s8); background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 40px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; overflow: hidden; position: relative; isolation: isolate; }
.strum h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 900; font-stretch: 120%; }
.strum h2 span { color: var(--brass); }
.strum > div > p { color: var(--muted-dk); margin-top: 12px; max-width: 42ch; }
.chords { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.chord { min-width: 58px; height: 52px; padding: 0 14px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18); font-family: var(--f-display); font-weight: 800; font-size: 19px; transition: background var(--dur-1), transform var(--dur-1), color var(--dur-1); }
.chord:hover { background: rgba(255,255,255,.16); }
.chord:active, .chord.is-on { background: var(--brass); color: var(--ink); border-color: var(--brass); transform: scale(.96); }
.strum__tip { font-size: 13px; color: var(--muted-dk); margin-top: 16px; }
.neck { position: relative; height: 250px; border-radius: 18px; overflow: hidden; touch-action: none; cursor: grab;
  background:
    radial-gradient(circle at 88% 50%, #0b0810 0 78px, #3a2718 79px 86px, transparent 87px),
    linear-gradient(90deg, #6e4a2c, #8a5f39 40%, #a57446 70%, #c99a66); }
.neck::before { /* frets */ content: ""; position: absolute; inset: 0; right: 30%; background: repeating-linear-gradient(90deg, transparent 0 88px, #d8d2c6 88px 91px); opacity: .6; }
.neck__dots { position: absolute; inset: 0; right: 30%; pointer-events: none; }
.neck__dots i { position: absolute; top: 50%; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #efe6d8; opacity: .8; }
.str { position: absolute; left: 0; right: 0; height: var(--t, 2px); background: linear-gradient(#f7f1e6, #a79c8b); box-shadow: 0 2px 3px rgba(0,0,0,.45); transform-origin: center; }
.str.is-vib { animation: vib 520ms linear; }
@keyframes vib { 0%,100% { transform: translateY(0); } 10% { transform: translateY(-2.5px); } 20% { transform: translateY(2.5px); } 30% { transform: translateY(-2px); } 40% { transform: translateY(2px); } 55% { transform: translateY(-1.2px); } 70% { transform: translateY(1px); } 85% { transform: translateY(-.5px); } }
.str.is-mute { opacity: .35; }

/* kit builder */
.kit { margin-top: var(--s8); display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; align-items: stretch; }
.kit__items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.kit__i { position: relative; display: flex; flex-direction: column; padding: 12px; border-radius: var(--r-lg); background: #fff; border: 1.5px solid var(--line); cursor: pointer; transition: border-color var(--dur-1), opacity var(--dur-2), box-shadow var(--dur-1); }
.kit__i:has(input:checked) { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.kit__i:not(:has(input:checked)) { opacity: .6; }
.kit__i input { position: absolute; top: 12px; right: 12px; width: 20px; height: 20px; accent-color: var(--ink); margin: 0; }
.kit__i img { aspect-ratio: 1; width: 100%; object-fit: contain; padding: 8px; }
.kit__i b { font-size: 13.5px; font-weight: 600; line-height: 1.3; margin-top: 6px; }
.kit__i span { font-size: 14px; font-weight: 700; margin-top: 4px; }
.kit__i span s { font-weight: 400; color: var(--muted); font-size: 12.5px; margin-left: 4px; }
.kit__i--base { cursor: default; }
.kit__plus { display: none; }
.kit__sum { border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.kit__sum small { color: var(--muted); font-size: 13.5px; }
.kit__sum b { font-family: var(--f-display); font-size: 32px; font-weight: 900; }
.kit__sum em { font-style: normal; color: var(--save); font-weight: 600; font-size: 14px; }
.kit__sum .btn { margin-top: auto; }

.acc { margin-top: var(--s8); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.acc details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-weight: 600; font-size: 16.5px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); transition: transform var(--dur-2) var(--ease-out); }
.acc details[open] summary::after { transform: rotate(45deg); }
.acc__b { padding: 0 22px 20px; color: #4a4353; font-size: 15px; }
.acc__b ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.spec { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec th, .spec td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec th { width: 40%; color: var(--muted); font-weight: 500; padding-right: 12px; }
.faq dt { font-weight: 600; margin-top: 12px; color: var(--text); }
.faq dt:first-child { margin-top: 0; }
.faq dd { margin: 4px 0 0; }

.sticky-buy { display: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .stage__grid { grid-template-columns: 1fr; padding-top: 48px; }
  .spot { margin-top: 10px; }
  .eq { left: auto; right: -30px; bottom: auto; top: 120px; height: 110px; }
  .trust__in { grid-template-columns: 1fr 1fr; }
  .trust__i:nth-child(2) { border-right: 0; }
  .trust__i:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cats, .pgrid { grid-template-columns: repeat(3, 1fr); }
  .finder { grid-template-columns: 1fr; padding: 36px; }
  .about { grid-template-columns: 1fr; }
  .ftr__in { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: relative; top: 0; }
  .strum { grid-template-columns: 1fr; }
  .kit { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .ann__call { display: none; }
  .hdr__in { flex-wrap: wrap; gap: 8px 12px; min-height: 0; padding-top: 10px; padding-bottom: 10px; }
  .burger { display: inline-flex; margin-left: -8px; }
  .search { order: 5; flex-basis: 100%; max-width: none; height: 44px; }
  .hbtn--acc, .hbtn__txt { display: none; }
  .logo__txt { font-size: 19px; }
  .logo__txt small { display: none; }
  .logo__mark { width: 34px; height: 34px; }
  .cnav { display: none; }
  .promos, .posts, .bulk { grid-template-columns: 1fr; }
  .bulk { padding: 32px 26px; }
  .acc { grid-template-columns: 1fr; }
  .kit__items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .sec { padding: var(--s8) 0; }
  .sec--tight { padding: var(--s7) 0; }
  .ann__msgs span:not(:first-child) { display: none; }
  .stage h1 { font-size: 44px; }
  .stage__sub { font-size: 16.5px; }
  .stage__facts { gap: 22px; }
  .stage__facts b { font-size: 24px; }
  .stage__cta .btn { flex: 1; }
  .eq { display: none; }
  .save-sticker { width: 80px; height: 80px; right: -6px; }
  .save-sticker b { font-size: 18px; }
  .keys { padding: 8px 12px 0; }
  .keys__hd .hint-kbd { display: none; }
  .kb { height: 110px; padding: 8px 6px 0; }
  .kb__w { font-size: 0; }
  .trust__in { grid-template-columns: 1fr; }
  .trust__i { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 20px; }
  .cats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat { grid-template-columns: 1fr; padding: 14px; }
  .cat img { width: 100%; height: 100px; order: -1; }
  .cat > div { padding-bottom: 0; }
  .cat h3 { font-size: 15.5px; }
  .cat .cat__go { display: none; }
  .pgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pcard__media img { padding: 14px; }
  .pcard__body { padding: 12px; }
  .pcard h3 { font-size: 14px; }
  .price b { font-size: 18px; }
  .pcard__row { flex-direction: column; align-items: stretch; }
  .addbtn { width: 100%; }
  .finder { padding: 28px 16px; border-radius: var(--r-lg); margin: 0 -8px; }
  .fres { padding: 14px; }
  .fitem { grid-template-columns: 64px 1fr; }
  .fitem > div:last-child { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
  .fitem { gap: 12px; }
  .fitem img { width: 64px; height: 64px; }
  .fitem .addbtn { margin: 0; width: auto; }
  .promo { min-height: 300px; padding: 26px; }
  .why { grid-template-columns: 1fr; }
  .bulk__list { grid-template-columns: 1fr 1fr; }
  .ftr__in { grid-template-columns: 1fr; gap: 28px; }
  .wa { bottom: 80px; right: 14px; width: 50px; height: 50px; }
  .tabbar { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; height: 64px; background: #fff; border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
  .tabbar a, .tabbar button { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 11.5px; font-weight: 600; color: var(--muted); }
  .tabbar .is-on { color: var(--amp); }
  .tabbar .badge { left: calc(50% + 2px); top: 6px; }
  /* pdp */
  .gallery { grid-template-columns: 1fr; }
  .thumbs { order: 2; grid-auto-flow: column; grid-auto-columns: 64px; overflow-x: auto; }
  .thumb { width: 64px; height: 64px; }
  .gallery__main img { padding: 16px; }
  .gallery__hint { display: none; }
  .pinfo__price b { font-size: 34px; }
  .strum { padding: 26px 18px; border-radius: var(--r-lg); }
  .neck { height: 200px; }
  .chords { gap: 6px; }
  .chord { min-width: 0; flex: 1; padding: 0 8px; font-size: 17px; }
  .kit__items { grid-template-columns: 1fr 1fr; }
  body.has-sticky-buy { padding-bottom: 136px; }
  .has-sticky-buy .wa { bottom: 150px; }
  .sticky-buy { display: flex; position: fixed; left: 0; right: 0; bottom: 64px; z-index: 43; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 20px -12px rgba(0,0,0,.2); transform: translateY(120%); transition: transform var(--dur-2) var(--ease-out); }
  .sticky-buy.is-on { transform: none; }
  .sticky-buy span { display: block; font-size: 12px; color: var(--muted); }
  .sticky-buy b { font-family: var(--f-display); font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
  .brands__track { animation: none; }
}
