/* ============================================================
   MiBoxer.hu – „Moonlight" designnyelv (világos téma)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-2: #f7f8fa;
  --surface-3: #eef1f5;
  --text: #1a1d21;
  --muted: #5c6570;
  --faint: #8b939e;
  --brand: #e85a24;
  --brand-strong: #c94412;
  --brand-soft: #fff1ea;
  --brand-2: #0170b9;
  --accent: #e85a24;
  --ok: #0f9d58;
  --star: #f6a609;
  --border: #e4e7ec;
  --border-strong: #d4d9e0;
  --shadow: 0 1px 2px rgba(16,24,40,.05), 0 10px 26px -14px rgba(16,24,40,.16);
  --shadow-lg: 0 2px 4px rgba(16,24,40,.05), 0 26px 52px -18px rgba(16,24,40,.22);
  --radius: 18px;
  --radius-sm: 12px;
  --rgb: linear-gradient(90deg,#ff5a5a,#ffc24b,#3ddc84,#3aa0ff,#b06bff);
  --art-bg: linear-gradient(150deg,#f7f8fa 0%,#eef1f5 100%);
  --focus: rgba(232,90,36,.16);
  color-scheme: light;
}

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(232,90,36,.06), transparent 60%),
    radial-gradient(700px 420px at -5% 5%, rgba(1,112,185,.05), transparent 60%),
    var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(232,90,36,.18); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 300;
  background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
}
.skip-link:focus { top: 12px; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 46px 0; }

/* ---------- Ikonok ---------- */
.ic {
  display: inline-block; width: 18px; height: 18px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px;
}

