/* ============================================================
   Fónix — főoldal, katalógus, termékkártya, lábléc
   (design_handoff_fonix_iphone: Home / Catalog / ProductCard / Footer)

   Minden szabály "fx-" előtagú osztályon ül, hogy a régi (PC-boltos)
   style.css-szabályokkal ne keveredjen. A tokenek a style.css-ből jönnek
   (--kt-purple = narancs #ff5f1f, --kt-yellow = arany #ffc62e, --kt-ink,
   --kt-bg, --kt-surface, --kt-dim, --kt-tint, --kt-error).

   A style.css egy globális, !important-os gombszabályt ad minden
   body.gamer-theme <button>-nak (narancs háttér + 4px árnyék, 0,3,2
   specifikusság). A saját gombjaink ezért "button.fx-btn.fx-…" alakú,
   nagyobb specifikusságú szelektort kapnak !important-tal.
   ============================================================ */

.fx-home [hidden],
.fx-footer [hidden] { display: none !important; }

.fx-home {
  --fx-ink: var(--kt-ink, #111111);
  --fx-bg: var(--kt-bg, #f5f2eb);
  --fx-surface: var(--kt-surface, #ffffff);
  --fx-dim: var(--kt-dim, #55524a);
  --fx-orange: var(--kt-purple, #ff5f1f);
  --fx-gold: var(--kt-yellow, #ffc62e);
  --fx-tint: var(--kt-tint, #ffeee3);
  --fx-error: var(--kt-error, #b3261e);
  background: var(--fx-bg);
  color: var(--fx-ink);
  overflow-x: hidden;
}
.fx-home h1, .fx-home h2, .fx-home h3 { margin: 0; color: var(--fx-ink); }
.fx-dim { color: var(--fx-dim); }
.fx-home p { margin: 0; }

/* Közös gomb-alap: a globális gamer-theme gombszabály felülírása */
body.gamer-theme button.fx-btn.fx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 800;
  border-radius: 0;
  border: 3px solid var(--kt-ink) !important;
  color: var(--kt-ink) !important;
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out !important;
}
body.gamer-theme button.fx-btn.fx-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* Címke (fekete szalag) */
.fx-label {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-ink);
  color: #fff;
  padding: 4px 12px 1px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.fx-label-icon { padding: 3px 12px 0; }

.fx-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
  box-sizing: border-box;
}
.fx-section { padding-top: 56px; padding-bottom: 8px; }
body.gamer-theme .fx-h2 {
  margin: 0 0 22px;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.gamer-theme .fx-h2.fx-center { justify-content: center; text-align: center; flex-wrap: wrap; }

/* Design-szerű kép-helykitöltő (ahol még nincs valós fotó) */
.fx-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--kt-dim, #55524a);
  background:
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.06) 0 10px, transparent 10px 20px),
    var(--kt-bg, #f5f2eb);
}

/* ---------------- 1. Hero + űrlap ---------------- */
.fx-ti-fields[hidden] { display: none !important; }
.fx-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  border-bottom: 4px solid var(--fx-ink);
}
.fx-hero-left {
  position: relative;
  background: var(--fx-orange);
  padding: clamp(32px, 6vw, 64px) clamp(18px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
body.gamer-theme .fx-hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.fx-hero-lead { font-size: 1.2rem; font-weight: 700; max-width: 480px; line-height: 1.35; }
.fx-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.fx-trust-chip {
  border: 3px solid var(--fx-ink);
  background: var(--fx-surface);
  padding: 4px 12px 1px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.fx-stickers {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  pointer-events: none;
}
.fx-sticker {
  width: 58px;
  height: 58px;
  border: 3px solid var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.fx-sticker-round { border-radius: 999px; background: var(--fx-ink); transform: rotate(-10deg); box-shadow: 4px 4px 0 var(--fx-gold); }
.fx-sticker-square { background: var(--fx-surface); transform: rotate(8deg); box-shadow: 4px 4px 0 var(--fx-ink); }

.fx-hero-right {
  background: var(--fx-bg);
  padding: clamp(20px, 4vw, 40px) clamp(14px, 4vw, 36px) clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 4px solid var(--fx-ink);
}
/* egymás alá törve a bal keret helyett felső elválasztó kell */
@media (max-width: 899px) {
  .fx-hero-right { border-left: none; border-top: 4px solid var(--fx-ink); }
  /* mobilon a hero legyen tömörebb (a felhasználó kérése: fele akkora) */
  .fx-hero-left { padding: 22px 16px 24px; gap: 12px; }
  .fx-hero-lead { font-size: 1.02rem; }
  .fx-hero-right { padding: 20px 14px 24px; }
  .fx-trust-chip { font-size: 0.78rem; }
}
.fx-ti-card {
  width: 100%;
  max-width: 460px;
  background: var(--fx-surface);
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  padding: clamp(16px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  min-width: 0;
}
.fx-ti-modes { display: grid; grid-template-columns: 1fr 1fr; border: 3px solid var(--fx-ink); }
body.gamer-theme button.fx-btn.fx-ti-mode {
  border: none !important;
  box-shadow: none !important;
  background: var(--kt-surface) !important;
  padding: 10px 8px 7px;
  min-height: 44px;
  font-size: 0.95rem;
  text-transform: uppercase;
}
body.gamer-theme button.fx-btn.fx-ti-mode:hover { transform: none; box-shadow: none !important; background: var(--kt-tint) !important; }
body.gamer-theme button.fx-btn.fx-ti-mode.is-active { background: var(--kt-ink) !important; color: #fff !important; }

.fx-field-label,
.fx-flabel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.fx-field-group { display: flex; flex-direction: column; gap: 6px; }

body.gamer-theme .fx-input {
  padding: 10px 12px 7px;
  border: 3px solid var(--kt-ink);
  border-radius: 0;
  background: var(--kt-surface);
  font-size: 1rem;
  font-family: inherit;
  color: var(--kt-ink);
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
  width: 100%;
}
body.gamer-theme .fx-input:focus { outline: 3px solid var(--kt-purple); outline-offset: 1px; }
body.gamer-theme select.fx-select { font-weight: 700; font-size: 1.05rem; text-transform: none; }
body.gamer-theme textarea.fx-input { resize: vertical; }

.fx-ti-options { display: flex; gap: 8px; flex-wrap: wrap; }
.fx-ti-cond { display: grid; grid-template-columns: repeat(3, 1fr); }
body.gamer-theme button.fx-btn.fx-opt {
  min-height: 44px;
  padding: 7px 14px 4px;
  background: var(--kt-surface) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  font-size: 0.95rem;
}
body.gamer-theme button.fx-btn.fx-opt:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--kt-ink) !important; }
body.gamer-theme button.fx-btn.fx-opt.is-active { background: var(--kt-ink) !important; color: #fff !important; }
body.gamer-theme button.fx-btn.fx-opt-cond {
  min-height: 48px;
  padding: 7px 8px 4px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  min-width: 0;
}
.fx-opt-cond small { font-weight: 600; font-size: 0.72rem; opacity: 0.8; }

.fx-ti-fields { display: flex; flex-direction: column; gap: 10px; }
.fx-ti-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }

.fx-photo-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 3px solid var(--fx-ink);
  background: var(--fx-bg);
  padding: 12px;
}
.fx-photo-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fx-photo-title { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
.fx-photo-count { font-weight: 800; font-size: 0.85rem; background: var(--fx-surface); border: 2px solid var(--fx-ink); padding: 0 8px; }
.fx-photo-count.is-full { background: var(--fx-gold); }
.fx-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 12px 12px;
  min-height: 44px;
  border: 3px dashed var(--fx-ink);
  background: var(--fx-surface);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.12s ease-out;
}
.fx-dropzone:hover,
.fx-dropzone:focus-within { background: var(--fx-tint); }
/* a natív file input vizuálisan rejtett, de fókuszálható marad (billentyűzet) */
.fx-dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.fx-dropzone-title { font-weight: 800; font-size: 1.05rem; text-transform: uppercase; }
.fx-dropzone-sub { font-size: 0.82rem; color: var(--fx-dim); }
.fx-photo-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 8px; padding-top: 8px; }
.fx-thumb { position: relative; aspect-ratio: 1 / 1; border: 2px solid var(--fx-ink); background: var(--fx-surface); }
.fx-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* a látható kör 22px, de a kattintható terület a pszeudo-elemmel 44px */
body.gamer-theme button.fx-thumb-remove {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 999px;
  border: 2px solid var(--kt-ink) !important;
  background: var(--kt-surface) !important;
  color: var(--kt-ink) !important;
  box-shadow: none !important;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.gamer-theme button.fx-thumb-remove::before { content: ""; position: absolute; inset: -11px; }
body.gamer-theme button.fx-thumb-remove:hover { background: var(--kt-ink) !important; color: #fff !important; transform: none; }
.fx-shot-list { display: flex; flex-wrap: wrap; gap: 6px; }
.fx-shot { border: 2px solid var(--fx-ink); background: var(--fx-surface); padding: 1px 8px 0; font-weight: 700; font-size: 0.76rem; }
.fx-shot.is-done { background: var(--fx-gold); }
.fx-tip { display: flex; gap: 10px; align-items: flex-start; background: var(--fx-ink); color: #fff; padding: 10px 12px 8px; }
.fx-tip-badge { flex-shrink: 0; background: var(--fx-gold); color: #111; font-weight: 800; font-size: 0.72rem; padding: 1px 6px 0; text-transform: uppercase; }
.fx-tip-text { font-size: 0.85rem; line-height: 1.4; }
.fx-tip-text strong { color: #fff; }
.fx-error { font-weight: 800; font-size: 0.9rem; color: var(--fx-error); }
body.gamer-theme button.fx-btn.fx-cta {
  padding: 13px 16px 10px;
  min-height: 52px;
  background: var(--kt-purple) !important;
  font-size: 1.05rem;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--kt-ink) !important;
  width: 100%;
}
body.gamer-theme button.fx-btn.fx-cta:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--kt-ink) !important; }
.fx-ti-footnote { color: var(--fx-dim); font-size: 0.85rem; line-height: 1.4; }
.fx-ti-success {
  border: 3px solid var(--fx-ink);
  background: var(--fx-gold);
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fx-ti-success-title { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; line-height: 1.05; }
.fx-ti-summary { font-weight: 700; }
body.gamer-theme button.fx-btn.fx-btn-small {
  align-self: flex-start;
  margin-top: 4px;
  padding: 7px 14px 4px;
  min-height: 44px;
  background: var(--kt-surface) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ---------------- 2. Futószalag ---------------- */
.fx-ticker {
  background: var(--fx-ink);
  color: #fff;
  border-bottom: 4px solid var(--fx-ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0 5px;
}
.fx-ticker-track {
  display: flex;
  width: max-content;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: fx-marquee 40s linear infinite;
}
.fx-ticker-track span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; }
.fx-ticker-track i { font-style: normal; color: var(--fx-orange); }
@keyframes fx-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .fx-ticker-track { animation: none; } }

/* ---------------- 3. Fordított beszámítás ---------------- */
.fx-reverse-wrap { margin-top: 48px; }
.fx-reverse {
  position: relative;
  background: var(--fx-gold);
  border: 4px solid var(--fx-ink);
  box-shadow: 8px 8px 0 var(--fx-ink);
  padding: clamp(20px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fx-reverse-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; }
.fx-reverse-copy { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
body.gamer-theme .fx-reverse-title {
  font-size: clamp(1.8rem, 4.6vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.fx-reverse-text { font-size: 1.08rem; font-weight: 700; line-height: 1.4; }
.fx-hl { background: var(--fx-surface); padding: 0 6px; border: 2px solid var(--fx-ink); white-space: nowrap; }
body.gamer-theme a.fx-btn-dark,
body.gamer-theme a.fx-btn-dark:hover {
  min-height: 52px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 8px 22px 5px;
  background: var(--kt-ink);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--kt-ink);
  box-shadow: 5px 5px 0 var(--kt-purple);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
body.gamer-theme a.fx-btn-dark:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 var(--kt-purple); }
.fx-reverse-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.fx-rstep { background: var(--fx-surface); border: 3px solid var(--fx-ink); padding: 12px 14px 10px; display: flex; gap: 12px; align-items: flex-start; }
.fx-rstep-icon {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--fx-ink);
  border: 3px solid var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--fx-orange);
  box-sizing: border-box;
}
.fx-num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--fx-orange);
  border: 2px solid var(--fx-ink);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  box-sizing: border-box;
}
.fx-rstep-copy { display: flex; flex-direction: column; line-height: 1.25; }
.fx-rstep-copy strong { font-weight: 800; text-transform: uppercase; }
.fx-rstep-copy span { color: var(--fx-dim); font-size: 0.92rem; }

/* ---------------- 4. Így működik / 8. Miért hozzánk ---------------- */
.fx-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 20px; }
.fx-card {
  background: var(--fx-surface);
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fx-usp { gap: 8px; }
body.gamer-theme .fx-card h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.fx-card p { color: var(--fx-dim); line-height: 1.5; font-size: 1rem; }
.fx-step-top { display: flex; align-items: center; justify-content: space-between; }
.fx-icon-dark {
  width: 56px;
  height: 56px;
  background: var(--fx-ink);
  border: 3px solid var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--fx-orange);
  box-sizing: border-box;
}
.fx-step-num { font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--fx-orange); -webkit-text-stroke: 2px var(--fx-ink); }
.fx-icon-orange {
  width: 52px;
  height: 52px;
  background: var(--fx-orange);
  border: 3px solid var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--fx-ink);
  box-sizing: border-box;
}

/* ---------------- 5. Online beküldés ---------------- */
.fx-sendin-wrap { margin-top: 56px; display: flex; flex-direction: column; gap: 20px; }
/* a futáros banner (saját felirattal) teljes szélességben felül, alatta a
   szöveg + CTA — félszélességű oszlopban a banner szövege olvashatatlan lenne */
.fx-sendin {
  display: flex;
  flex-direction: column;
  border: 4px solid var(--fx-ink);
  box-shadow: 8px 8px 0 var(--fx-ink);
  background: var(--fx-surface);
}
.fx-sendin-media { border-bottom: 4px solid var(--fx-ink); line-height: 0; }
.fx-sendin-media img { display: block; width: 100%; height: auto; }
.fx-sendin-copy { padding: clamp(18px, 4vw, 30px); display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 900px) {
  .fx-sendin-copy { flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; }
  .fx-sendin-copy p { max-width: 640px; }
  .fx-sendin-copy .fx-btn-orange { flex-shrink: 0; }
}
.fx-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; }
body.gamer-theme .fx-sendin-title { font-size: 1.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.fx-sendin-copy p { line-height: 1.5; font-size: 1.02rem; }
body.gamer-theme a.fx-btn-orange,
body.gamer-theme a.fx-btn-orange:hover {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  box-sizing: border-box;
  padding: 12px 22px 9px;
  background: var(--kt-purple);
  color: #111 !important;
  font-weight: 800;
  font-size: 1.05rem;
  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 a.fx-btn-orange:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--kt-ink); }
.fx-miskolc {
  border: 3px solid var(--fx-ink);
  background: var(--fx-bg);
  padding: 12px 18px 9px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
}
.fx-miskolc strong { text-transform: uppercase; font-weight: 800; }
.fx-link-strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- 6. Kategóriák ---------------- */
.fx-cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 260px));
  justify-content: center;
  gap: 20px;
}
body.gamer-theme a.fx-cat-tile {
  display: flex;
  flex-direction: column;
  background: var(--kt-surface);
  border: 4px solid var(--kt-ink);
  box-shadow: 6px 6px 0 var(--kt-ink);
  text-decoration: none;
  color: var(--kt-ink);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
body.gamer-theme a.fx-cat-tile:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--kt-ink); }
.fx-cat-img { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.fx-cat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-cat-label {
  background: var(--fx-ink);
  color: var(--fx-bg);
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 12px 5px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* ---------------- 7. Első készlet sáv ---------------- */
.fx-stock {
  box-sizing: border-box;
  max-width: 1080px;
  margin: 56px auto 0;
  width: calc(100% - 2 * clamp(16px, 4vw, 28px));
  background: var(--fx-gold);
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  padding: clamp(18px, 4vw, 26px) clamp(16px, 4vw, 28px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.fx-stock-copy { display: flex; gap: 14px; align-items: flex-start; max-width: 540px; }
.fx-stock-copy > div { display: flex; flex-direction: column; }
.fx-stock-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--fx-ink);
  border: 3px solid var(--fx-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--fx-orange);
  box-sizing: border-box;
}
.fx-stock-title { font-size: 1.4rem; text-transform: uppercase; font-weight: 800; line-height: 1.1; }
.fx-stock-text { font-weight: 600; }
.fx-notify-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1 1 360px; }
body.gamer-theme .fx-notify-form .fx-input { width: auto; flex: 1 1 200px; }
body.gamer-theme .fx-notify-form select.fx-input { flex: 0 1 200px; font-size: 1rem; }
body.gamer-theme button.fx-btn.fx-btn-ink {
  min-height: 44px;
  padding: 10px 20px 7px;
  background: var(--kt-ink) !important;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 4px 4px 0 var(--kt-purple) !important;
}
body.gamer-theme button.fx-btn.fx-btn-ink:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--kt-purple) !important; }
.fx-notify-msg { flex-basis: 100%; margin: 0; font-weight: 800; font-size: 0.9rem; min-height: 0; }
.fx-notify-msg:empty { display: none; }
.fx-notify-msg.is-error { color: var(--fx-error); }

