/* ============================================================
   Fónix — termékoldal, kosár, pénztár, belépés/regisztráció
   (design_handoff_fonix_iphone: Product / Cart / Checkout / Login).

   Csak a body.fx-shop osztályú oldalakon hat. A style.css
   neobrutalista rétege MINDEN gombot !important-tal narancsra fest
   (body.gamer-theme button:not(.secondary):not(.danger), specifikusság
   0,3,2) — az itteni, nem narancs gombok ezért
   "body.gamer-theme.fx-shop button.fs-..." alakú szelektort kapnak
   (szintén 0,3,2), és mivel ez a fájl a style.css UTÁN töltődik, egyenlő
   specifikusságnál ez nyer. Ezt a sorrendet ne cseréld meg a HTML-ben.
   ============================================================ */

body.fx-shop.gamer-theme {
  background: var(--kt-bg);
  overflow-x: hidden;
}

/* ---- Oldalkeret ---- */
body.fx-shop main.fs-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(14px, 3vw, 28px) 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
  width: 100%;
}
body.fx-shop.gamer-theme .fs-h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.fs-crumbs {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kt-dim);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
body.fx-shop .fs-crumbs a { color: var(--kt-dim); }
.fs-muted { color: var(--kt-dim); }

/* ---- Chipek ---- */
.fs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kt-yellow);
  color: #111;
  border: 2px solid var(--kt-ink);
  border-radius: 999px;
  padding: 1px 12px 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.6;
}
.fs-chip--white { background: var(--kt-surface); }
.fs-chip--square { border-radius: 0; }

/* ---- Fő CTA (narancs) — gombra és linkre is ---- */
body.gamer-theme.fx-shop .fs-cta,
body.gamer-theme.fx-shop button.fs-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 56px;
  width: 100%;
  padding: 12px 16px 9px;
  background: var(--kt-purple) !important;
  color: #111 !important;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 4px solid var(--kt-ink) !important;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--kt-ink) !important;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out !important;
}
body.gamer-theme.fx-shop .fs-cta:hover,
body.gamer-theme.fx-shop button.fs-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 var(--kt-ink) !important;
  color: #111 !important;
}
body.gamer-theme.fx-shop button.fs-cta.is-added { background: var(--kt-yellow) !important; }
body.gamer-theme.fx-shop button.fs-cta:disabled { opacity: 0.7; cursor: wait; }

/* kisebb, 44px-es gomb-link (üres kosár, siker-doboz) */
body.gamer-theme.fx-shop .fs-btn {
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px 3px;
  background: var(--kt-purple);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--kt-ink);
  box-shadow: 4px 4px 0 var(--kt-ink);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
body.gamer-theme.fx-shop .fs-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--kt-ink); color: #111; }
body.gamer-theme.fx-shop .fs-btn--white { background: var(--kt-surface); }

/* ---- Fekete beszámítás-CTA sáv ---- */
body.gamer-theme.fx-shop .fs-tradein-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--kt-ink);
  color: #fff;
  border: 3px solid var(--kt-ink);
  box-shadow: 4px 4px 0 var(--kt-purple);
  padding: 12px 14px 9px;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
body.gamer-theme.fx-shop .fs-tradein-link:hover { color: #fff; transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--kt-purple); }
.fs-tradein-link span:first-child { display: flex; flex-direction: column; line-height: 1.2; }
.fs-tradein-link strong { font-weight: 800; text-transform: uppercase; }
.fs-tradein-link small { font-size: 0.88rem; opacity: 0.9; }
.fs-tradein-link .fs-arrow { font-weight: 800; font-size: 1.3rem; }

/* ---- Doboz / panel ---- */
.fs-panel {
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 5px 5px 0 var(--kt-ink);
  padding: clamp(14px, 3vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  min-width: 0;
}
body.fx-shop.gamer-theme .fs-panel h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ---- Űrlapmezők (pénztár, belépés) ---- */
.fs-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 10px;
}
.fs-form-grid--narrow { grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); }
.fs-span-all { grid-column: 1 / -1; }
body.fx-shop.gamer-theme .fs-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  min-width: 0;
}
body.fx-shop.gamer-theme .fs-label > span:first-child { display: block; }
body.fx-shop.gamer-theme .fs-form input:not([type="radio"]):not([type="checkbox"]),
body.fx-shop.gamer-theme .fs-form select,
body.fx-shop.gamer-theme .fs-form textarea {
  min-height: 44px;
  box-sizing: border-box;
  padding: 6px 12px 3px;
  border: 3px solid var(--kt-ink);
  border-radius: 0;
  background: var(--kt-surface);
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--kt-ink);
  width: 100%;
}
body.fx-shop.gamer-theme .fs-form input:focus,
body.fx-shop.gamer-theme .fs-form select:focus {
  outline: 3px solid var(--kt-purple);
  outline-offset: 0;
}
body.fx-shop.gamer-theme .fs-form input:disabled { background: var(--kt-bg); color: var(--kt-dim); }
.fs-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 40px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.35;
  padding-top: 8px;
  box-sizing: border-box;
}
body.fx-shop.gamer-theme .fs-check input[type="checkbox"],
body.fx-shop.gamer-theme .fs-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--kt-purple);
}
.fs-check--small { font-weight: 600; font-size: 0.9rem; }
.fs-field-error { font-weight: 800; font-size: 0.9rem; color: var(--kt-error); }