/* ---------- Gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border-radius: 999px; padding: 11px 20px;
  border: 1px solid transparent; transition: .18s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #f07838);
  color: #fff; box-shadow: 0 8px 20px -8px rgba(232,90,36,.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(232,90,36,.6); }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-white { background: #fff; color: #12203f; }
.btn-white:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-cart {
  width: 42px; height: 42px; padding: 0; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand); transition: .18s ease;
}
.btn-cart:hover { background: var(--brand); color: #fff; }
.btn-cart.added { background: var(--ok); color: #fff; }

/* ---------- Címkék, chipek, csillagok ---------- */
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; color: #fff;
}
.badge-sale { background: linear-gradient(135deg,#f43f5e,#ec4899); }
.badge-new  { background: linear-gradient(135deg,#10b981,#0ea5e9); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  background: var(--surface-3); color: var(--muted); border: 1px solid var(--border);
}
.chip-zb { background: #e8f4fb; color: var(--brand-2); border-color: #cfe6f5; }
.stars { --p: calc(var(--v,5) / 5 * 100%); position: relative; display: inline-block; font-size: 13px; letter-spacing: 2px; color: var(--border-strong); }
.stars::before { content: "★★★★★"; }
.stars::after { content: "★★★★★"; position: absolute; left: 0; top: 0; width: var(--p); overflow: hidden; color: var(--star); }

/* ---------- Felső sáv ---------- */
.topbar { background: #1a1d21; color: #c8ccd2; font-size: 12.5px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.topbar-usps { display: flex; gap: 20px; flex-wrap: nowrap; overflow: hidden; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .ic { width: 14px; height: 14px; color: var(--brand); }
.topbar-contact { display: flex; gap: 16px; }

/* ---------- Fejléc ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-in { display: flex; align-items: center; gap: 22px; padding: 14px 0; }
.logo { display: flex; align-items: flex-end; gap: 5px; line-height: 1; white-space: nowrap; flex: none; }
.logo-img { height: 26px; width: auto; display: block; }
.logo-word {
  font-weight: 800; font-style: italic; font-size: 26px; letter-spacing: -.045em;
  color: var(--brand); transform: skewX(-8deg); display: inline-block;
}
.logo-tld {
  font-weight: 800; font-style: italic; font-size: 15px; letter-spacing: -.02em;
  color: var(--text); display: inline-block; line-height: 1; padding-bottom: 1px;
}
.logo-mark { width: 30px; height: 30px; }
.logo-text em { font-style: italic; color: var(--brand); }
.search {
  flex: 1; display: flex; align-items: center; gap: 10px; max-width: 640px; margin: 0 auto; min-width: 0;
  background: var(--surface-2); border: 1.5px solid var(--border-strong);
  border-radius: 999px; padding: 6px 6px 6px 16px;
}
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--focus); }
.search .ic { color: var(--faint); }
.search input { flex: 1; min-width: 0; border: 0; background: transparent; outline: none; font-size: 14.5px; }
.btn-search { position: relative; padding: 9px 18px; flex: none; white-space: nowrap; }
.btn-search .ic { display: none; width: 18px; height: 18px; }
.header-actions { display: flex; align-items: center; gap: 4px; flex: none; }
.haction {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 10px; border-radius: 12px; color: var(--muted);
  font-size: 11.5px; font-weight: 600;
}
.haction:hover { color: var(--brand); background: var(--surface-2); }
.haction .ic { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 0; right: 4px;
  background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 800;
  min-width: 17px; height: 17px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px;
}
.cart-count.pop { animation: pop .4s ease; }
@keyframes pop { 40% { transform: scale(1.45); } }

/* ---------- Navigáció ---------- */
.main-nav { border-top: 1px solid var(--border); overflow: visible; }
.nav-in { display: flex; align-items: center; gap: 8px; padding: 8px 0; overflow: visible; }
.nav-scroll { display: flex; align-items: center; gap: 4px; overflow-x: auto; min-width: 0; flex: 1; scrollbar-width: none; }
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-in a { padding: 8px 13px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--muted); white-space: nowrap; }
.nav-in a:hover { color: var(--brand); background: var(--surface-2); }
.nav-all { background: var(--brand-soft); color: var(--brand) !important; display: inline-flex; gap: 8px; align-items: center; }
.nav-sale { color: #d12b2b !important; }
.nav-in a.is-on { color: var(--brand); background: var(--brand-soft); }
.has-mega { position: relative; flex: none; z-index: 90; }
.has-mega::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.mega {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 90;
  width: min(760px, 86vw); padding: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-lg); grid-template-columns: repeat(3,1fr); gap: 8px;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { display: grid; }
.hide-desktop { display: none !important; }
.mega a { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 12px; color: var(--text); font-weight: 600; white-space: normal; }
.mega a:hover { background: var(--brand-soft); color: var(--brand); }
.mega-ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--art-bg); padding: 4px; overflow: hidden; }
.mega-ic svg { width: 100%; height: 100%; }
.mega small { display: block; color: var(--faint); font-weight: 500; font-size: 12px; }
.haction.has-dd { position: relative; cursor: pointer; }
.acct-dd {
  display: none; position: absolute; top: calc(100% + 4px); right: 0; z-index: 40;
  min-width: 200px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; text-align: left;
}
.haction.has-dd:hover .acct-dd, .haction.has-dd:focus-within .acct-dd { display: block; }
.acct-dd a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 10px; color: var(--text); font-size: 13.5px; font-weight: 600; }
.acct-dd a:hover { background: var(--brand-soft); color: var(--brand); }
.acct-dd hr { border: 0; border-top: 1px solid var(--border); margin: 6px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(640px 320px at 85% 15%, rgba(232,90,36,.10), transparent 60%),
    radial-gradient(520px 280px at 8% 90%, rgba(1,112,185,.07), transparent 60%),
    linear-gradient(180deg, #fff8f4, #f3f4f6);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--rgb); }
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 64px 0 76px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); color: var(--brand);
  font-weight: 700; font-size: 12.5px; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rgb); }
.hero h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -.025em; margin: 18px 0 16px; }
.grad-text { background: linear-gradient(90deg,#e85a24,#f0a020,#0170b9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: var(--muted); font-size: 17px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.hero-trust span { display: inline-flex; gap: 7px; align-items: center; }
.hero-trust .ic { color: var(--ok); width: 16px; height: 16px; }

.stage { position: relative; min-height: 380px; }
.stage-glow {
  position: absolute; inset: 12% 4%;
  background: radial-gradient(closest-side, rgba(232,90,36,.18), transparent);
  filter: blur(8px);
}
.fcard {
  position: absolute; background: var(--surface);
  border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-lg); padding: 16px;
}
.fcard svg { width: 100%; height: 100%; }
.fcard-remote { width: 208px; height: 208px; left: 4%; top: 10%; --r: -4deg; animation: float 7s ease-in-out infinite; }
.fcard-ctrl { width: 250px; height: 190px; right: 0; bottom: 6%; --r: 3deg; animation: float 8s .8s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(var(--r,0deg)); } }
.stage-chip {
  position: absolute; display: flex; gap: 8px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 13px;
}
.stage-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rgb); }
.stage-chip .ic { color: var(--brand); width: 15px; height: 15px; }
.sc-1 { top: 4%; right: 14%; animation: float 6s .3s ease-in-out infinite; }
.sc-2 { bottom: 30%; left: 0; animation: float 7.5s 1.1s ease-in-out infinite; }
.sc-3 { bottom: 0; right: 30%; animation: float 6.8s .6s ease-in-out infinite; }