/* ---------------- 9. Videó ---------------- */
.fx-video {
  max-width: 900px;
  margin: 56px auto 64px;
  padding: 0 clamp(16px, 4vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
body.gamer-theme .fx-video .fx-h2 { margin: 0; }
.fx-video-lead { max-width: 560px; font-size: 1.05rem; }
.fx-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  background: var(--fx-surface);
  box-sizing: border-box;
}
body.gamer-theme button.video-embed-placeholder.fx-video-btn {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0;
}
body.gamer-theme button.video-embed-placeholder.fx-video-btn::after { display: none; }
body.gamer-theme button.video-embed-placeholder.fx-video-btn:hover { transform: none; }
.fx-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border: 4px solid var(--fx-ink);
  background: var(--fx-orange);
  color: #111;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-sizing: border-box;
  transition: transform 0.12s ease-out;
}
.fx-video-btn:hover .fx-play { transform: translate(-50%, -50%) scale(1.06); }
.fx-video-frame .video-embed-frame-wrap { max-width: none; width: 100%; height: 100%; }
.fx-video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
/* a legfrissebb videó miniatűrje (hqdefault = 4:3, fekete sávokkal — a
   cover levágja őket a 16:9-es keretben) */
.fx-video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-video-thumb[hidden], .fx-placeholder[hidden] { display: none; }
.fx-video-title { margin: 0; font-weight: 800; font-size: 1.05rem; }
.fx-video-title[hidden], .fx-video-channel[hidden] { display: none; }
body.gamer-theme a.fx-video-channel {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 16px 4px;
  background: var(--kt-purple);
  color: #111;
  border: 3px solid var(--kt-ink);
  box-shadow: 3px 3px 0 var(--kt-ink);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
}
body.gamer-theme a.fx-video-channel:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--kt-ink); }