/* ---- Rádió-kártyák (szállítás, fizetés) ----
   A natív rádió megmarad (billentyűzet, képernyőolvasó, a meglévő JS
   ezekből olvas), csak láthatatlan; a pötty és a kiválasztott háttér a
   :checked / :has(:checked) állapotból jön, nincs hozzá külön JS. A
   checkout-page.js a fizetési sorokat inline display:flex / none-nal
   kapcsolja, ezért a kártya flex (nem grid) elrendezésű. */
body.fx-shop.gamer-theme .fs-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 56px;
  box-sizing: border-box;
  padding: 8px 12px 6px !important;
  border: 3px solid var(--kt-ink) !important;
  background: var(--kt-surface);
  color: var(--kt-ink);
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
}
body.fx-shop.gamer-theme .fs-radio-card:has(input:checked) {
  background: var(--kt-yellow);
  box-shadow: 4px 4px 0 var(--kt-ink);
}
body.fx-shop.gamer-theme .fs-radio-card:has(input:disabled) { cursor: not-allowed; }
body.fx-shop.gamer-theme .fs-radio-card > input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.fs-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  box-sizing: border-box;
  flex-shrink: 0;
}
.fs-radio-card > input:checked + .fs-radio-dot { background: var(--kt-ink); }
.fs-radio-card > input:focus-visible + .fs-radio-dot { outline: 3px solid var(--kt-purple); outline-offset: 2px; }
.fs-radio-text {
  flex: 1 1 160px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fs-radio-text strong { font-weight: 800; }
.fs-radio-text > span { font-size: 0.85rem; font-weight: 600; }
.fs-radio-price { font-weight: 800; white-space: nowrap; }
.fs-radio-list { display: flex; flex-direction: column; gap: 10px; }
.fs-radio-card .pay-badge { flex-shrink: 0; }

/* ---- Összesítő (kosár + pénztár) ---- */
.fs-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.fs-layout-main {
  flex: 999 1 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fs-summary {
  flex: 1 1 300px;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 6px 6px 0 var(--kt-ink);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
body.fx-shop.gamer-theme .fs-summary h2 { margin: 0; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; }
.fs-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
}
.fs-sum-row > span:last-child { white-space: nowrap; text-align: right; }
.fs-sum-row--discount { color: var(--kt-ink); }
.fs-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  border-top: 3px solid var(--kt-ink);
  padding-top: 10px;
}
.fs-sum-total strong:first-child { font-weight: 800; text-transform: uppercase; }
.fs-sum-total strong:last-child { font-weight: 800; font-size: 1.6rem; white-space: nowrap; }
.fs-milpay-note { font-weight: 700; font-size: 0.9rem; }
.fs-milpay-box {
  border: 3px solid var(--kt-ink);
  background: var(--kt-yellow);
  padding: 8px 10px 6px;
  font-weight: 700;
  font-size: 0.9rem;
}
body.gamer-theme.fx-shop .fs-coupon-row { display: flex; gap: 8px; }
body.fx-shop.gamer-theme .fs-coupon-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
  padding: 6px 10px 3px;
  border: 3px solid var(--kt-ink);
  border-radius: 0;
  font-size: 1rem;
}
body.gamer-theme.fx-shop button.fs-btn-plain {
  min-height: 44px;
  padding: 6px 14px 3px;
  border: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  color: var(--kt-ink) !important;
  box-shadow: none !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
}
body.gamer-theme.fx-shop button.fs-btn-plain:hover {
  background: var(--kt-ink) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none;
}
.fs-status {
  border: 3px solid var(--kt-ink);
  background: var(--kt-yellow);
  padding: 8px 10px 6px;
  font-weight: 700;
  font-size: 0.9rem;
}
.fs-error {
  border: 3px solid var(--kt-error);
  background: #fff;
  color: var(--kt-error);
  padding: 8px 10px 6px;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ============================================================
   TERMÉKOLDAL
   ============================================================ */
.fs-pd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
.fs-gallery { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.fs-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 4px solid var(--kt-ink);
  box-shadow: 6px 6px 0 var(--kt-ink);
  background: var(--kt-surface);
  box-sizing: border-box;
  overflow: hidden;
}
.fs-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}
body.gamer-theme.fx-shop button.fs-zoom-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kt-surface) !important;
  border: 3px solid var(--kt-ink) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  border-radius: 0;
  color: var(--kt-ink);
}
.fs-zoom-btn svg { width: 20px; height: 20px; }
body.fx-shop .fs-gallery-main .credit-corner-badge { position: absolute; left: 0; top: 0; }
.fs-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
body.gamer-theme.fx-shop button.fs-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  box-shadow: none !important;
  cursor: pointer;
  overflow: hidden;
  min-height: 44px;
}
body.gamer-theme.fx-shop button.fs-thumb:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--kt-ink) !important; }
body.gamer-theme.fx-shop button.fs-thumb.active { box-shadow: 3px 3px 0 var(--kt-purple) !important; }
.fs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fs-image-note { margin: 0; color: var(--kt-dim); font-size: 0.8rem; text-align: center; }