/* ---------- USP sáv ---------- */
.usps { position: relative; z-index: 3; margin-top: -36px; }
.usps-in {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px;
}
.usp { display: flex; gap: 12px; align-items: center; }
.usp-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.usp b { display: block; font-size: 14px; }
.usp small { color: var(--muted); font-size: 12.5px; }

/* ---------- Szekció fejléc ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.section-head h2 { font-size: 26px; letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin-top: 4px; }
.section-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 700; white-space: nowrap; transition: gap .15s; }
.section-link:hover { gap: 10px; }

/* ---------- Kategória kártyák ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.cat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 14px; text-align: center; transition: .2s ease; box-shadow: var(--shadow);
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.cat-art { width: 86px; height: 86px; margin: 0 auto 10px; border-radius: 16px; background: var(--art-bg); padding: 10px; overflow: hidden; }
.cat-art svg { width: 100%; height: 100%; }
.cat b { display: block; font-size: 14px; }
.cat small { color: var(--faint); font-size: 12px; }

/* ---------- Termékkártya ---------- */
.p-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: .2s ease;
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-art { position: relative; display: block; background: var(--art-bg); aspect-ratio: 4/3; overflow: hidden; }
.p-art .art { width: 100%; height: 100%; padding: 16px; }
.p-fav {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px;
  border-radius: 10px; background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted); opacity: 0; transition: .18s ease;
}
.product:hover .p-fav { opacity: 1; }
.p-fav:hover { color: var(--accent); }
.p-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.p-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.p-name { font-size: 14.5px; font-weight: 600; }
.p-name a:hover { color: var(--brand); }
.p-rating { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.p-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.p-price strong { font-size: 18px; letter-spacing: -.01em; }
.p-price s { display: block; color: var(--faint); font-size: 12.5px; }
.p-stock { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ok); font-weight: 600; }
.p-stock .ic { width: 14px; height: 14px; }

/* ---------- Promó banner ---------- */
.promo {
  position: relative; overflow: hidden; border-radius: 24px;
  background:
    var(--rgb) left / 5px 100% no-repeat,
    linear-gradient(120deg,#1a1d21,#2a221e 55%,#3d2a20);
  color: #eaf0ff; padding: 46px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.promo::before {
  content: ""; position: absolute; inset: auto -10% -45% 30%; height: 200%;
  background: radial-gradient(closest-side, rgba(232,90,36,.38), transparent); pointer-events: none;
}
.promo h2 { font-size: 30px; letter-spacing: -.02em; margin: 12px 0; }
.promo p { color: #b9c6ea; max-width: 480px; }
.promo .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #9db8ff; box-shadow: none; }
.promo-art { position: relative; z-index: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 22px; backdrop-filter: blur(4px); }
.promo-art svg { width: 100%; height: auto; }
.promo-cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Vélemények ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.review p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.review-who { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-weight: 800; }
.review-who b { display: block; font-size: 14px; }
.review-who small { color: var(--faint); }

/* ---------- Hírlevél ---------- */
.news {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  padding: 34px 38px; display: flex; gap: 24px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}
.news h2 { font-size: 24px; letter-spacing: -.02em; }
.news p { color: var(--muted); margin-top: 6px; }
.news-form { display: flex; gap: 10px; flex: 1; max-width: 520px; }
.news-form input {
  flex: 1; min-width: 0; padding: 12px 18px; border-radius: 999px;
  border: 1.5px solid var(--border-strong); background: var(--surface-2); outline: none;
}
.news-form input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--focus); }