/* ============================================================
   Katalógus
   ============================================================ */
.fx-catalog {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px clamp(14px, 3vw, 28px) 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.fx-crumb { font-size: 0.9rem; font-weight: 700; color: var(--fx-dim); display: flex; gap: 6px; flex-wrap: wrap; }
.fx-crumb a { color: var(--fx-dim); text-decoration: underline; text-underline-offset: 2px; }
.fx-cat-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px; }
.fx-cat-head-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
body.gamer-theme .fx-cat-title { margin: 0; font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.fx-cat-count { font-weight: 700; color: var(--fx-dim); }
.fx-cat-controls { display: flex; gap: 10px; flex-wrap: wrap; }
body.gamer-theme button.fx-btn.fx-ctrl {
  min-height: 44px;
  padding: 6px 14px 3px;
  background: var(--kt-surface) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  gap: 0;
}
body.gamer-theme button.fx-btn.fx-ctrl.is-active { background: var(--kt-ink) !important; color: #fff !important; }
body.gamer-theme select.fx-ctrl {
  width: auto;
  min-height: 44px;
  padding: 6px 12px 3px;
  border: 3px solid var(--kt-ink);
  background: var(--kt-surface);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--kt-ink);
  border-radius: 0;
  font-family: inherit;
  color: var(--kt-ink);
}
.fx-cat-body { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.fx-filters {
  flex: 1 1 250px;
  max-width: 100%;
  background: var(--fx-surface);
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.fx-fgroup { display: flex; flex-direction: column; gap: 8px; }
.fx-flabel { font-size: 0.8rem; }
.fx-frow { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.fx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
body.gamer-theme button.fx-btn.fx-chip {
  min-height: 44px;
  padding: 5px 12px 2px;
  background: var(--kt-surface) !important;
  box-shadow: none !important;
  font-size: 0.9rem;
}
body.gamer-theme button.fx-btn.fx-chip:hover { background: var(--kt-tint) !important; transform: none; }
body.gamer-theme button.fx-btn.fx-chip.is-active { background: var(--kt-ink) !important; color: #fff !important; }
.fx-check { display: flex; align-items: center; gap: 10px; min-height: 44px; font-weight: 700; cursor: pointer; }
body.gamer-theme .fx-check input[type="checkbox"] { width: 20px; height: 20px; margin: 0; accent-color: var(--kt-purple); }
.fx-check span { display: flex; flex-direction: column; line-height: 1.1; }
.fx-check small { font-weight: 600; font-size: 0.8rem; color: var(--fx-dim); }
body.gamer-theme input.fx-range { width: 100%; min-height: 32px; padding: 0; border: none; background: transparent; accent-color: var(--kt-purple); }
body.gamer-theme button.fx-btn.fx-clear {
  min-height: 44px;
  padding: 6px 14px 3px;
  background: var(--kt-purple) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.fx-cat-main { flex: 999 1 520px; min-width: 0; display: flex; flex-direction: column; gap: 22px; }
/* max. 3 oszlop desktopon, 2 mobilon (a design képlete) */
.fx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(150px, calc((100% - 2 * 22px) / 3)), 1fr));
  gap: clamp(12px, 2.4vw, 22px);
}
@media (max-width: 899px) {
  .fx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.fx-empty {
  background: var(--fx-surface);
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-ink);
  padding: clamp(20px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.fx-empty-badge { background: var(--fx-gold); border: 2px solid var(--fx-ink); padding: 1px 10px 0; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; }
body.gamer-theme .fx-empty-title { font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; }
.fx-empty p { max-width: 520px; line-height: 1.5; }
.fx-notify-inline { width: 100%; flex: none; }
.fx-cta-dark {
  background: var(--fx-ink);
  color: #fff;
  border: 4px solid var(--fx-ink);
  box-shadow: 6px 6px 0 var(--fx-orange);
  padding: 18px 20px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fx-cta-dark > div { display: flex; flex-direction: column; }
.fx-cta-dark strong { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; }
.fx-cta-dark span { opacity: 0.9; }
body.gamer-theme a.fx-cta-dark-btn,
body.gamer-theme a.fx-cta-dark-btn:hover {
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 6px 18px 3px;
  background: var(--kt-purple);
  color: #111 !important;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid #fff;
}

/* ---------------- ProductCard ---------------- */
.fx-pcard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--fx-surface);
  border: 4px solid var(--fx-ink);
  padding: clamp(8px, 2.4vw, 14px);
  box-shadow: 6px 6px 0 var(--fx-ink);
  min-width: 0;
  box-sizing: border-box;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
.fx-pcard:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--fx-ink); }
body.gamer-theme a.fx-pcard-link,
body.gamer-theme a.fx-pcard-link:hover {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  color: var(--kt-ink) !important;
  text-decoration: none;
  min-width: 0;
}
.fx-pcard-img { position: relative; width: 100%; aspect-ratio: 1 / 1; border: 3px solid var(--fx-ink); box-sizing: border-box; overflow: hidden; background: var(--fx-surface); }
.fx-pcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-saving {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--fx-orange);
  color: #111;
  border: 2px solid var(--fx-ink);
  padding: 1px 8px 0;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 2px 2px 0 var(--fx-ink);
}
.fx-pcard-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.fx-chip-grade,
.fx-chip-battery {
  border: 2px solid var(--fx-ink);
  border-radius: 999px;
  padding: 1px 10px 0;
  font-size: 0.74rem;
  font-weight: 900;
}
.fx-chip-grade { background: var(--fx-gold); color: #111; text-transform: uppercase; }
.fx-chip-battery { display: inline-flex; align-items: center; gap: 5px; background: var(--fx-surface); }
.fx-batt { display: inline-block; width: 14px; height: 8px; border: 1.5px solid var(--fx-ink); border-radius: 2px; padding: 1px; box-sizing: border-box; }
.fx-batt span { display: block; height: 100%; background: var(--fx-ink); }
.fx-pcard-name { display: flex; flex-direction: column; min-width: 0; }
.fx-pcard-name strong { font-size: clamp(0.98rem, 3.2vw, 1.1rem); line-height: 1.15; font-weight: 800; overflow-wrap: anywhere; }
.fx-pcard-sub { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 6px; color: var(--fx-dim); font-size: 0.9rem; font-weight: 600; }
.fx-dot { width: 11px; height: 11px; border-radius: 999px; border: 1.5px solid var(--fx-ink); display: inline-block; box-sizing: border-box; margin-right: 4px; vertical-align: -1px; }
.fx-pcard-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.fx-price { font-weight: 800; font-size: clamp(1.1rem, 3.6vw, 1.35rem); line-height: 1; }
.fx-price-old { color: var(--fx-dim); font-size: 0.9rem; font-weight: 600; text-decoration: line-through; }
.fx-pcard-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 8px; border-top: 2px solid var(--fx-ink); padding-top: 8px; font-size: 0.8rem; font-weight: 700; }
body.gamer-theme button.fx-btn.fx-add-btn {
  min-height: 46px;
  padding: 8px 10px 5px;
  background: var(--kt-purple) !important;
  box-shadow: 3px 3px 0 var(--kt-ink) !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  width: 100%;
}
body.gamer-theme button.fx-btn.fx-add-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--kt-ink) !important; }
body.gamer-theme button.fx-btn.fx-add-btn.is-added { background: var(--kt-yellow) !important; }