.fs-buy { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.fs-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
body.fx-shop.gamer-theme .fs-pd-title {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  overflow-wrap: anywhere;
}
.fs-pd-subtitle { margin: -8px 0 0; color: var(--kt-dim); font-weight: 700; }
.fs-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.fs-price { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.fs-price-old { color: var(--kt-dim); font-weight: 600; text-decoration: line-through; }
.fs-price-pct {
  background: var(--kt-purple);
  color: #111;
  border: 2px solid var(--kt-ink);
  padding: 1px 8px 0;
  font-weight: 800;
  font-size: 0.85rem;
}
.fs-milpay-line { font-weight: 700; }
.fs-milpay-line:empty { display: none; }

.fs-units { display: flex; flex-direction: column; gap: 8px; }
.fs-units-title { font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; }
body.gamer-theme.fx-shop button.fs-unit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  width: 100%;
  padding: 8px 12px 6px;
  border: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  color: var(--kt-ink);
  box-shadow: none !important;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}
body.gamer-theme.fx-shop button.fs-unit:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--kt-ink) !important; }
body.gamer-theme.fx-shop button.fs-unit.active {
  background: var(--kt-yellow) !important;
  box-shadow: 4px 4px 0 var(--kt-ink) !important;
}
body.gamer-theme.fx-shop button.fs-unit:disabled { cursor: wait; opacity: 0.7; }
.fs-unit-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.fs-unit-text strong { font-weight: 800; }
.fs-unit-text span { font-size: 0.85rem; font-weight: 600; }
.fs-unit-price { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.fs-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--kt-ink);
  box-sizing: border-box;
  flex-shrink: 0;
}
.fs-dot--small { width: 12px; height: 12px; vertical-align: -1px; }

.fs-battery {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  padding: 10px 12px 8px;
}
.fs-battery-head { display: flex; justify-content: space-between; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; }
.fs-battery-bar { height: 14px; border: 2px solid var(--kt-ink); background: var(--kt-bg); }
.fs-battery-bar > div { height: 100%; background: var(--kt-purple); }

.fs-qty-row { display: flex; gap: 12px; align-items: stretch; }
.fs-qty-row .fs-cta { flex: 1; }
.fs-stepper {
  display: inline-flex;
  align-items: center;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  flex-shrink: 0;
}
body.gamer-theme.fx-shop .fs-stepper button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  box-shadow: none !important;
  color: var(--kt-ink);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
}
body.gamer-theme.fx-shop .fs-stepper button:hover { background: var(--kt-bg) !important; transform: none; box-shadow: none !important; }
.fs-stepper .fs-stepper-val { width: 34px; text-align: center; font-weight: 800; }