/* ---------- Lábléc ---------- */
.footer { margin-top: 64px; background: var(--surface); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 46px 0 36px; }
.footer-col { min-width: 0; }
.footer-col-h {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; margin-bottom: 14px; padding: 0;
  font-size: 14px; font-weight: 700; text-align: left; cursor: default;
}
.footer-col-h .ic { display: none; width: 16px; height: 16px; color: var(--faint); }
.footer li { margin-bottom: 9px; color: var(--muted); font-size: 14px; }
.footer li a:hover { color: var(--brand); }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 16px; max-width: 300px; }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact .ic { color: var(--brand); width: 15px; height: 15px; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; color: var(--faint); font-size: 13px; }
.footer-bottom-in { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.paychips { display: flex; gap: 6px; flex-wrap: wrap; }
.paychips span {
  border: 1px solid var(--border); border-radius: 8px; padding: 3px 10px;
  font-size: 12px; color: var(--muted); background: var(--surface-2);
}

/* ---------- Morzsa + oldalfejléc ---------- */
.page-head { padding: 26px 0 4px; }
.crumb { display: flex; align-items: center; gap: 8px; color: var(--faint); font-size: 13px; flex-wrap: wrap; }
.crumb a:hover { color: var(--brand); }
.crumb .ic { width: 14px; height: 14px; }
.page-head h1 { font-size: 30px; letter-spacing: -.02em; margin: 12px 0 6px; }
.page-head > .container > p { color: var(--muted); max-width: 720px; }

/* ---------- Katalógus oldal ---------- */
.catalog {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; padding: 24px 0 56px;
  grid-template-areas:
    "filters toolbar"
    "filters grid"
    "filters pager";
}
.catalog > .filters { grid-area: filters; }
.catalog > .toolbar { grid-area: toolbar; }
.catalog > .catalog-grid { grid-area: grid; }
.catalog > .pagination { grid-area: pager; }
.filters {
  position: sticky; top: 158px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.filters-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--border); font-weight: 700; }
.filters-head button { color: var(--brand); font-size: 13px; font-weight: 600; }
.f-group { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.f-group:last-child { border-bottom: 0; }
.f-title { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-bottom: 10px; }
.f-opt { display: flex; align-items: center; gap: 10px; padding: 6px 0; color: var(--muted); cursor: pointer; font-size: 14px; }
.f-opt:hover { color: var(--text); }
.f-opt input { accent-color: var(--brand); width: 16px; height: 16px; }
.f-opt .cnt { margin-left: auto; font-size: 12px; color: var(--faint); }
.f-price { display: flex; gap: 8px; }
.f-price input { width: 100%; min-width: 0; padding: 8px 10px; border: 1.5px solid var(--border-strong); border-radius: 10px; background: var(--surface-2); outline: none; }
.f-price input:focus { border-color: var(--brand); }

.toolbar {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow); margin-bottom: 0;
}
.toolbar .count { font-weight: 700; }
.toolbar .count small { color: var(--faint); font-weight: 500; }
.toolbar-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; min-width: 0; }
.toolbar select { padding: 8px 12px; border-radius: 10px; border: 1.5px solid var(--border-strong); background: var(--surface-2); outline: none; }
.filters-toggle {
  display: none; align-items: center; gap: 6px; flex: none;
  padding: 8px 12px; border-radius: 10px; border: 1.5px solid var(--border-strong);
  background: var(--surface-2); font-weight: 600; color: var(--text);
}
.filters-toggle:hover, .filters-toggle[aria-expanded="true"] {
  border-color: var(--brand); color: var(--brand); background: var(--brand-soft);
}
.view-toggle { display: flex; border: 1.5px solid var(--border-strong); border-radius: 10px; overflow: hidden; }
.view-toggle button { width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); }
.view-toggle button.active { background: var(--brand); color: #fff; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px; display: grid; place-items: center;
  border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
  font-weight: 600; color: var(--muted);
}
.pagination .active { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Termékoldal ---------- */
.pd-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 36px; padding: 22px 0 40px; align-items: start; }
.gallery { position: sticky; top: 158px; }
.g-main { background: var(--art-bg); border: 1px solid var(--border); border-radius: 24px; aspect-ratio: 1/1; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.g-main .art { width: 100%; height: 100%; padding: 38px; }
.g-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 12px; }
.g-thumb { background: var(--art-bg); border: 2px solid var(--border); border-radius: 14px; aspect-ratio: 1/1; padding: 8px; transition: .15s ease; overflow: hidden; }
.g-thumb:hover { border-color: var(--border-strong); }
.g-thumb.active { border-color: var(--brand); }
.g-thumb .art { width: 100%; height: 100%; }

