/* ============================================================
   Detektív Kalandok — sötét, filmszerű nyomozós téma.
   A dizájn tokenjei a bolti --shop-* változókból származnak
   (Megjelenés → Téma testreszabás), így boltonként hangolható.
   Minden szabály a .detektiv törzsosztály alá van szűkítve.
   ============================================================ */

.detektiv {
    --red: var(--shop-primary, #e10b18);
    --red2: var(--shop-accent, #ff2437);
    --ink: var(--shop-body-bg, #050506);
    --panel: #101114;
    --panel2: #15161a;
    --text: var(--shop-text, #f7f7f5);
    --muted: var(--shop-muted, #a5a6ab);
    --line: rgba(255, 255, 255, .10);
    --max: 1180px;

    /* Becsúszó kosár-fiók (közös partial): a szedés a partialé, a SZÍNEK a
       témáé. E tokenek nélkül a drawer a világos alapértelmezést venné fel,
       és a fehér háttere kilógna a jobb szélen a sötét oldalon. */
    --fiok-csik: linear-gradient(180deg, var(--ink), var(--ink));
    --fiok-hatter: var(--panel);
    --fiok-felulet: var(--panel2);
    --fiok-szoveg: var(--text);
    --fiok-halk: var(--muted);
    --fiok-halvany: var(--muted);
    --fiok-vonal: var(--line);
    --fiok-keret: var(--line);
    --fiok-kiemel: var(--red);
    --fiok-siker: #3ddc84;
    --fiok-cta: var(--red);
    --fiok-cta-szoveg: #fff;
}

.detektiv * { box-sizing: border-box }
/* FIGYELEM: a <body>-ra NE kerüljön vissza overflow-x (hidden VAGY clip)!
   iOS Safariban a body overflow-ja a position:fixed gyerekeket (fejléc,
   buybar, menü) a lappal együtt görgeti = „elúsznak". A hero/termék/stb.
   szekciók a saját overflow-jukkal vágják le a vízszintes túlfolyást. */
.detektiv.shop-body { margin: 0; background: var(--ink); color: var(--text); font-family: Inter, Arial, sans-serif; line-height: 1.55 }
/* Filmszerű zaj-textúra az egész oldalon.
   FIGYELEM: ez egy teljes képernyős, position:fixed réteg. A z-indexe a fejléc
   (50) ALATT kell legyen, és MOBILON teljesen ki van kapcsolva — iOS Safariban
   egy viewport-szintű fixed réteg minden képkockán újrakompozitálásra
   kényszeríti a többi fix elemet (fejléc, buybar), amitől görgetéskor
   lemaradnak/tearing-elnek. Ezért itt NE emeld vissza a z-indexet, és mobilon
   NE kapcsold vissza. */
.detektiv::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 40; opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E") }
@media (max-width: 1020px) { .detektiv::before { display: none } }
.detektiv a { color: inherit; text-decoration: none }
.detektiv img { display: block; max-width: 100% }
.detektiv button, .detektiv input, .detektiv textarea, .detektiv select { font: inherit }
.detektiv .container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto }
.detektiv .eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red2); font: 800 14px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .12em }
.detektiv .eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red) }
.detektiv h1, .detektiv h2, .detektiv h3, .detektiv h4 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; line-height: .94; margin: 0; letter-spacing: .01em }
.detektiv h2 { font-size: clamp(42px, 6vw, 76px) }
.detektiv p { color: var(--muted) }