.fs-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.fs-fact {
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  padding: 8px 12px 6px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.fs-fact strong { font-weight: 800; text-transform: uppercase; font-size: 0.9rem; }
.fs-fact span { font-size: 0.85rem; color: var(--kt-dim); }

body.fx-shop .fs-buy .milpay-plan { margin: 0; }

/* Fülek */
.fs-tabs-box {
  margin-top: 20px;
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 6px 6px 0 var(--kt-ink);
  min-width: 0;
}
.fs-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 3px solid var(--kt-ink);
  -webkit-overflow-scrolling: touch;
}
body.gamer-theme.fx-shop button.fs-tab {
  flex-shrink: 0;
  min-height: 48px;
  padding: 8px 16px 5px;
  border: none !important;
  border-right: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  color: var(--kt-ink);
  box-shadow: none !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  cursor: pointer;
}
body.gamer-theme.fx-shop button.fs-tab:hover { transform: none; background: var(--kt-bg) !important; box-shadow: none !important; }
body.gamer-theme.fx-shop button.fs-tab.active { background: var(--kt-ink) !important; color: #fff; }
.fs-tab-panel {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fs-kv {
  display: grid;
  grid-template-columns: minmax(110px, 200px) 1fr;
  gap: 12px;
  border-bottom: 2px solid var(--kt-bg);
  padding-bottom: 8px;
}
.fs-kv strong { font-weight: 800; }
.fs-kv span { color: var(--kt-dim); line-height: 1.45; min-width: 0; overflow-wrap: anywhere; }
.fs-tab-panel .desc { color: var(--kt-ink); line-height: 1.55; overflow-wrap: anywhere; }
.fs-tab-panel .desc img { max-width: 100%; height: auto; }

/* Illik hozzá */
.fs-acc-section { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
body.fx-shop.gamer-theme .fs-acc-section h2 { margin: 0; font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }
.fs-acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(150px, calc((100% - 2 * 20px) / 3)), 1fr));
  gap: clamp(12px, 2.4vw, 20px);
}
.fs-acc-card {
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 5px 5px 0 var(--kt-ink);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
body.fx-shop .fs-acc-card a { color: var(--kt-ink); text-decoration: none; display: flex; flex-direction: column; gap: 8px; }
.fs-acc-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--kt-ink);
  box-sizing: border-box;
  object-fit: contain;
  background: var(--kt-surface);
  display: block;
}
.fs-acc-card strong { font-weight: 800; line-height: 1.15; overflow-wrap: anywhere; }
.fs-acc-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: auto; }
.fs-acc-foot > span { font-weight: 800; font-size: 1.1rem; }
body.gamer-theme.fx-shop button.fs-acc-add {
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  border: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-purple) !important;
  color: #111;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 2px 2px 0 var(--kt-ink) !important;
  cursor: pointer;
}
body.gamer-theme.fx-shop button.fs-acc-add.is-added { background: var(--kt-yellow) !important; font-size: 1rem; }

/* Mobil alsó vásárlás-sáv — a meglévő .sticky-buybar / body.has-sticky-buybar
   osztályokat használjuk (a chat-buborék és a social-proof eltolása ezekre
   épül a style.css-ben), csak a töréspont 900px és a design szerinti
   megjelenés az új. */
body.fx-shop .sticky-buybar {
  background: var(--kt-surface);
  border-top: 4px solid var(--kt-ink);
  box-shadow: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 12px;
  justify-content: flex-start;
}
.fs-buybar-price { display: flex; flex-direction: column; line-height: 1.05; flex-shrink: 0; }
.fs-buybar-price strong { font-weight: 800; font-size: 1.25rem; white-space: nowrap; }
.fs-buybar-price span { font-size: 0.8rem; font-weight: 700; color: var(--kt-dim); white-space: nowrap; }
.fs-buybar-price span:empty { display: none; }
body.gamer-theme.fx-shop .sticky-buybar button.fs-cta {
  flex: 1;
  min-height: 52px;
  font-size: 1.05rem;
  padding: 8px 12px 5px;
  border-width: 3px !important;
  box-shadow: 4px 4px 0 var(--kt-ink) !important;
}
@media (max-width: 899px) {
  body.fx-shop.has-sticky-buybar .sticky-buybar { display: flex; }
  body.fx-shop.has-sticky-buybar {
    --sticky-buybar-h: calc(80px + env(safe-area-inset-bottom, 0px));
    padding-bottom: var(--sticky-buybar-h);
  }
  body.fx-shop.has-sticky-buybar #chat-bubble { bottom: calc(var(--sticky-buybar-h) + 12px); }
  body.fx-shop.has-sticky-buybar #sales-proof-popup { bottom: calc(var(--sticky-buybar-h) + 12px); }
  body.fx-shop .fs-desktop-only { display: none !important; }
}
@media (min-width: 900px) {
  body.fx-shop .sticky-buybar { display: none !important; }
}