.buybox { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); padding: 26px; }
.buybox h1 { font-size: 26px; letter-spacing: -.02em; margin: 12px 0 10px; }
.sku-row { display: flex; gap: 14px; color: var(--faint); font-size: 13px; flex-wrap: wrap; align-items: center; }
.sku-row .p-rating { font-size: 13px; }
.price-box {
  margin: 18px 0; padding: 16px 18px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.price-now { font-size: 32px; font-weight: 800; letter-spacing: -.02em; }
.price-old { color: var(--faint); text-decoration: line-through; font-size: 16px; }
.price-off { background: linear-gradient(135deg,#f43f5e,#ec4899); color: #fff; font-weight: 700; font-size: 13px; padding: 4px 10px; border-radius: 999px; }
.price-note { width: 100%; color: var(--faint); font-size: 12.5px; }
.stock { display: inline-flex; align-items: center; gap: 8px; color: var(--ok); font-weight: 700; font-size: 14px; }
.buy-row { display: flex; gap: 10px; margin: 18px 0 6px; flex-wrap: wrap; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--border-strong); border-radius: 999px; overflow: hidden; }
.qty button { width: 42px; height: 48px; display: grid; place-items: center; color: var(--muted); }
.qty button:hover { color: var(--brand); }
.qty input { width: 44px; text-align: center; border: 0; background: transparent; font-weight: 700; font-size: 16px; outline: none; }
.fav-btn { width: 48px; height: 48px; border-radius: 999px; border: 1.5px solid var(--border-strong); display: grid; place-items: center; color: var(--muted); transition: .15s ease; }
.fav-btn:hover { color: var(--accent); border-color: var(--accent); }
.benefits { margin-top: 16px; display: grid; gap: 9px; }
.benefits li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; }
.benefits .ic { color: var(--brand); }
.compat { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border-strong); }
.compat-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.tabs { padding: 6px 0 56px; }
.tabs-bar { display: flex; gap: 6px; border-bottom: 2px solid var(--border); flex-wrap: wrap; }
.tabs-bar button { padding: 12px 18px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tabs-bar button:hover { color: var(--text); }
.tabs-bar button.active { color: var(--brand); border-color: var(--brand); }
.tab-panel { display: none; padding: 26px 0 4px; }
.tab-panel.active { display: block; }
.spec { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.spec th, .spec td { padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec th { width: 260px; color: var(--muted); font-weight: 600; background: var(--surface-2); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.prose { max-width: 840px; color: var(--muted); }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 14px 0; display: grid; gap: 9px; }
.prose li { display: flex; gap: 10px; align-items: flex-start; }
.prose li .ic { color: var(--ok); margin-top: 3px; }
.dl-item { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; max-width: 580px; box-shadow: var(--shadow); }
.dl-item .ic { color: var(--brand); }
.dl-item b { display: block; font-size: 14px; }
.dl-item small { color: var(--faint); }
.dl-item .btn { margin-left: auto; padding: 8px 14px; }
.review-summary { display: flex; gap: 28px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px 26px; box-shadow: var(--shadow); margin-bottom: 18px; flex-wrap: wrap; }
.review-summary .big { font-size: 44px; font-weight: 800; letter-spacing: -.03em; }
.review-summary .stars { font-size: 18px; }

/* ---------- Moonlight designnyelv oldal ---------- */
.ds-hero {
  position: relative; overflow: hidden; border-radius: 26px;
  background:
    var(--rgb) bottom / 100% 4px no-repeat,
    linear-gradient(120deg,#eef3ff,#f4efff 55%,#fdf2f7);
  border: 1px solid var(--border); padding: 54px 56px 58px; box-shadow: var(--shadow);
  margin-top: 26px;
}
.ds-hero::before {
  content: ""; position: absolute; right: 7%; top: -70px; width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #e6ecfb 60%, #d9e2f6);
  box-shadow: 0 0 90px rgba(120,140,220,.4);
}
.ds-hero h1 { font-size: clamp(34px,4.5vw,50px); font-weight: 800; letter-spacing: -.025em; margin: 16px 0 14px; }
.ds-hero p { color: var(--muted); font-size: 16.5px; max-width: 560px; }
.ds-section { padding: 40px 0 6px; }
.ds-section > .ds-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.ds-num { color: var(--brand); font-weight: 800; font-size: 14px; letter-spacing: .1em; }
.ds-head h2 { font-size: 22px; letter-spacing: -.02em; }
.ds-head p { color: var(--muted); font-size: 14px; }
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 14px; }
.swatch { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.swatch-color { height: 82px; }
.swatch-body { padding: 10px 12px; }
.swatch-body b { display: block; font-size: 13px; }
.swatch-body code { color: var(--faint); font-size: 11.5px; }
.demo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin-bottom: 14px; }
.demo-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.type-spec { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; margin-bottom: 12px; box-shadow: var(--shadow); }
.type-spec .meta { font-size: 12px; color: var(--faint); margin-bottom: 8px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.icon-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(108px,1fr)); gap: 12px; }
.icon-cell { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 8px 12px; text-align: center; font-size: 11px; color: var(--muted); }
.icon-cell .ic { width: 22px; height: 22px; color: var(--text); margin: 0 auto 8px; }
.art-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 14px; }
.art-cell { background: var(--art-bg); border: 1px solid var(--border); border-radius: 16px; aspect-ratio: 1/1; padding: 14px; }
.art-cell svg { width: 100%; height: 100%; }
.art-cell-label { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.shadow-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.shadow-box { background: var(--surface); border-radius: 16px; padding: 28px; text-align: center; color: var(--muted); font-size: 13px; border: 1px solid var(--border); }
.radius-row { display: flex; gap: 14px; flex-wrap: wrap; }
.radius-box { width: 120px; height: 84px; background: var(--brand-soft); border: 2px solid var(--brand); display: grid; place-items: center; color: var(--brand); font-weight: 700; font-size: 12.5px; }
.space-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.space-row .bar { height: 18px; border-radius: 5px; background: linear-gradient(135deg,var(--brand),#f0a020); }
.space-row code { color: var(--faint); font-size: 12px; }
.space-row b { font-size: 13px; width: 70px; }

/* ---------- Reszponzív ---------- */
@media (max-width: 1200px) {
  .header-in { gap: 14px; }
  .btn-search { width: 42px; height: 42px; padding: 0; }
  .btn-search .ic { display: block; }
  .btn-search-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .haction > span:not(.cart-count) { display: none; }
}
@media (max-width: 1100px) {
  .topbar-usps span:nth-child(n+3) { display: none; }
  .news { flex-direction: column; align-items: stretch; }
  .news-form { max-width: none; }
}
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .p-grid { grid-template-columns: repeat(3,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .hero-in { grid-template-columns: 1fr; padding: 48px 0 60px; }
  .stage { display: none; }
  .usps-in { grid-template-columns: repeat(2,1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 52ch; }
  .pd-layout { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .catalog {
    display: flex; flex-direction: column; gap: 16px;
  }
  .catalog > .toolbar { order: 1; }
  .catalog > .filters { order: 2; display: none; position: static; }
  .catalog > .filters.is-open { display: block; }
  .catalog > .catalog-grid { order: 3; }
  .catalog > .pagination { order: 4; }
  .filters-toggle { display: inline-flex; }
  .view-toggle { display: none; }
  .promo { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .hide-mobile { display: none !important; }
  .hide-desktop { display: flex !important; }
  .header-in { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .search { order: 3; flex: 1 1 100%; max-width: none; padding: 4px 4px 4px 12px; }
  .btn-search { width: 40px; height: 40px; padding: 0; }
  .haction { padding: 6px 8px; }
  .haction span:last-child { display: none; }
  .nav-scroll { display: none; }
  .has-mega .mega { display: none !important; }
  .main-nav .nav-in { padding: 6px 0; }
  .p-grid, .catalog-grid, .cat-grid { grid-template-columns: repeat(2,1fr); }
  .p-fav { display: none; }
  .news { flex-direction: column; align-items: stretch; padding: 22px; }
  .footer { margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding: 28px 0 8px; }
  .footer-brand { grid-column: auto; padding-bottom: 18px; }
  .footer-brand p { max-width: none; }
  .footer-col { border-top: 1px solid var(--border); }
  .footer-col-h { margin: 0; padding: 14px 0; cursor: pointer; font-size: 15px; }
  .footer-col-h .ic { display: block; transition: transform .18s ease; }
  .footer-col > ul { display: none; padding: 0 0 12px; }
  .footer-col.is-open > ul { display: grid; }
  .footer-col.is-open .footer-col-h .ic { transform: rotate(180deg); }
  .footer-bottom { padding: 16px 0 22px; }
  .footer-bottom-in { flex-direction: column; align-items: stretch; gap: 12px; }
  .paychips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; width: 100%; }
  .paychips span { text-align: center; padding: 6px 4px; }
  .usps { display: none; }
  .hero { padding: 0; }
  .hero-in { padding: 28px 0 36px; }
  .hero h1 { font-size: 28px; }
  .hero .lead { font-size: 15px; }
  .hero-trust { display: none; }
  .page-head { padding: 16px 0 0; }
  .page-head h1 { font-size: 24px; }
  .page-head > .container > p { display: none; }
  .toolbar { flex-wrap: wrap; }
  .toolbar .count { width: 100%; }
  .toolbar-actions { width: 100%; margin-left: 0; }
  .toolbar select { flex: 1; min-width: 0; width: auto; margin-left: 0; }
  .ds-hero { padding: 34px 26px; }
  .spec th { width: 40%; }
  .cart-layout, .check-layout, .account, .cat-hub { grid-template-columns: 1fr !important; }
  .auth-card { margin: 24px 16px 48px; padding: 24px 20px; }
  .promo { padding: 24px; }
  .promo h2 { font-size: 22px; }
  .aside { position: static; }
  .stat-grid, .addr-grid { grid-template-columns: 1fr; }
  .cat-wide .chip { display: none; }
  .cart-item { grid-template-columns: 72px 1fr; position: relative; padding-right: 48px; }
  .cart-item .line { grid-column: 2; text-align: left; min-width: 0; }
  .cart-item .icon-btn { position: absolute; top: 10px; right: 10px; }
  .f-grid, .contact-grid { grid-template-columns: 1fr; }
  .order { grid-template-columns: 1fr; }
  .cat-wide { grid-template-columns: 80px 1fr; }
  .cat-wide .art { width: 80px; height: 80px; }
}

/* ---------- Kosár ---------- */
.cart-layout { display: grid; grid-template-columns: 1.4fr .7fr; gap: 24px; padding: 24px 0 56px; align-items: start; }
.cart-list { display: grid; gap: 12px; }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto auto; gap: 16px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 14px; box-shadow: var(--shadow);
}
.cart-item .art-wrap { width: 96px; height: 96px; background: var(--art-bg); border-radius: 14px; padding: 8px; overflow: hidden; }
.cart-item .art-wrap svg { width: 100%; height: 100%; }
.cart-item h3 { font-size: 15px; margin-bottom: 4px; }
.cart-item .meta { color: var(--faint); font-size: 12.5px; }
.cart-item .line { font-weight: 800; font-size: 16px; min-width: 100px; text-align: right; }
.icon-btn { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--border); }
.icon-btn:hover { color: #d12b2b; border-color: #d12b2b; }
.summary {
  position: sticky; top: 158px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
}
.summary h2 { font-size: 18px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--muted); font-size: 14px; }
.sum-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px; color: var(--text); font-size: 18px; font-weight: 800; }
.coupon { display: flex; gap: 8px; margin: 14px 0; }
.coupon input { flex: 1; min-width: 0; padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--border-strong); background: var(--surface-2); outline: none; }
.coupon input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--focus); }
.empty { text-align: center; padding: 56px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; }
.empty .ic { width: 42px; height: 42px; margin: 0 auto 12px; color: var(--faint); }

/* ---------- Pénztár + auth ---------- */
.check-layout { display: grid; grid-template-columns: 1.15fr .75fr; gap: 24px; padding: 24px 0 56px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); margin-bottom: 16px; }
.form-card h2 { font-size: 17px; margin-bottom: 16px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-field { display: grid; gap: 6px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 1.5px solid var(--border-strong); background: var(--surface-2); outline: none;
}
.f-field textarea { min-height: 120px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--focus); }
.pay-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 8px; cursor: pointer; }
.pay-opt:hover, .pay-opt:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.pay-opt input { accent-color: var(--brand); }
.steps { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 18px; }
.step { display: inline-flex; align-items: center; gap: 8px; color: var(--faint); font-size: 13.5px; font-weight: 700; }
.step.on { color: var(--brand); }
.step .n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-3); font-size: 12px; }
.step.on .n { background: var(--brand); color: #fff; }

.auth-wrap { min-height: 52vh; display: grid; place-items: center; padding: 36px 20px 64px; }
.auth-card { width: min(460px, 100%); background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 26px; margin: 8px 0 8px; }
.auth-card > p { color: var(--muted); margin-bottom: 20px; }
.auth-extra { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; margin: 8px 0 18px; }
.auth-extra a { color: var(--brand); font-weight: 600; }
.auth-switch { text-align: center; margin-top: 16px; color: var(--muted); font-size: 14px; }
.auth-switch a { color: var(--brand); font-weight: 700; }

/* ---------- Fiók ---------- */
.account { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 24px 0 56px; align-items: start; }
.aside {
  position: sticky; top: 158px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  padding: 12px; box-shadow: var(--shadow);
}
.aside a, .aside button {
  display: flex; width: 100%; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px; color: var(--muted); font-weight: 600; font-size: 14px; text-align: left;
}
.aside a:hover, .aside button:hover, .aside a.on, .aside button.on { background: var(--brand-soft); color: var(--brand); }
.aside .who { display: flex; gap: 10px; align-items: center; padding: 10px 8px 14px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.aside .who b { display: block; font-size: 14px; }
.aside .who small { color: var(--faint); }
.panel { display: none; }
.panel.on { display: block; }
.order {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 18px; box-shadow: var(--shadow); margin-bottom: 10px;
}
.order b { display: block; }
.order small { color: var(--faint); }
.st { font-size: 12.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.st-ok { background: #e7f8ee; color: var(--ok); }
.st-ship { background: #e8f4fb; color: var(--brand-2); }
.st-wait { background: #fff6e5; color: #b45309; }
.addr { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); }
.addr h3 { font-size: 15px; margin-bottom: 6px; }
.addr p { color: var(--muted); font-size: 14px; }

/* ---------- CMS / infó oldalak ---------- */
.cms { max-width: 820px; padding: 8px 0 56px; }
.cms h2 { font-size: 20px; margin: 28px 0 10px; }
.cms p, .cms li { color: var(--muted); }
.cms ul, .cms ol { margin: 10px 0 10px 18px; display: grid; gap: 7px; }
.cms ul { list-style: disc; }
.cms ol { list-style: decimal; }
.cms a { color: var(--brand); font-weight: 600; }
.faq { display: grid; gap: 10px; padding: 8px 0 56px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 4px 16px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; }
.faq details p { color: var(--muted); padding-bottom: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 8px 0 56px; align-items: start; }
.map-ph {
  height: 220px; border-radius: 16px; margin-top: 16px;
  background:
    radial-gradient(circle at 55% 48%, rgba(232,90,36,.28), transparent 18%),
    linear-gradient(160deg,#d7e3ea,#eef2f5);
  border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); font-weight: 600;
}
.ok-hero { text-align: center; padding: 56px 20px 64px; }
.ok-hero .ic { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--ok); stroke-width: 2.4; }
.ok-hero.is-404 .ic { color: var(--brand); }
.ok-hero h1 { font-size: 34px; margin-bottom: 10px; }
.ok-hero p { color: var(--muted); max-width: 520px; margin: 0 auto 22px; }
.cat-hub { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; padding: 8px 0 56px; }
.cat-wide {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 18px; box-shadow: var(--shadow); transition: .18s ease;
}
.cat-wide:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.cat-wide .art { width: 120px; height: 120px; background: var(--art-bg); border-radius: 16px; padding: 10px; overflow: hidden; }
.cat-wide .art svg { width: 100%; height: 100%; }
.cat-wide h2 { font-size: 20px; margin-bottom: 6px; }
.cat-wide p { color: var(--muted); font-size: 14px; }
.note { background: var(--brand-soft); border: 1px solid #ffd4c0; color: #8a3b16; border-radius: 12px; padding: 12px 14px; font-size: 13.5px; }

/* ---------- Fiók statisztika / címek ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 22px; }
.addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Mockup felugró ---------- */
body.modal-open { overflow: hidden; }
.mock-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,29,33,.52);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
}
.mock-overlay[hidden] { display: none; }
.mock-modal {
  width: min(440px, 100%);
  background:
    var(--rgb) top / 100% 5px no-repeat,
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 36px 28px 26px;
  position: relative;
  overflow: hidden;
  animation: mock-in .28s ease;
}
@keyframes mock-in {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.mock-close {
  position: absolute; top: 14px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: var(--muted);
}
.mock-close:hover { background: var(--surface-2); color: var(--text); }
.mock-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-soft); border: 1px solid #ffd4c0;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.mock-modal h2 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 12px; padding-right: 28px; }
.mock-modal p { color: var(--muted); margin-bottom: 10px; }
.mock-modal .btn { white-space: normal; }
.mock-mail {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0 20px; padding: 12px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 14px; font-weight: 700; color: var(--brand);
}
.mock-mail:hover { border-color: var(--brand); background: var(--brand-soft); }
.mock-mail .ic { color: var(--brand); }
.topbar-mock {
  background: var(--brand); color: #fff !important; font-weight: 800;
  padding: 2px 8px; border-radius: 999px; font-size: 11px; letter-spacing: .04em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