.detektiv .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 23px; border: 1px solid transparent; background: var(--red); color: var(--shop-primary-text, #fff); text-transform: uppercase; font: 800 14px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; transition: .22s; cursor: pointer; clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%) }
.detektiv .btn:hover { transform: translateY(-2px); background: var(--red2); box-shadow: 0 14px 40px rgba(225, 11, 24, .3) }
.detektiv .btn.ghost { background: transparent; border-color: rgba(255, 255, 255, .28); clip-path: none }
.detektiv .btn.ghost:hover { border-color: var(--red); color: var(--red2); box-shadow: none }
.detektiv .btn.block { width: 100% }

/* Fejléc */
/* FIGYELEM: ide NE kerüljön vissza `backdrop-filter`! iOS Safariban egy fix
   elemen a backdrop-filter görgetéskor „elúsztatja" a fejlécet (a kép közé
   lóg), és containing block-ot csinál a benne lévő fix elemeknek. Tömör
   háttér kell. (A buybar/menü ugyanettől úszott el korábban.) */
.detektiv .header { position: fixed; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid rgba(255, 255, 255, .08); background: #08080a; padding-top: env(safe-area-inset-top, 0px) }
.detektiv .nav { height: 72px; display: flex; align-items: center; gap: 24px }
.detektiv .logo { display: flex; align-items: center; gap: 12px; font: 900 26px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; color: var(--text) }
.detektiv .logo img { height: 40px; width: auto }
.detektiv .logo-mark { width: 38px; height: 38px; border: 4px solid var(--red); border-right-color: transparent; transform: skew(-8deg); position: relative; flex: 0 0 auto }
.detektiv .logo-mark::after { content: attr(data-mark); position: absolute; inset: 0; display: grid; place-items: center; font: 900 14px/1 "Barlow Condensed", sans-serif; transform: skew(8deg) }
.detektiv .nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; font: 700 13px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em }
.detektiv .nav-links a { color: #d6d6d8; transition: .2s }
.detektiv .nav-links a:hover { color: var(--red2) }
.detektiv .nav-icons { display: flex; align-items: center; gap: 14px }
.detektiv .nav-icons a { color: #d6d6d8; position: relative; display: inline-flex }
.detektiv .nav-icons a:hover { color: var(--red2) }
.detektiv .cart-count { position: absolute; right: -10px; top: -9px; background: var(--red); min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; display: grid; place-items: center; font: 800 10px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 27px; cursor: pointer }

/* Mobil menü */
.detektiv .mobile-menu { position: fixed; inset: 0; z-index: 60; background: rgba(5, 5, 6, .98); padding: 90px 26px 40px; display: none; flex-direction: column; gap: 4px }
.detektiv .mobile-menu.open { display: flex }
.detektiv .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 700 18px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .06em }
.detektiv .mobile-close { position: absolute; top: 22px; right: 24px; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer }

/* Hero */
.detektiv .hero { padding-top: calc(72px + env(safe-area-inset-top, 0px)); position: relative; display: grid; align-items: center; isolation: isolate; overflow: hidden; min-height: 720px; background: radial-gradient(circle at 76% 30%, rgba(225, 11, 24, .18), transparent 26%), linear-gradient(90deg, rgba(5, 5, 6, .98) 0%, rgba(5, 5, 6, .84) 42%, rgba(5, 5, 6, .28) 72%, rgba(5, 5, 6, .78) 100%) }
.detektiv .hero.has-image { background-size: cover; background-position: center }
.detektiv .hero::before { content: ""; position: absolute; left: -70px; top: 150px; width: 350px; height: 470px; border: 18px solid var(--red); border-right: 0; transform: skew(-8deg); opacity: .94; z-index: -1 }
.detektiv .hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, var(--ink)) }
.detektiv .hero-inner { position: relative; z-index: 2; padding: 100px 0 110px; max-width: 880px }
.detektiv .hero-kicker { font: 800 15px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .17em; color: var(--red2); margin-bottom: 18px }
.detektiv .hero h1 { font-size: clamp(60px, 11vw, 150px); font-weight: 900; letter-spacing: -.04em; text-shadow: 0 12px 50px #000; margin-left: -3px }
.detektiv .hero h1 span { display: block; color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .82); font-size: .36em; letter-spacing: .14em; margin-left: 8px; margin-top: 9px }
.detektiv .hero p { max-width: 650px; font-size: 18px; margin: 24px 0 30px; color: #d0d0d3 }
.detektiv .hero-actions { display: flex; gap: 12px; flex-wrap: wrap }
.detektiv .hero-meta { position: absolute; right: 2vw; bottom: 120px; display: flex; gap: 30px; z-index: 2 }
.detektiv .hero-stat strong { display: block; font: 900 38px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .hero-stat span { font-size: 12px; color: #a8a8ac; text-transform: uppercase; letter-spacing: .1em }

/* Szekciók */
.detektiv section { position: relative }
.detektiv .section-head { text-align: center; max-width: 800px; margin: 0 auto 52px }
.detektiv .section-head .eyebrow { justify-content: center }
.detektiv .section-head .eyebrow::before { display: none }
.detektiv .section-head p { max-width: 650px; margin: 18px auto 0 }
.detektiv .intro-copy h2 span, .detektiv .section-head h2 span { color: var(--red) }

/* Termék/ügy rács */
.detektiv .games { padding: 90px 0 110px; background: linear-gradient(rgba(5, 5, 6, .92), rgba(5, 5, 6, .97)) }
.detektiv .filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 0 0 32px }
.detektiv .filter { border: 1px solid var(--line); background: #101115; color: #ddd; padding: 9px 16px; text-transform: uppercase; font: 700 12px/1 "Barlow Condensed", sans-serif; letter-spacing: .07em; cursor: pointer }
.detektiv .filter.active, .detektiv .filter:hover { background: var(--red); border-color: var(--red); color: #fff }
.detektiv .game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px }
.detektiv .game-card { position: relative; background: #111216; border: 1px solid var(--line); overflow: hidden; transition: .28s; min-width: 0; display: flex; flex-direction: column }
.detektiv .game-card:hover { transform: translateY(-7px); border-color: rgba(225, 11, 24, .7); box-shadow: 0 24px 60px rgba(0, 0, 0, .45) }
.detektiv .game-card-link { display: block; color: inherit; text-decoration: none }
.detektiv .game-action { margin-top: auto; padding: 0 18px 20px }
.detektiv .game-action form { margin: 0 }
.detektiv .game-notify { background: transparent; border-color: rgba(255, 255, 255, .28); clip-path: none }
.detektiv .game-notify:hover { border-color: var(--red); color: var(--red2); background: transparent; box-shadow: none; transform: translateY(-2px) }
.detektiv .game-disabled { background: #1a1a1d; border-color: var(--line); color: #777; clip-path: none; cursor: default }
.detektiv .game-disabled:hover { transform: none; background: #1a1a1d; box-shadow: none }
.detektiv .game-image { aspect-ratio: 1/1; position: relative; background-size: cover; background-position: center; filter: saturate(.85); background-color: #0c0d10 }
.detektiv .game-image img { width: 100%; height: 100%; object-fit: cover }
.detektiv .game-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 46%, rgba(10, 10, 12, .2) 58%, #111216 100%) }
.detektiv .game-badge { position: absolute; z-index: 2; left: 0; top: 16px; background: var(--red); padding: 8px 13px; font: 800 12px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .06em; color: #fff }
.detektiv .game-badge.sale { background: #08090a; color: var(--red2) }
.detektiv .game-content { padding: 0 18px 20px; margin-top: -28px; position: relative; z-index: 2 }
.detektiv .game-content h3 { font-size: 27px; margin-bottom: 9px }
.detektiv .rating { color: #fff; font: 800 14px/1 "Barlow Condensed", sans-serif }
.detektiv .rating span { color: var(--red2); font-size: 16px; margin-right: 6px }
.detektiv .game-content p { font-size: 13px; min-height: 40px; margin: 12px 0 14px }
.detektiv .game-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px }
.detektiv .game-price strong { font: 900 24px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .game-price del { color: #777; font-size: 14px }
.detektiv .game-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; color: #c9c9cc; font-size: 12px; text-transform: uppercase }
.detektiv .game-card .btn { width: 100% }

/* CTA szalag */
.detektiv .stripe { padding: 60px 0; background: linear-gradient(108deg, #b8000d 0%, #ef0c1c 58%, #9b000a 58.2%); overflow: hidden }
.detektiv .stripe::before { content: "CASE FILE  /  CASE FILE  /  CASE FILE"; position: absolute; left: -30px; top: -12px; font: 900 120px/1 "Barlow Condensed", sans-serif; color: rgba(0, 0, 0, .10); white-space: nowrap }
.detektiv .stripe-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px }
.detektiv .stripe h2 { font-size: clamp(40px, 5vw, 64px) }
.detektiv .stripe p { color: #fff; opacity: .86; max-width: 670px; margin: 10px 0 0 }
.detektiv .stripe .btn { background: #08090a; clip-path: none; white-space: nowrap }

/* Előnyök */
.detektiv .benefits { padding: 100px 0; background: #090a0c }
.detektiv .benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 45px }
.detektiv .benefit { position: relative; text-align: center; padding: 30px 16px; background: linear-gradient(180deg, #15161a, #0d0e10); border: 1px solid var(--line); min-height: 190px }
.detektiv .benefit::before { content: ""; position: absolute; inset: auto 28% -1px; height: 3px; background: var(--red) }
.detektiv .benefit-icon { font-size: 30px; margin-bottom: 17px; filter: grayscale(1) }
.detektiv .benefit h3 { font-size: 22px }
.detektiv .benefit p { font-size: 12px; margin-bottom: 0 }

/* Hogyan működik */
.detektiv .how { padding: 100px 0; background: linear-gradient(90deg, rgba(6, 6, 7, .98), rgba(6, 6, 7, .8)) }
.detektiv .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 48px }
.detektiv .step { background: #0d0e10; padding: 34px 26px; min-height: 200px; position: relative }
.detektiv .step b { font: 900 68px/1 "Barlow Condensed", sans-serif; color: rgba(225, 11, 24, .18); position: absolute; right: 18px; top: 18px }
.detektiv .step h3 { font-size: 27px; margin-top: 55px }
.detektiv .step p { font-size: 13px }

/* Lábléc */
.detektiv .site-footer { padding: 70px 0 calc(28px + env(safe-area-inset-bottom, 0px)); background: var(--shop-footer-bg, #050506); border-top: 1px solid var(--line) }
.detektiv .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px }
.detektiv .footer-grid h4 { font-size: 20px; margin-bottom: 18px }
.detektiv .footer-grid a { display: block; color: var(--shop-footer-text, #a9a9ad); font-size: 13px; margin: 9px 0 }
.detektiv .footer-grid a:hover { color: var(--red2) }
.detektiv .footer-note { max-width: 420px; font-size: 13px }
.detektiv .socials { display: flex; gap: 9px; margin-top: 20px }
.detektiv .socials a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); margin: 0; color: #fff }
.detektiv .copyright { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 20px; display: flex; justify-content: space-between; color: #77787d; font-size: 12px; flex-wrap: wrap; gap: 8px }

/* Breadcrumb (belső oldalak) */
.detektiv .breadcrumb { padding-top: calc(104px + env(safe-area-inset-top, 0px)); padding-bottom: 18px; color: #8e9096; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; font-family: "Barlow Condensed", sans-serif; font-weight: 700 }
.detektiv .breadcrumb a:hover { color: var(--red2) }
.detektiv .breadcrumb span, .detektiv .breadcrumb strong { color: #fff }

/* Tartalom-oldalak (ÁSZF stb.) */
.detektiv .page-wrap { padding: 20px 0 90px }
.detektiv .page-title { font-size: clamp(40px, 6vw, 78px); margin: 6px 0 26px }
.detektiv .page-body { font-size: 16px; line-height: 1.8; color: #d2d2d5; max-width: 820px }
.detektiv .page-body h2 { font-size: 30px; margin: 34px 0 12px }
.detektiv .page-body h3 { font-size: 23px; margin: 26px 0 10px }
.detektiv .page-body a { color: var(--red2); text-decoration: underline }
.detektiv .page-body ul, .detektiv .page-body ol { margin: 0 0 16px 22px }

/* Belépés / auth */
.detektiv .auth-wrap { max-width: 460px; margin: 0 auto; padding: 10px 0 90px }
.detektiv .auth-title { font-size: 44px; margin: 0 0 22px }
.detektiv .auth-card { background: linear-gradient(145deg, #111216, #0b0c0e); border: 1px solid var(--line); padding: 28px }
.detektiv .auth-field { margin-bottom: 16px }
.detektiv .auth-label { display: block; font: 800 12px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; color: #cfd0d3 }
.detektiv .auth-input { width: 100%; border: 1px solid var(--line); background: #0b0c0e; color: #fff; padding: 13px 14px; outline: none }
.detektiv .auth-input:focus { border-color: var(--red) }
.detektiv .auth-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #bbb; margin-bottom: 18px }
.detektiv .auth-btn { width: 100%; clip-path: none }
.detektiv .auth-alert { border: 1px solid var(--line); padding: 13px 15px; font-size: 14px; margin-bottom: 18px }
.detektiv .auth-alert.err { border-color: rgba(225, 11, 24, .5); color: #ff8a92; background: rgba(225, 11, 24, .08) }
.detektiv .auth-alert.ok { border-color: rgba(66, 209, 124, .4); color: #8ff0b3; background: rgba(66, 209, 124, .06) }
.detektiv .auth-links { margin-top: 18px; font-size: 14px; color: #8f9096; display: grid; gap: 8px }
.detektiv .auth-links a { color: var(--red2); font-weight: 700 }

/* Fejléc mini-kosár lenyíló */
.detektiv .cart-menu { position: relative; display: inline-flex; align-items: center }
.detektiv .mini-cart { position: absolute; top: 100%; right: 0; margin-top: 14px; width: min(370px, calc(100vw - 32px)); background: #0c0d10; border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0, 0, 0, .6); padding: 16px; display: none; z-index: 300 }
.detektiv .mini-cart::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px }
.detektiv .cart-menu.has-items:hover .mini-cart, .detektiv .cart-menu.has-items.force-open .mini-cart { display: block }
.detektiv .mini-cart-lines { display: flex; flex-direction: column; gap: 12px; max-height: 52vh; overflow-y: auto }
.detektiv .mini-cart-line { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center }
.detektiv .mini-cart-thumb { width: 52px; height: 52px; overflow: hidden; background: #17181c; flex: 0 0 auto; border: 1px solid var(--line) }
.detektiv .mini-cart-thumb img { width: 100%; height: 100%; object-fit: cover }
.detektiv .mini-cart-name { font: 800 14px/1.3 "Barlow Condensed", sans-serif; text-transform: uppercase; color: #fff }
.detektiv .mini-cart-name:hover { color: var(--red2) }
.detektiv .mini-cart-meta { font-size: 13px; color: #8f9096; margin-top: 4px }
.detektiv .mini-cart-sub { font: 900 15px/1 "Barlow Condensed", sans-serif; white-space: nowrap; color: #fff }
.detektiv .mini-cart-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line) }
.detektiv .mini-cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 15px; margin-bottom: 12px; color: #cfd0d3 }
.detektiv .mini-cart-total strong { font: 900 19px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .mini-cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.detektiv .mini-cart-actions .btn { min-height: 44px; padding: 0 12px; font-size: 13px }
.detektiv .mini-cart-view { background: #17181c; color: #fff; clip-path: none }
.detektiv .mini-cart-empty { padding: 20px 6px; text-align: center; color: #8f9096; font-size: 14px }

/* ---- Termékoldal (2. fázis blade-jéhez már kész a stílus) ---- */
.detektiv .product { padding: 18px 0 90px; position: relative; overflow-x: clip }
.detektiv .product::before { content: ""; position: absolute; right: -260px; top: 80px; width: 520px; height: 360px; background: var(--red); clip-path: polygon(18% 0, 100% 18%, 84% 100%, 0 78%); opacity: .12 }
.detektiv .product-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: start }
.detektiv .gallery { position: sticky; top: 100px }
.detektiv .main-shot { position: relative; min-height: 560px; border: 0; overflow: hidden; background: #0c0d10; background-size: cover; background-position: center; box-shadow: 0 30px 80px rgba(0, 0, 0, .45) }
.detektiv .main-shot img { width: 100%; height: 100%; object-fit: cover }
.detektiv .main-shot::before { content: "AKTA 01"; position: absolute; left: 24px; top: 24px; background: var(--red); padding: 8px 13px; font: 900 14px/1 "Barlow Condensed", sans-serif; letter-spacing: .12em; color: #fff; z-index: 2 }
.detektiv .main-shot::after { content: "BIZALMAS"; position: absolute; right: 22px; bottom: 28px; border: 3px solid var(--red); padding: 8px 14px; font: 900 25px/1 "Barlow Condensed", sans-serif; transform: rotate(-4deg); color: #fff; z-index: 2 }

/* Termékoldal további szekciói (story / inside / reviews / cta) */
.detektiv .story { padding: 100px 0; background: linear-gradient(155deg, #050506 62%, #0f1013 62.2%) }
.detektiv .story-grid { max-width: 820px }
.detektiv .story h2, .detektiv .inside h2, .detektiv .reviews h2 { font-size: clamp(40px, 6vw, 70px) }
.detektiv .story h2 span, .detektiv .inside h2 span, .detektiv .reviews h2 span { color: var(--red) }
.detektiv .lead { font-size: 18px; color: #d2d2d5 }
.detektiv .story-body { color: #c9c9cd; line-height: 1.8 }
.detektiv .story-body p { margin: 0 0 14px }
.detektiv .inside { padding: 100px 0 }
.detektiv .inside-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px }
.detektiv .inside-card { padding: 26px 22px; border: 1px solid var(--line); background: linear-gradient(145deg, #14151a, #0c0d10); min-height: 160px; transition: .25s }
.detektiv .inside-card:hover { transform: translateY(-7px); border-color: rgba(225, 11, 24, .7) }
.detektiv .inside-card .no { font: 900 44px/1 "Barlow Condensed", sans-serif; color: rgba(225, 11, 24, .25) }
.detektiv .inside-card h3 { font-size: 24px; margin: 16px 0 10px }
.detektiv .inside-card p { font-size: 14px; color: var(--muted) }
.detektiv .reviews { padding: 100px 0 }
.detektiv .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px }
.detektiv .review { background: linear-gradient(145deg, #121318, #0a0b0d); border: 1px solid var(--line); padding: 26px }
.detektiv .review .stars { color: #ffcc4b }
.detektiv .review p { color: #c0c1c5 }
.detektiv .review b { font: 800 16px "Barlow Condensed", sans-serif; text-transform: uppercase }
.detektiv .review small { display: block; color: #777; margin-top: 4px }
.detektiv .cta { padding: 72px 0; background: linear-gradient(120deg, var(--red), #a0000c); text-align: center }
.detektiv .cta h2 { font-size: clamp(42px, 7vw, 80px) }
.detektiv .cta p { color: #ffe7e9; max-width: 650px; margin: 16px auto 24px }
.detektiv .cta .btn { background: #080809; clip-path: none }
.detektiv .strip { background: var(--red); padding: 30px 0; position: relative; overflow: hidden }
.detektiv .strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px }
.detektiv .strip-item { display: flex; gap: 13px; align-items: center }
.detektiv .strip-item b { font: 900 18px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; color: #fff }
.detektiv .strip-item span { display: block; font-size: 12px; color: #ffdadd; margin-top: 4px }
.detektiv .strip-item .icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .30); color: #fff }
.detektiv .strip-item .icon svg { width: 24px; height: 24px }
@media (max-width: 1020px) {
    .detektiv .story-grid { grid-template-columns: 1fr }
    .detektiv .inside-grid { grid-template-columns: repeat(2, 1fr) }
    .detektiv .review-grid { grid-template-columns: 1fr }
    .detektiv .strip-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 680px) {
    .detektiv .inside-grid, .detektiv .strip-grid { grid-template-columns: 1fr }
}
.detektiv .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px }
.detektiv .thumb { height: 100px; border: 1px solid var(--line); cursor: pointer; background-size: cover; background-position: center; opacity: .72; background-color: #0c0d10 }
.detektiv .thumb.active, .detektiv .thumb:hover { opacity: 1; border-color: var(--red) }
.detektiv .product-info h1 { font-size: clamp(46px, 6vw, 90px); letter-spacing: -.03em; margin: 16px 0 14px }
.detektiv .subtitle { font-size: 18px; color: #d1d2d6; max-width: 620px }
.detektiv .product-info .rating { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: #ffcc4b }
.detektiv .product-info .rating small { color: var(--muted) }
.detektiv .price { display: flex; align-items: end; gap: 13px; margin: 24px 0 6px }
.detektiv .price strong { font: 900 44px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .price del { color: #777; font-size: 17px }
.detektiv .vat { font-size: 12px; color: #777 }
.detektiv .facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0 }
.detektiv .fact { border: 1px solid var(--line); background: linear-gradient(145deg, #111216, #0b0c0e); padding: 17px 14px; min-height: 88px }
.detektiv .fact b { display: block; font: 900 22px/1 "Barlow Condensed", sans-serif; color: #fff }
.detektiv .fact span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-top: 7px }
.detektiv .buybox { margin-top: 24px; padding: 22px; border: 1px solid rgba(225, 11, 24, .34); background: linear-gradient(135deg, rgba(225, 11, 24, .10), rgba(255, 255, 255, .025)) }
.detektiv .stock { display: flex; align-items: center; gap: 9px; font-size: 14px; margin-bottom: 16px; color: #d2d2d5 }
.detektiv .stock i { width: 8px; height: 8px; border-radius: 50%; background: #42d17c; box-shadow: 0 0 15px #42d17c }
.detektiv .buyrow { display: grid; grid-template-columns: 120px 1fr; gap: 11px }
.detektiv .qty { display: flex; border: 1px solid var(--line); height: 54px }
.detektiv .qty button { width: 40px; background: #111216; color: #fff; border: 0; cursor: pointer }
.detektiv .qty input { width: 40px; text-align: center; background: #0b0c0e; color: #fff; border: 0 }
.detektiv .buyrow .btn { width: 100%; height: 54px }
.detektiv .payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px }
.detektiv .payments span { border: 1px solid var(--line); padding: 7px 10px; color: #a9abb1; font-size: 11px; text-transform: uppercase }

@media (max-width: 1020px) {
    .detektiv .nav-links { display: none }
    .detektiv .menu-btn { display: block }
    .detektiv .hero-meta { display: none }
    .detektiv .intro-grid, .detektiv .contact-grid { grid-template-columns: 1fr }
    .detektiv .game-grid { grid-template-columns: repeat(2, 1fr) }
    .detektiv .benefit-grid { grid-template-columns: repeat(3, 1fr) }
    .detektiv .steps { grid-template-columns: repeat(2, 1fr) }
    .detektiv .footer-grid { grid-template-columns: 1.4fr 1fr 1fr }
    .detektiv .product-grid { grid-template-columns: 1fr }
    .detektiv .gallery { position: relative; top: 0 }
    .detektiv .main-shot { min-height: 0; aspect-ratio: 1 / 1 }
    .detektiv .mini-cart { display: none !important }
}
@media (max-width: 680px) {
    .detektiv .container { width: min(100% - 28px, var(--max)) }
    .detektiv .nav { height: 64px }
    .detektiv .hero { padding-top: calc(64px + env(safe-area-inset-top, 0px)); min-height: 640px }
    .detektiv .hero-inner { padding-top: 60px }
    .detektiv .benefit-grid, .detektiv .footer-grid { grid-template-columns: 1fr }
    .detektiv .steps { grid-template-columns: repeat(2, 1fr) }
    .detektiv .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px }
    .detektiv .stripe-inner { align-items: flex-start; flex-direction: column }
    .detektiv .facts { grid-template-columns: 1fr }
    .detektiv .buyrow { grid-template-columns: 1fr }
    .detektiv .copyright { flex-direction: column }
}

.detektiv .seo-text-block{margin-top:16px;padding:40px 0;border-top:1px solid var(--line);color:var(--muted);line-height:1.8;font-size:15px}

/* A Kosárba gomb színe a Megjelenés → „Kosárba gomb színe" beállításból jön.
   Üresen hagyva az elsődleges színt örökli, tehát a téma alapképe nem változik. */
.detektiv .btn.buy-btn { background: var(--shop-cart-button, var(--red)); color: var(--shop-cart-button-text, #fff) }
.detektiv .btn.buy-btn:hover { background: var(--shop-cart-button, var(--red2)); filter: brightness(1.08) }

/* ── Konverziós 1px fehér él levágása ──────────────────────────────────
   A kép-konverziókat a közös WebpMediaDefinitions állítja elő fehér
   háttérrel (background '#FFF') + Fit::Fill-lel; a kerekítés miatt minden
   méret TETEJÉN és BAL szélén marad egy ~1px fehér él. A világos témákon
   ez láthatatlan, a sötét DK-témán viszont vékony fehér vonalként kilóg
   (az EREDETI feltöltött kép tiszta — a vonal a konverzióban keletkezik).
   A gyökér-ok javítása minden bolt összes képének újragenerálását kérné,
   ezért itt, a DK-témában vágjuk le a szélső pixelt: a konténerek ~0,3%-kal
   nagyítják a képet és a kilógó élt elrejtik. Minden méretre és a jövőbeli
   feltöltésekre is érvényes, más boltot nem érint. */
.detektiv .main-shot img { width: calc(100% + 4px); height: calc(100% + 4px); max-width: none; margin: -2px 0 0 -2px; object-fit: cover }
.detektiv .game-image { background-size: calc(100% + 4px) calc(100% + 4px) }
.detektiv .thumb { background-size: calc(100% + 4px) calc(100% + 4px) }

/* ===== Belépés / regisztráció / jelszó / fiók — „akta" dizájn (csak DK) =====
   A közös auth-kártya (.sa-*) alap-stílusa színes és világos. A detektív témán
   a sötét akta-hangulatra írjuk át: a `body.detektiv …` magasabb specifikusság
   felülírja a komponens @once inline stílusát, más bolt nem érinti.
   Forrás: detektivkalandok-belepes.html. */
body.detektiv .sa-wrap { min-height: 100vh; box-sizing: border-box; justify-content: center; padding: 116px 20px 80px }
body.detektiv .sa-card { width: 440px; color: var(--text); border-radius: 0; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); padding: 40px 34px 30px; box-shadow: 0 40px 90px rgba(0, 0, 0, .55) }
body.detektiv .sa-card::before { content: "Bizalmas"; position: absolute; top: -14px; right: 22px; transform: rotate(6deg); font: 800 13px/1 "Barlow Condensed", sans-serif; letter-spacing: .24em; text-transform: uppercase; color: var(--red); border: 2px solid var(--red); padding: 5px 10px 4px; background: var(--ink) }
body.detektiv .sa-logodot { display: none }
body.detektiv .sa-back { color: var(--muted); font-weight: 700 }
body.detektiv .sa-back:hover { color: var(--text) }
body.detektiv .sa-hello { text-align: left; margin-bottom: 22px }
body.detektiv .sa-kick { background: none; color: var(--red); padding: 0; transform: none; border-radius: 0; display: inline-flex; align-items: center; gap: 8px; font: 700 10px/1 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .22em; margin-bottom: 12px }
body.detektiv .sa-kick::before { content: ""; width: 16px; height: 1px; background: var(--red) }
body.detektiv .sa-hello h1 { font: 800 32px/1 "Barlow Condensed", sans-serif; font-style: normal; text-transform: uppercase; letter-spacing: .03em; color: var(--text) }
body.detektiv .sa-hello h1 span { color: var(--red) }
body.detektiv .sa-hello p { color: var(--muted); font-size: 13.5px; margin-top: 8px }
body.detektiv .sa-alert { border-radius: 0 }
body.detektiv .sa-err { background: rgba(225, 11, 24, .10); color: #ff6b63; border-color: rgba(225, 11, 24, .40) }
body.detektiv .sa-ok { background: rgba(52, 211, 153, .10); color: #7ee2b8; border-color: rgba(52, 211, 153, .35) }
body.detektiv .sa-in { border-radius: 0; background: var(--panel2); border: 1px solid var(--line); color: var(--text) }
body.detektiv .sa-in:focus { border-color: var(--red); background: var(--panel2); box-shadow: 0 0 0 3px rgba(225, 11, 24, .14) }
body.detektiv .sa-in::placeholder { color: #55524f }
body.detektiv .sa-fg .sa-lic { color: var(--muted) }
body.detektiv .sa-fg:focus-within .sa-lic { color: var(--red) }
body.detektiv .sa-eye { color: var(--muted) }
body.detektiv .sa-eye:hover { color: var(--text) }
body.detektiv .sa-metaline { margin: 4px 2px 18px }
body.detektiv .sa-rem { color: var(--muted) }
body.detektiv .sa-rem input { accent-color: var(--red) }
body.detektiv .sa-forgot { color: var(--muted) }
body.detektiv .sa-forgot:hover { color: var(--text) }
body.detektiv .sa-cta { border-radius: 0; background: var(--red); color: #fff; transform: none; box-shadow: none; text-transform: uppercase; font: 800 18px/1 "Barlow Condensed", sans-serif; letter-spacing: .1em; clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%); padding: 16px }
body.detektiv .sa-cta:hover { transform: translateY(-2px); background: var(--red2) }
body.detektiv .sa-cta.sa-dark { background: var(--red); color: #fff; border: none }
body.detektiv .sa-cta.sa-dark:hover { background: var(--red2) }
body.detektiv .sa-div { color: var(--muted) }
body.detektiv .sa-div::before, body.detektiv .sa-div::after { background: var(--line) }
body.detektiv .sa-gbtn { border-radius: 0; background: var(--panel2); border: 1px solid var(--line); color: var(--text) }
body.detektiv .sa-gbtn:hover { border-color: var(--muted); transform: translateY(-2px) }
body.detektiv .sa-switchline { color: var(--muted) }
body.detektiv .sa-switchline a { color: var(--text); text-decoration: underline; text-underline-offset: 3px }
body.detektiv .sa-switchline a:hover { color: var(--red) }
body.detektiv .sa-gdpr { color: var(--muted) }
body.detektiv .sa-gdpr input { accent-color: var(--red) }
body.detektiv .sa-gdpr a { color: var(--text) }
body.detektiv .sa-strength i { background: var(--line) }
body.detektiv .sa-strength i.on { background: var(--red) }
body.detektiv .sa-pwhint { color: var(--muted) }
body.detektiv .sa-sent .sa-okmark { background: rgba(52, 211, 153, .12); color: #7ee2b8 }
body.detektiv .sa-sent b { color: var(--text) }
body.detektiv .sa-sent p { color: var(--muted) }
body.detektiv .sa-foot { color: var(--muted) }
body.detektiv .sa-tipus span { border-radius: 0; border: 1px solid var(--line); background: var(--panel2); color: var(--muted); font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .06em }
body.detektiv .sa-tipus input:checked + span { border-color: var(--red); background: var(--panel); color: var(--text) }

/* ===== Kereső-sáv a fejlécben (logó mellett) — csak DK ===== */
.detektiv .dk-search { position: relative; display: flex; align-items: stretch; width: 320px; max-width: 34vw; margin-left: 6px }
.detektiv .dk-search-ic { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); display: grid; place-items: center; pointer-events: none }
.detektiv .dk-search input { flex: 1; min-width: 0; background: var(--panel2); border: 1px solid var(--line); color: var(--text); font: 500 13.5px/1 Inter, Arial, sans-serif; padding: 0 13px 0 38px; height: 42px; outline: none; transition: .15s }
.detektiv .dk-search input::placeholder { color: var(--muted); opacity: .9 }
.detektiv .dk-search input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 11, 24, .14); position: relative; z-index: 1 }
.detektiv .dk-search button { border: 0; background: var(--red); color: #fff; font: 800 12px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em; padding: 0 16px; cursor: pointer; transition: .2s; clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%) }
.detektiv .dk-search button:hover { background: var(--red2) }
.detektiv .nav-search-ic { display: none }
@media (max-width: 680px) {
    .detektiv .dk-search { display: none }
    .detektiv .nav-search-ic { display: inline-flex }
}

/* ===== Keresési találati oldal (mint a /jatekok) — csak DK ===== */
.detektiv .search-page-form { display: flex; gap: 10px; max-width: 560px; margin: 4px 0 30px }
.detektiv .search-page-form input { flex: 1; min-width: 0; background: var(--panel2); border: 1px solid var(--line); color: var(--text); font: 500 15px/1 Inter, Arial, sans-serif; padding: 0 16px; height: 52px; outline: none; transition: .15s }
.detektiv .search-page-form input::placeholder { color: var(--muted) }
.detektiv .search-page-form input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 11, 24, .14) }
.detektiv .search-page-form .btn { height: 52px }
.detektiv .search-count { color: var(--muted); font: 700 12px/1 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px }
.detektiv .search-empty { color: var(--muted); font-size: 15px; line-height: 1.7; padding: 10px 0 30px }
.detektiv .search-empty strong { color: var(--text); font-size: 18px }
.detektiv .search-empty a { color: var(--red2); text-decoration: underline; text-underline-offset: 3px }
.detektiv .search-pager { margin-top: 34px }

/* ===== Szöveges (tartalom) oldal — csak DK ===== */
.detektiv .dk-page { padding: 104px 0 90px; background: linear-gradient(rgba(5, 5, 6, .92), rgba(5, 5, 6, .97)) }
.detektiv .dk-page-crumb { color: #8e9096; font: 700 12px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 22px; display: flex; align-items: center; gap: 10px }
.detektiv .dk-page-crumb a { color: var(--muted) }
.detektiv .dk-page-crumb a:hover { color: var(--red2) }
.detektiv .dk-page-crumb strong { color: var(--text); font-weight: 700 }
.detektiv .dk-page-body { max-width: 820px; margin: 0 auto }
.detektiv .dk-page-body.is-wide { max-width: none }
.detektiv .dk-page-title { font: 800 40px/1.05 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .02em; color: var(--text); margin-bottom: 24px }
.detektiv .dk-prose { color: #c9cacd; font-size: 16px; line-height: 1.75 }
.detektiv .dk-prose h2 { font: 800 26px/1.15 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .02em; color: var(--text); margin: 34px 0 12px }
.detektiv .dk-prose h3 { font: 700 20px/1.2 "Barlow Condensed", sans-serif; text-transform: uppercase; color: var(--text); margin: 26px 0 10px }
.detektiv .dk-prose p { margin: 0 0 15px; color: #c9cacd }
.detektiv .dk-prose a { color: var(--red2); text-decoration: underline; text-underline-offset: 3px }
.detektiv .dk-prose a:hover { color: var(--text) }
.detektiv .dk-prose ul, .detektiv .dk-prose ol { margin: 0 0 15px 22px }
.detektiv .dk-prose li { margin: 0 0 7px }
.detektiv .dk-prose img { max-width: 100%; height: auto; border: 1px solid var(--line) }
.detektiv .dk-prose strong { color: var(--text) }
.detektiv .dk-prose hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0 }
/* Beágyazott interaktív widgetek: saját (dark) stílusukat hozzák, csak a
   konténer térközét adjuk. A widgetek color:#fff-fel készültek. */
.detektiv .dk-embed { margin-top: 26px }
.detektiv .dk-embed a { color: var(--red2) }

/* ===== Kosár — sötét „akta" dizájn (csak DK) =====
   A base kosár szemantikus .kos-* osztályokat használ, token + néhány beégetett
   világos színnel. A body.detektiv magasabb specifikusság felülírja (a base
   inline @push('head') stílusát is), a markup/bekötés érintetlen. */
body.detektiv .kos { padding: 104px 0 90px }
body.detektiv .kos-cim { color: var(--text); font-family: "Barlow Condensed", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .02em }
body.detektiv .kos-cim span { color: var(--muted) }
body.detektiv .kos .underline { color: var(--red2) }
body.detektiv .kos-ajandek { background: var(--panel2); color: var(--text); border: 1px solid var(--red); border-radius: 0 }
body.detektiv .kos-lista { background: var(--panel); border: 1px solid var(--line); border-radius: 0 }
body.detektiv .kos-tetel { border-bottom: 1px solid var(--line) }
body.detektiv .kos-kep { background: var(--panel2); border-radius: 0 }
body.detektiv .kos-nev { color: var(--text) }
body.detektiv .kos-meta { color: var(--muted) }
body.detektiv .kos-drs { color: #7ee2b8 }
body.detektiv .kos-muvelet button, body.detektiv .kos-muvelet a { color: var(--muted) }
body.detektiv .kos-muvelet button:hover, body.detektiv .kos-muvelet a:hover { color: var(--red2) }
body.detektiv .kos-db { border-color: var(--line); border-radius: 0 }
body.detektiv .kos-db button { background: var(--panel2); color: var(--text) }
body.detektiv .kos-db button:hover { background: var(--panel) }
body.detektiv .kos-db input { background: var(--panel2); color: var(--text) }
body.detektiv .kos-ar b { color: var(--text) }
body.detektiv .kos-ajandeksor { background: rgba(52, 211, 153, .08) }
body.detektiv .kos-ajandeksor .kos-nev { color: #7ee2b8 }
/* Összegző: a szivárvány-csík helyett DK piros felső sáv, sötét panel */
body.detektiv .kos-sum { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 0; color: var(--text) }
body.detektiv .kos-sum h2 { color: var(--text); font-family: "Barlow Condensed", sans-serif; font-style: normal; text-transform: uppercase }
body.detektiv .kos-szallitas { background: var(--panel2); color: #c9cacd; border-radius: 0 }
body.detektiv .kos-szallitas-sav { background: var(--line) }
body.detektiv .kos-szallitas-sav i { background: var(--red) }
body.detektiv .kos-kupon-cim { color: var(--muted) }
body.detektiv .kos-kupon-ikon { background: var(--panel2); color: var(--red2); border-radius: 0 }
body.detektiv .kos-kupon input { background: var(--panel2); border: 1px solid var(--line); color: var(--text); border-radius: 0 }
body.detektiv .kos-sor { color: var(--muted) }
body.detektiv .kos-sor b { color: var(--text) }
body.detektiv .kos-sor--kedvezmeny b { color: var(--red2) }
body.detektiv .kos-ossz { border-top: 1px solid var(--line); color: var(--text) }
body.detektiv .kos-ossz b { color: var(--text) }
body.detektiv .kos-afa { color: var(--muted) }
body.detektiv .kos-sum .kos-cta, body.detektiv .kos-cta { background: var(--red); color: #fff; border-radius: 0; text-transform: uppercase; font-family: "Barlow Condensed", sans-serif; letter-spacing: .06em; clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%) }
body.detektiv .kos-cta:hover { background: var(--red2); box-shadow: none }
body.detektiv .kos-eta { color: var(--muted) }
body.detektiv .kos-csempe { color: var(--muted) }
body.detektiv .kos-csempe .ikon { color: var(--red2) }
body.detektiv .kos-csempe a { color: var(--red2) }
/* Kapcsolódó termékek (Ezek még érdekelhetnek): 4-es rács a játék-kártyákkal */
body.detektiv .kos-ajanlo h2 { color: var(--text); font-family: "Barlow Condensed", sans-serif; font-style: normal; text-transform: uppercase }
body.detektiv .kos-ajanlo h2 em { background: var(--red); color: #fff; font-style: normal; padding: 2px 12px }
body.detektiv .kos-ajanlo .products { display: flex; overflow-x: auto; overflow-y: hidden; gap: 14px; grid-template-columns: none; scroll-snap-type: x proximity; padding: 4px 2px 12px; scrollbar-width: thin; scrollbar-color: var(--red) transparent }
body.detektiv .kos-ajanlo .products > * { flex: 0 0 200px; scroll-snap-align: start }
body.detektiv .kos-ajanlo .products::-webkit-scrollbar { height: 8px }
body.detektiv .kos-ajanlo .products::-webkit-scrollbar-thumb { background: var(--red); border-radius: 8px }

/* ===== Jelszóval védett oldal beléptető — csak DK ===== */
.detektiv .dk-lock { max-width: 460px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--red); padding: 34px 30px 30px; position: relative }
.detektiv .dk-lock-badge { display: inline-flex; align-items: center; gap: 8px; font: 700 10px/1 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 14px }
.detektiv .dk-lock-badge::before { content: ""; width: 16px; height: 1px; background: var(--red) }
.detektiv .dk-lock h1 { font: 800 30px/1.05 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .02em; color: var(--text); margin-bottom: 10px }
.detektiv .dk-lock p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px }
.detektiv .dk-lock input { width: 100%; background: var(--panel2); border: 1px solid var(--line); color: var(--text); font: 500 15px/1 Inter, Arial, sans-serif; padding: 14px 15px; outline: none; transition: .15s; margin-bottom: 14px }
.detektiv .dk-lock input::placeholder { color: #55524f }
.detektiv .dk-lock input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 11, 24, .14) }
.detektiv .dk-lock .btn { width: 100% }
.detektiv .dk-lock-err { color: #ff6b63; font-size: 13px; font-weight: 700; margin: -6px 0 14px }
.detektiv .dk-lock-hint { color: var(--muted); font-size: 12.5px; margin: 16px 0 0; text-align: center }

/* ===== Csapatépítés galéria + partner-logók (tartalom-oldalon, csak DK) ===== */
.detektiv .dk-partners { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 10px 0 26px }
.detektiv .dk-partners img { width: 130px; height: 96px; object-fit: contain; background: #fff; border-radius: 8px; padding: 12px }
.detektiv .dk-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 10px 0 26px }
.detektiv .dk-gallery img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: 6px; display: block }
@media (max-width: 680px) { .detektiv .dk-gallery { gap: 10px } }

/* ===== SEO szöveg a lábléc alatt (csak DK) ===== */
.detektiv .dk-seo-footer { background: var(--ink); border-top: 1px solid var(--line); padding: 30px 0 40px }
.detektiv .dk-seo-footer h2 { font: 800 20px/1.2 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 10px }
.detektiv .dk-seo-footer p { color: #6f6b67; font-size: 12.5px; line-height: 1.7; margin: 0; max-width: 1000px }

/* Online (korlátlan) játék: a termékkép bélyege BIZALMAS helyett ONLINE. */
.detektiv .main-shot.is-online::after { content: "ONLINE" }
.detektiv .main-shot.is-online::before { content: "Gyilkos Sztorik" }

/* Kosár: a kihagyott világos elemek DK-ra (kupon-gomb + bizalmi csempék) */
body.detektiv .kos-kupon button { background: var(--red); color: #fff }
body.detektiv .kos-kupon button:hover { background: var(--red2) }
body.detektiv .kos-csempe { background: var(--panel2); border-color: var(--line); color: #c9cacd }
body.detektiv .kos-csempe small { color: var(--muted) }
body.detektiv .kos-csempe .ikon { background: var(--panel); color: var(--red2) }


/* ===== Mobil fix „Kosárba" sáv (MegaBest-mintára, DK-dizájn) ===== */
.detektiv .dk-buybar, .detektiv .dk-buybar-spacer { display: none }
@media (max-width: 720px) {
    .detektiv .dk-buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; gap: 12px; background: #0f1013; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(0, 0, 0, .5); padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom)) }
    .detektiv .dk-buybar-spacer { display: block; height: 76px }
    .detektiv .dbb-info { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0 }
    .detektiv .dbb-info img { width: 46px; height: 46px; object-fit: cover; background: var(--panel2); border: 1px solid var(--line); flex-shrink: 0 }
    .detektiv .dbb-txt { min-width: 0 }
    .detektiv .dbb-txt strong { display: block; font-size: 12.5px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text) }
    .detektiv .dbb-txt span { font-size: 15px; font-weight: 900; color: var(--red2) }
    .detektiv .dbb-btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; border: 0; border-radius: 999px; background: var(--red); color: #fff; font: 800 15px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .05em; padding: 13px 22px; cursor: pointer }
    .detektiv .dbb-btn:active { background: var(--red2) }
}

/* ===== Mobil menü — teljes képernyős „akta" overlay (csak DK) ===== */
.detektiv .menu-btn.burg { background: none; border: 0; padding: 0; width: 38px; height: 38px }
.detektiv .burg span { position: relative; display: block; width: 20px; height: 2px; background: var(--text); transition: .25s; margin: 0 auto }
.detektiv .burg span::before, .detektiv .burg span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .25s }
.detektiv .burg span::before { top: -6px }
.detektiv .burg span::after { top: 6px }
.detektiv.open .burg span { background: transparent }
.detektiv.open .burg span::before { top: 0; transform: rotate(45deg); background: var(--red) }
.detektiv.open .burg span::after { top: 0; transform: rotate(-45deg); background: var(--red) }
@media (max-width: 1020px) { .detektiv .menu-btn.burg { display: grid; place-items: center } }

.detektiv .menu { position: fixed; inset: 0; z-index: 45; background: var(--ink); background-image: radial-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px); background-size: 5px 5px; display: flex; flex-direction: column; padding: 90px 26px calc(26px + env(safe-area-inset-bottom, 0px)); opacity: 0; pointer-events: none; transition: .28s }
.detektiv.open .menu { opacity: 1; pointer-events: auto }
.detektiv.open { overflow: hidden }
.detektiv .mtag { display: flex; align-items: center; gap: 8px; font: 700 10px/1 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 18px }
.detektiv .mtag::before { content: ""; width: 16px; height: 1px; background: var(--red) }
.detektiv .mtag span { margin-left: auto; color: #6f6b67; letter-spacing: .12em }
.detektiv .menu nav.links { flex: 1; display: flex; flex-direction: column }
.detektiv .mlink { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px dashed var(--line); transform: translateY(18px); opacity: 0; transition: .4s cubic-bezier(.2, .8, .3, 1) }
.detektiv.open .mlink { transform: none; opacity: 1 }
.detektiv.open .mlink:nth-child(1) { transition-delay: .05s } .detektiv.open .mlink:nth-child(2) { transition-delay: .1s }
.detektiv.open .mlink:nth-child(3) { transition-delay: .15s } .detektiv.open .mlink:nth-child(4) { transition-delay: .2s }
.detektiv.open .mlink:nth-child(5) { transition-delay: .25s } .detektiv.open .mlink:nth-child(6) { transition-delay: .3s }
.detektiv .mlink .mic { width: 34px; flex: 0 0 auto; display: grid; place-items: center }
.detektiv .mlink .mic svg { width: 28px; height: 28px; fill: var(--red); filter: drop-shadow(0 0 6px rgba(230, 51, 42, .35)) }
.detektiv .mlink .mic svg .st { fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round }
.detektiv .mlink b { font: 800 32px/1 "Barlow Condensed", sans-serif; letter-spacing: .03em; text-transform: uppercase; transition: .15s }
.detektiv .mlink:active b { color: var(--red) }
.detektiv .macts { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 22px 0 14px; transform: translateY(18px); opacity: 0; transition: .4s .3s cubic-bezier(.2, .8, .3, 1) }
.detektiv.open .macts { transform: none; opacity: 1 }
.detektiv .mbtn { text-align: center; font: 700 16px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; text-transform: uppercase; padding: 15px }
.detektiv .mbtn.solid { background: var(--red); color: #fff; clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%) }
.detektiv .mfoot { display: flex; align-items: center; justify-content: space-between; font: 400 9px/1 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .16em; text-transform: uppercase; color: #44413e; transform: translateY(18px); opacity: 0; transition: .4s .35s }
.detektiv.open .mfoot { transform: none; opacity: 1 }
.detektiv .mfoot a { color: #6f6b67 }
.detektiv .kordon { position: fixed; left: 0; right: 0; bottom: 0; z-index: 46; height: 14px; overflow: hidden; opacity: 0; transition: .3s .2s; pointer-events: none; background: repeating-linear-gradient(-45deg, var(--red) 0 16px, var(--ink) 16px 32px) }
.detektiv.open .kordon { opacity: 1 }


/* iOS safe-area: kosár-drawer a notch alatt, alul a home indicator fölött */
.detektiv .drawer { top: env(safe-area-inset-top, 0px) }
.detektiv .dfoot { padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)) }