/* ============================================================
   KOSÁR
   ============================================================ */
.fs-cart-line {
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 5px 5px 0 var(--kt-ink);
  padding: 12px;
  display: grid;
  grid-template-columns: clamp(72px, 18vw, 110px) 1fr;
  gap: 14px;
}
.fs-cart-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--kt-ink);
  box-sizing: border-box;
  object-fit: contain;
  background: var(--kt-surface);
  display: block;
}
.fs-cart-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.fs-cart-head { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.fs-cart-name { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
body.fx-shop .fs-cart-name a { color: var(--kt-ink); text-decoration: none; font-weight: 800; font-size: 1.1rem; overflow-wrap: anywhere; }
.fs-cart-name .fs-cart-sub { color: var(--kt-dim); font-weight: 600; font-size: 0.9rem; }
body.gamer-theme.fx-shop button.fs-remove {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-surface) !important;
  color: var(--kt-ink);
  box-shadow: none !important;
  font-weight: 800;
  cursor: pointer;
}
body.gamer-theme.fx-shop button.fs-remove:hover { background: var(--kt-ink) !important; color: #fff; transform: none; }
.fs-cart-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.fs-cart-total { font-weight: 800; font-size: 1.25rem; white-space: nowrap; }
.fs-cart-empty {
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 6px 6px 0 var(--kt-ink);
  padding: clamp(20px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
body.fx-shop.gamer-theme .fs-cart-empty h2 { margin: 0; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; }
.fs-cart-empty p { margin: 0; color: var(--kt-dim); }
.fs-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
body.fx-shop .fs-summary .card { box-shadow: none; border-width: 3px !important; padding: 12px; margin: 0 !important; }

/* ============================================================
   PÉNZTÁR
   ============================================================ */
.fs-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
}
.fs-steps li {
  padding: 8px 10px 5px;
  border-right: 3px solid var(--kt-ink);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
}
.fs-steps li:last-child { border-right: none; }
.fs-steps li.done { background: var(--kt-yellow); }
.fs-steps li.active { background: var(--kt-ink); color: #fff; }
@media (min-width: 900px) {
  body.fx-shop .fs-summary--sticky { position: sticky; top: 96px; }
}
.fs-sum-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  font-weight: 700;
  padding: 0 0 8px;
  border-bottom: 2px solid var(--kt-bg);
}
.fs-sum-line .fs-sum-name { min-width: 0; overflow-wrap: anywhere; line-height: 1.2; }
.fs-sum-line .fs-sum-name small { display: block; color: var(--kt-dim); font-weight: 600; }
.fs-sum-line .fs-sum-price { white-space: nowrap; }
.fs-sum-line-tools { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; }
body.fx-shop.gamer-theme .fs-sum-line input.qty {
  width: 64px;
  min-height: 36px;
  padding: 2px 6px;
  border: 3px solid var(--kt-ink);
  border-radius: 0;
  text-align: center;
  font-weight: 800;
}
body.gamer-theme.fx-shop button.fs-link-btn {
  padding: 4px 2px;
  min-height: 36px;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  color: var(--kt-dim);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  border-radius: 0;
}
body.gamer-theme.fx-shop button.fs-link-btn:hover { color: var(--kt-ink); transform: none; }
.fs-sub-block { display: flex; flex-direction: column; gap: 10px; }
.fs-sub-title { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; margin: 4px 0 0; }
.fs-info-box {
  border: 3px solid var(--kt-ink);
  background: var(--kt-bg);
  padding: 10px 12px 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.fs-segment { display: flex; gap: 8px; flex-wrap: wrap; }
body.fx-shop.gamer-theme .fs-segment label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 14px 2px;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
}
body.fx-shop.gamer-theme .fs-segment label:has(input:checked) { background: var(--kt-ink); color: #fff; }
body.fx-shop.gamer-theme .fs-segment input { accent-color: var(--kt-purple); width: 18px; height: 18px; margin: 0; }
body.fx-shop #auth-card .fs-auth-inline-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
body.fx-shop #auth-card .field { margin-bottom: 10px; }
body.fx-shop .pickup-results { border: 3px solid var(--kt-ink); border-radius: 0; }
body.fx-shop .pickup-selected-card { border: 3px solid var(--kt-ink); border-radius: 0; background: var(--kt-yellow); padding: 10px 12px; }
body.fx-shop .trust-mini { justify-content: center; }

/* ============================================================
   BELÉPÉS / REGISZTRÁCIÓ
   ============================================================ */
body.fx-shop main.fs-auth {
  max-width: 1040px;
  padding: clamp(20px, 5vw, 56px) clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}
.fs-auth-card {
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 8px 8px 0 var(--kt-ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.fs-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 4px solid var(--kt-ink); }
body.fx-shop .fs-auth-tabs a {
  min-height: 52px;
  padding: 8px 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kt-surface);
  color: var(--kt-ink);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
}
body.fx-shop .fs-auth-tabs a:hover { background: var(--kt-bg); color: var(--kt-ink); }
body.fx-shop .fs-auth-tabs a.active { background: var(--kt-ink); color: #fff; }
.fs-auth-body { padding: clamp(18px, 4vw, 28px); display: flex; flex-direction: column; gap: 14px; }
body.fx-shop.gamer-theme .fs-auth-body h1 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: left;
}
.fs-pw {
  display: flex;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
}
body.fx-shop.gamer-theme .fs-form .fs-pw input:not([type="radio"]):not([type="checkbox"]) {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  border: none;
  background: transparent;
}
body.fx-shop.gamer-theme .fs-form .fs-pw input:focus { outline: none; }
.fs-pw:focus-within { outline: 3px solid var(--kt-purple); }
body.gamer-theme.fx-shop button.fs-pw-toggle {
  position: static;
  flex-shrink: 0;
  min-width: 72px;
  min-height: 42px;
  padding: 4px 10px 2px;
  border: none !important;
  border-left: 3px solid var(--kt-ink) !important;
  border-radius: 0;
  background: var(--kt-bg) !important;
  color: var(--kt-ink);
  box-shadow: none !important;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transform: none;
}
body.gamer-theme.fx-shop button.fs-pw-toggle:hover { background: var(--kt-ink) !important; color: #fff; transform: none; box-shadow: none !important; }
.fs-auth-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
body.fx-shop .fs-auth-row a { font-weight: 800; font-size: 0.9rem; color: var(--kt-ink); min-height: 40px; display: inline-flex; align-items: center; }
.fs-or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--kt-dim);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.fs-or::before, .fs-or::after { content: ""; flex: 1; height: 3px; background: var(--kt-ink); }
body.gamer-theme.fx-shop .fs-guest {
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px 3px;
  background: var(--kt-surface);
  color: var(--kt-ink);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--kt-ink);
  box-shadow: 3px 3px 0 var(--kt-ink);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
body.gamer-theme.fx-shop .fs-guest:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--kt-ink); color: var(--kt-ink); }
body.fx-shop .fs-auth-body a:not(.fs-guest):not(.fs-cta) { color: var(--kt-ink); }
.fs-perks {
  background: var(--kt-ink);
  color: #fff;
  border: 4px solid var(--kt-ink);
  box-shadow: 8px 8px 0 var(--kt-purple);
  padding: clamp(18px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.fs-perks .fs-chip { align-self: flex-start; }
body.fx-shop.gamer-theme .fs-perks h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.fs-perk { display: flex; gap: 12px; align-items: flex-start; }
.fs-perk-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--kt-purple);
  color: #111;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-sizing: border-box;
}
.fs-perk > div { display: flex; flex-direction: column; line-height: 1.3; }
.fs-perk strong { font-weight: 800; text-transform: uppercase; }
.fs-perk span { opacity: 0.88; font-size: 0.95rem; }
.fs-auth-success { text-align: left; color: var(--kt-ink); font-weight: 700; }

/* ---- Segédosztályok ---- */
.fs-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fs-cart-lines { display: flex; flex-direction: column; gap: 14px; }
/* a [hidden] attribútum győzzön a fenti display:flex/grid szabályok felett */
body.fx-shop [hidden] { display: none !important; }
body.fx-shop.gamer-theme .fs-check { flex-direction: row; flex-wrap: nowrap; }
body.fx-shop.gamer-theme .fs-check > span { display: block; flex: 1 1 auto; min-width: 0; }
body.fx-shop.gamer-theme .fs-check > span span,
body.fx-shop.gamer-theme .fs-check > span a { display: inline; }
/* a gombok alapból nem öröklik a betűtípust — a design végig Baloo 2 */
body.fx-shop.gamer-theme main button,
body.fx-shop.gamer-theme .sticky-buybar button { font-family: inherit; }