/* ============================================================
   Lábléc (public/footer.js injektálja minden publikus oldalra)
   ============================================================ */
body.gamer-theme footer.site-footer.fx-footer {
  padding: 0;
  background: var(--kt-surface, #fff);
  border-top: 4px solid var(--kt-ink, #111);
  color: var(--kt-ink, #111);
}
/* a főoldal utolsó szekciója (videó) már ad elég alsó teret */
.fx-home ~ footer.site-footer.fx-footer { margin-top: 0; }
.fx-footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px clamp(16px, 4vw, 28px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  box-sizing: border-box;
}
.fx-footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.fx-footer-brand { font-weight: 900; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.02em; }
body.gamer-theme .fx-footer-col h3 { margin: 0; font-size: 0.95rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--kt-ink, #111); }
.fx-footer-text { margin: 0; color: var(--kt-dim, #55524a); font-size: 0.95rem; line-height: 1.5; }
.fx-footer-col nav { display: flex; flex-direction: column; gap: 0; }
body.gamer-theme .fx-footer-col nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--kt-ink, #111);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
body.gamer-theme .fx-footer-col nav a:hover { text-decoration: underline; text-underline-offset: 3px; }
body.gamer-theme a.fx-footer-mail { color: var(--kt-ink, #111); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.fx-footer-social { display: flex; gap: 4px 14px; flex-wrap: wrap; font-weight: 700; font-size: 0.85rem; }
body.gamer-theme .fx-footer-social a { display: inline-flex; align-items: center; min-height: 36px; color: var(--kt-ink, #111); text-decoration: underline; text-underline-offset: 2px; }
body.gamer-theme .site-footer-bottom.fx-footer-bottom {
  max-width: none;
  margin: 0;
  border-top: 3px solid var(--kt-ink, #111);
  padding: 14px clamp(16px, 4vw, 28px);
  justify-content: center;
  text-align: center;
  gap: 8px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--kt-ink, #111);
}
.fx-footer-bottom .footer-milpay { min-height: 36px; }
/* a videó-helykitöltő felirata a lejátszás-gomb alá kerül, ne takarja */
.fx-video-btn .fx-placeholder { align-items: flex-end; padding-bottom: 18px; }

/* ---------------- Ajánlatkérés befejező oldal (/beszamitas.html) ---------------- */
.fx-ti-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 28px) 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
body.gamer-theme .fx-ti-page-title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.fx-ti-page-lead { margin: 0; font-weight: 700; font-size: 1.05rem; max-width: 620px; }
.fx-ti-page-body { width: 100%; margin-top: 8px; }
.fx-ti-page .fx-ti-card { max-width: none; }
