/* ============================================================
   felitato.hu — fő stíluslap
   A :root változók, layout és komponensek a Claude Design
   'Felitató Főoldal.html' prototípusból származnak (1:1).
   Az alsó blokk az új aloldalak (lista, termék, kosár) stílusa.
   ============================================================ */

:root {
    /* Anthracite / steel / concrete neutrals */
    --ink: #121417;
    --ink-2: #181B1F;
    --steel: #23272C;
    --steel-line: #2E333A;
    --concrete: #ECECE8;
    --concrete-2: #E2E2DD;
    --paper: #FBFBF9;
    --line: #D7D7D1;
    --line-soft: #E4E4DF;
    --txt: #1A1D21;
    --txt-mut: #5C636B;
    --txt-faint: #8B9098;
    --on-dark: #F2F2EF;
    --on-dark-mut: #9AA1A9;
    --on-dark-faint: #6B727B;
    --line-dark: rgba(255, 255, 255, .10);
    --line-dark-2: rgba(255, 255, 255, .06);
    /* single restrained industrial accent */
    --accent: #E8551F;
    --accent-h: #FF6A30;
    /* product color codes (the product system's own colours) */
    --c-uni: #9097A0;
    /* univerzális — szürke */
    --c-hyd: #2E6FB8;
    /* hidrofób — kék/fehér */
    --c-chem: #F2B705;
    /* kémiai — sárga */
    --maxw: 1280px;
    --pad: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Archivo', system-ui, sans-serif;
    background: var(--concrete);
    color: var(--txt);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.mono {
    font-family: 'IBM Plex Mono', monospace
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--txt-faint);
}

.eyebrow .num {
    color: var(--accent)
}

.eyebrow.on-dark {
    color: var(--on-dark-faint)
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 14px 22px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .12s ease, color .12s ease, border-color .12s ease;
    white-space: nowrap;
}

.btn-arr {
    width: 14px;
    height: 14px;
    flex: none
}

.btn-primary {
    background: var(--accent);
    color: #fff
}

.btn-primary:hover {
    background: var(--accent-h)
}

.btn-ghost {
    background: transparent;
    color: var(--on-dark);
    border-color: var(--line-dark)
}

.btn-ghost:hover {
    border-color: var(--on-dark);
    background: rgba(255, 255, 255, .04)
}

.btn-ghost-dark {
    background: transparent;
    color: var(--txt);
    border-color: var(--line)
}

.btn-ghost-dark:hover {
    border-color: var(--txt);
    background: rgba(0, 0, 0, .03)
}

.btn-lg {
    padding: 17px 28px;
    font-size: 15px
}

/* ============ TOP UTILITY BAR ============ */
.util {
    background: #0C0E10;
    color: var(--on-dark-mut);
    border-bottom: 1px solid var(--line-dark-2)
}

.util .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .04em
}

.util-left {
    display: flex;
    gap: 26px;
    align-items: center
}

.util-left span {
    display: flex;
    align-items: center;
    gap: 7px
}

.util .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    flex: none
}

.util-right {
    display: flex;
    gap: 24px;
    align-items: center
}

.util-right a:hover {
    color: var(--on-dark)
}

@media(max-width:880px) {
    .util-left span.hide-sm {
        display: none
    }
}

/* ============ HEADER / NAV ============ */
header.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--ink);
    color: var(--on-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: padding .2s ease
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px
}

.brand-mark {
    width: 34px;
    height: 34px;
    background: var(--accent);
    position: relative;
    flex: none
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 2px solid #fff;
    border-radius: 50%
}

.brand-mark::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 8px;
    background: #fff;
    transform: translate(-50%, -50%)
}

.brand-name {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.01em;
    line-height: 1
}

.brand-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9.5px;
    letter-spacing: .22em;
    color: var(--on-dark-faint);
    text-transform: uppercase;
    margin-top: 3px
}

nav.main {
    display: flex;
    align-items: center;
    gap: 30px
}

nav.main a {
    font-size: 14px;
    font-weight: 500;
    color: var(--on-dark-mut);
    transition: color .12s;
    position: relative;
    padding: 6px 0
}

nav.main a:hover {
    color: var(--on-dark)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-cta .phone {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--on-dark);
    letter-spacing: .02em
}

@media(max-width:1080px) {
    nav.main {
        display: none
    }
}

@media(max-width:680px) {
    .nav-cta .phone {
        display: none
    }
}

/* ============ HERO ============ */
.hero {
    background: var(--ink);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-dark)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 600px
}

.hero-left {
    padding: 64px var(--pad) 56px;
    max-width: calc(var(--maxw)/2 + 80px);
    margin-left: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px
}

.hero-eyebrow .bar {
    width: 34px;
    height: 1px;
    background: var(--accent)
}

h1.hero-h {
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.02em;
    margin-bottom: 22px
}

h1.hero-h em {
    font-style: normal;
    color: var(--accent)
}

.hero-lead {
    font-size: 17px;
    line-height: 1.55;
    color: var(--on-dark-mut);
    max-width: 480px;
    margin-bottom: 34px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--line-dark);
    padding-top: 24px
}

.hero-stat {
    padding-right: 34px;
    margin-right: 34px;
    border-right: 1px solid var(--line-dark)
}

.hero-stat:last-child {
    border-right: none
}

.hero-stat .v {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1
}

.hero-stat .v small {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent)
}

.hero-stat .k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    margin-top: 8px
}

.hero-right {
    position: relative;
    background: #0A0C0D;
    border-left: 1px solid var(--line-dark);
    overflow: hidden
}

.hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.35) contrast(1.05) brightness(.82)
}

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 20, 23, .85) 0%, rgba(18, 20, 23, .15) 45%, transparent 70%)
}

.hero-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    background: rgba(12, 14, 16, .82);
    backdrop-filter: blur(4px);
    border: 1px solid var(--line-dark);
    padding: 14px 16px;
    max-width: 280px
}

.hero-tag .lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px
}

.hero-tag .txt {
    font-size: 13px;
    color: var(--on-dark);
    line-height: 1.4
}

.hero-spec {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-family: 'IBM Plex Mono', monospace;
    text-align: right
}

.hero-spec span {
    background: rgba(12, 14, 16, .7);
    padding: 5px 9px;
    font-size: 10.5px;
    letter-spacing: .05em;
    color: var(--on-dark-mut)
}

@media(max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-right {
        min-height: 340px
    }

    .hero-left {
        max-width: none;
        margin: 0
    }
}

/* ============ MARQUEE / TRUST STRIP ============ */
.trustbar {
    background: #0C0E10;
    color: var(--on-dark-mut);
    border-bottom: 1px solid var(--line-dark-2)
}

.trustbar .wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 54px;
    overflow: hidden;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase
}

.trustbar span {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--on-dark-faint)
}

.trustbar .tick {
    color: var(--accent)
}

@media(max-width:880px) {
    .trustbar .wrap {
        gap: 26px
    }

    .trustbar span.hide-sm {
        display: none
    }
}

/* ============ SECTION SHELL ============ */
section.block {
    padding: 84px 0
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px
}

.sec-head .l {
    max-width: 640px
}

h2.sec-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.08;
    margin-top: 16px
}

.sec-desc {
    font-size: 15.5px;
    color: var(--txt-mut);
    margin-top: 14px;
    max-width: 560px
}

/* ============ SORBENT TYPES (color-coded) ============ */
.types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.type {
    background: var(--paper);
    padding: 30px 28px 28px;
    position: relative;
    transition: background .14s ease
}

.type:hover {
    background: #fff
}

.type-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.type-swatch {
    width: 46px;
    height: 46px;
    flex: none;
    position: relative;
    border: 1px solid var(--line)
}

.type-idx {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--txt-faint)
}

.type h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 6px
}

.type .code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.type p {
    font-size: 14px;
    color: var(--txt-mut);
    line-height: 1.5;
    margin-bottom: 20px
}

.type ul {
    list-style: none;
    margin-bottom: 24px
}

.type ul li {
    font-size: 13px;
    color: var(--txt);
    padding: 7px 0;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    gap: 10px
}

.type ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: none;
    background: var(--accent)
}

.type .more {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--txt)
}

.type .more svg {
    width: 13px;
    height: 13px;
    transition: transform .14s
}

.type:hover .more svg {
    transform: translateX(4px)
}

@media(max-width:880px) {
    .types {
        grid-template-columns: 1fr
    }
}

/* ============ CATALOG (form factors, filterable) ============ */
.catalog {
    background: var(--concrete-2);
    border-top: 1px solid var(--line)
}

.filterbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.filterbar .flbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--txt-faint);
    margin-right: 8px
}

.chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .03em;
    padding: 9px 15px;
    border: 1px solid var(--line);
    background: var(--paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .12s ease;
    color: var(--txt-mut)
}

.chip:hover {
    border-color: var(--txt-faint);
    color: var(--txt)
}

.chip.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.chip .sw {
    width: 9px;
    height: 9px;
    flex: none
}

.grid-prod {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.pcard {
    background: var(--paper);
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: background .14s, transform .14s;
    min-height: 230px
}

.pcard:hover {
    background: #fff
}

.pcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px
}

.pcard .sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .06em;
    color: var(--txt-faint)
}

.pcard .tags {
    display: flex;
    gap: 4px
}

.pcard .tags i {
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid rgba(0, 0, 0, .12)
}

.pcard h4 {
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.18;
    margin-bottom: 8px
}

.pcard .pdesc {
    font-size: 13px;
    color: var(--txt-mut);
    line-height: 1.45;
    margin-bottom: auto
}

.pcard .pfoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft)
}

.pcard .pfoot .lk {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px
}

.pcard .pfoot .lk svg {
    width: 12px;
    height: 12px;
    transition: transform .14s
}

.pcard:hover .pfoot .lk svg {
    transform: translateX(3px)
}

.pcard .avail {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--txt-faint)
}

.pcard.dim {
    opacity: .32;
    filter: grayscale(.4)
}

@media(max-width:1080px) {
    .grid-prod {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .grid-prod {
        grid-template-columns: 1fr
    }
}

/* ============ FEATURED ============ */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1px;        /* oszlopok közt marad a hairline (a design része) */
    row-gap: 22px           /* a sorok közé valódi térköz */
}

.fcard {
    background: var(--paper);
    box-shadow: 0 0 0 1px var(--line);  /* keret layout-eltolás nélkül; 1px gap-ben egybeesik a szomszéddal */
    display: flex;
    flex-direction: column;
    transition: background .14s
}

.fcard:hover {
    background: #fff
}

.fcard .img {
    aspect-ratio: 1/1;
    background: var(--concrete);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--line-soft)
}

.fcard .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform .3s ease
}

.fcard:hover .img img {
    transform: scale(1.03)
}

.fcard .img .cc {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%
}

.fcard .body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.fcard .sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--txt-faint);
    margin-bottom: 8px
}

.fcard h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: auto
}

.fcard .price {
    margin-top: 16px
}

.fcard .price .net {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em
}

.fcard .price .gross {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--txt-faint);
    margin-top: 2px
}

.fcard .fbtn {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.fcard .fbtn-add {
    width: 100%;
    justify-content: center
}

.fcard .fbtn .q-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .02em;
    color: var(--txt-mut);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color .12s
}

.fcard .fbtn .q-link:hover {
    color: var(--accent)
}

@media(max-width:1080px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .feat-grid {
        grid-template-columns: 1fr
    }
}

/* ============ APPLICATIONS (dark full bleed) ============ */
.apps {
    background: var(--ink);
    color: var(--on-dark);
    border-top: 1px solid var(--line-dark)
}

.apps .sec-head h2.sec-title {
    color: var(--on-dark)
}

.apps .sec-desc {
    color: var(--on-dark-mut)
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark)
}

.app {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0A0C0D
}

.app img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.4) brightness(.7) contrast(1.05);
    transition: transform .4s ease, filter .4s ease
}

.app:hover img {
    transform: scale(1.04);
    filter: grayscale(.15) brightness(.78)
}

.app::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 13, .92), rgba(10, 12, 13, .1) 55%, transparent)
}

.app .meta {
    position: absolute;
    left: 24px;
    bottom: 22px;
    right: 24px;
    z-index: 2
}

.app .meta .idx {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .14em;
    color: var(--accent);
    margin-bottom: 8px
}

.app .meta h4 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 6px
}

.app .meta p {
    font-size: 13.5px;
    color: var(--on-dark-mut);
    max-width: 380px
}

@media(max-width:760px) {
    .app-grid {
        grid-template-columns: 1fr
    }
}

/* ============ COLOR CODE EXPLAINER ============ */
.colorsys {
    background: var(--paper);
    border-top: 1px solid var(--line)
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 8px
}

.cs {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.cs .bar {
    width: 4px;
    align-self: stretch;
    flex: none;
    min-height: 80px
}

.cs h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cs h4 .hex {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--txt-faint);
    font-weight: 400
}

.cs p {
    font-size: 13.5px;
    color: var(--txt-mut);
    line-height: 1.5
}

@media(max-width:760px) {
    .cs-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .cs {
        padding: 20px 0;
        border-top: 1px solid var(--line-soft)
    }
}

/* ============ TRUST / WHY ============ */
.why {
    background: var(--concrete-2);
    border-top: 1px solid var(--line)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.why-cell {
    background: var(--paper);
    padding: 30px 26px
}

.why-cell .ic {
    width: 30px;
    height: 30px;
    margin-bottom: 18px;
    color: var(--accent)
}

.why-cell .ic svg {
    width: 100%;
    height: 100%
}

.why-cell .num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--txt-faint);
    margin-bottom: 14px
}

.why-cell h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.why-cell p {
    font-size: 13.5px;
    color: var(--txt-mut);
    line-height: 1.5
}

@media(max-width:880px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}

/* ============ QUOTE CTA ============ */
.cta {
    background: var(--ink);
    color: var(--on-dark);
    position: relative;
    overflow: hidden
}

.cta::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    border: 1px solid var(--line-dark);
    border-radius: 50%
}

.cta::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--line-dark);
    border-radius: 50%
}

.cta .wrap {
    position: relative;
    z-index: 2;
    padding: 78px 40px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center
}

.cta h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.08
}

.cta h2 em {
    font-style: normal;
    color: var(--accent)
}

.cta p {
    font-size: 16px;
    color: var(--on-dark-mut);
    margin-top: 18px;
    max-width: 540px
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cta-actions .btn {
    justify-content: center
}

.cta-note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--on-dark-faint);
    text-align: center;
    margin-top: 4px
}

@media(max-width:820px) {
    .cta .wrap {
        grid-template-columns: 1fr;
        padding: 56px 24px
    }
}

/* ============ FOOTER ============ */
footer {
    background: #0A0C0D;
    color: var(--on-dark-mut);
    border-top: 1px solid var(--line-dark)
}

.foot-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 0 48px
}

.foot-brand .brand {
    margin-bottom: 18px
}

.foot-brand p {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 300px;
    color: var(--on-dark-faint)
}

.foot-contact {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--on-dark)
}

.foot-contact span {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--on-dark-mut)
}

.foot-col h5 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-dark);
    margin-bottom: 18px
}

.foot-col a {
    display: block;
    font-size: 13.5px;
    padding: 6px 0;
    color: var(--on-dark-mut);
    transition: color .12s
}

.foot-col a:hover {
    color: var(--accent)
}

/* Online elállás — kiemelt narancs gomb a footerben (jogszabályi, jól látható) */
.foot-col a.foot-elallas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 13px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .01em;
    border: 1px solid var(--accent);
    transition: background .12s, border-color .12s
}
.foot-col a.foot-elallas::before {
    content: "↩";
    font-size: 16px;
    line-height: 1
}
.foot-col a.foot-elallas:hover {
    background: var(--accent-h);
    border-color: var(--accent-h);
    color: #fff
}

.foot-bottom {
    border-top: 1px solid var(--line-dark);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    color: var(--on-dark-faint);
    letter-spacing: .03em
}

.foot-bottom .links {
    display: flex;
    gap: 22px
}

.foot-bottom a:hover {
    color: var(--on-dark-mut)
}

@media(max-width:880px) {
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

@media(max-width:480px) {
    .foot-top {
        grid-template-columns: 1fr
    }
}

/* ============ QUOTE DRAWER ============ */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 12, .6);
    backdrop-filter: blur(2px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s, visibility .18s
}

.scrim.open {
    opacity: 1;
    visibility: visible
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 440px;
    max-width: 92vw;
    background: var(--paper);
    z-index: 100;
    transform: translateX(100%);
    transition: transform .22s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .3)
}

.drawer.open {
    transform: translateX(0)
}

.drawer-head {
    padding: 24px 26px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--ink);
    color: var(--on-dark)
}

.drawer-head .eyebrow {
    color: var(--on-dark-faint)
}

.drawer-head h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-top: 10px
}

.drawer-close {
    background: none;
    border: 1px solid var(--line-dark);
    color: var(--on-dark);
    width: 34px;
    height: 34px;
    cursor: pointer;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s
}

.drawer-close:hover {
    background: rgba(255, 255, 255, .08)
}

.drawer-body {
    padding: 26px;
    overflow-y: auto;
    flex: 1
}

.drawer-prod {
    background: var(--concrete);
    border: 1px solid var(--line);
    padding: 14px 16px;
    margin-bottom: 24px;
    display: none;
    align-items: center;
    gap: 13px
}

.drawer-prod.show {
    display: flex
}

.drawer-prod .pc {
    width: 8px;
    align-self: stretch;
    flex: none
}

.drawer-prod .dp-sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--txt-faint)
}

.drawer-prod .dp-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 3px
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--txt-mut);
    margin-bottom: 8px
}

.field input,
.field textarea {
    width: 100%;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--txt);
    outline: none;
    transition: border-color .12s
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent)
}

.field textarea {
    resize: vertical;
    min-height: 88px
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.drawer-foot {
    padding: 20px 26px;
    border-top: 1px solid var(--line);
    background: var(--concrete)
}

.drawer-foot .btn {
    width: 100%;
    justify-content: center
}

.drawer-foot .note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--txt-faint);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5
}

.drawer-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 30px;
    gap: 16px
}

.drawer-success.show {
    display: flex
}

.drawer-success .ok {
    width: 54px;
    height: 54px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center
}

.drawer-success .ok svg {
    width: 26px;
    height: 26px;
    color: #fff
}

.drawer-success h3 {
    font-size: 21px;
    font-weight: 700
}

.drawer-success p {
    font-size: 14px;
    color: var(--txt-mut);
    max-width: 280px
}

/* ---------- image fallback placeholder ---------- */
.ph {
    position: relative;
    background:
        repeating-linear-gradient(135deg, #1c1f23 0 14px, #181b1f 14px 28px)
}

.ph.light {
    background:
        repeating-linear-gradient(135deg, #e4e4df 0 14px, #dcdcd6 14px 28px)
}

.ph .ph-lbl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--on-dark-faint);
    white-space: nowrap;
    text-align: center;
    padding: 6px 12px;
    border: 1px solid var(--line-dark)
}

.ph.light .ph-lbl {
    color: var(--txt-faint);
    border-color: var(--line)
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important
    }
}

/* ============================================================
   ALOLDALAK — terméklista, termékoldal, kosár, köszönő
   (a design nyelvén: antracit fej, beton törzs, narancs akcent)
   ============================================================ */

/* ---- generikus oldalfej (sub-hero) ---- */
.pagehead {
    background: var(--ink);
    color: var(--on-dark);
    border-bottom: 1px solid var(--line-dark)
}

.pagehead .wrap {
    padding: 48px var(--pad) 44px
}

.pagehead h1 {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-top: 14px
}

.pagehead p {
    color: var(--on-dark-mut);
    font-size: 15.5px;
    margin-top: 12px;
    max-width: 560px
}

.crumbs {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .04em;
    color: var(--on-dark-faint);
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.crumbs a:hover {
    color: var(--on-dark)
}

.crumbs .sep {
    color: var(--accent)
}

/* ---- main shell a beton törzshöz ---- */
main.body {
    background: var(--concrete);
    min-height: 50vh
}

main.body .wrap {
    padding-top: 48px;
    padding-bottom: 84px
}

/* ---- terméklista rács (valós termékek) ---- */
.plist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1px;        /* oszlopok közt marad a hairline (a design része) */
    row-gap: 22px           /* a sorok közé valódi térköz */
}

.plist .pitem {
    background: var(--paper);
    box-shadow: 0 0 0 1px var(--line);  /* keret layout-eltolás nélkül; 1px gap-ben egybeesik a szomszéddal */
    display: flex;
    flex-direction: column;
    transition: background .14s
}

.plist .pitem:hover {
    background: #fff
}

.plist .pitem .img {
    aspect-ratio: 1/1;
    background: var(--concrete);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft)
}

.plist .pitem .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform .3s
}

.plist .pitem:hover .img img {
    transform: scale(1.03)
}

.plist .pitem .img .cc {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%
}

.plist .pitem .body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.plist .pitem .sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--txt-faint);
    margin-bottom: 7px
}

.plist .pitem h3 {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: auto
}

.plist .pitem .price {
    margin-top: 14px
}

.plist .pitem .price .net {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em
}

.plist .pitem .price .net small {
    font-size: 11px;
    font-weight: 500;
    color: var(--txt-faint)
}

.plist .pitem .price .gross {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--txt-faint);
    margin-top: 2px
}

.plist .pitem .acts {
    margin-top: 14px;
    display: flex;
    gap: 8px
}

.plist .pitem .acts a,
.plist .pitem .acts button {
    flex: 1;
    justify-content: center;
    font-size: 12.5px;
    padding: 11px 10px
}

.plist-empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--txt-mut);
    font-size: 15px;
    background: var(--paper);
    border: 1px solid var(--line)
}

@media(max-width:1080px) {
    .plist {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .plist {
        grid-template-columns: 1fr
    }
}

/* ---- termékoldal ---- */
.pdp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.pdp .gallery {
    background: var(--paper);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 380px
}

.pdp .gallery .cc {
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%
}

.pdp .gallery img {
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
    mix-blend-mode: multiply
}

.pdp .info {
    background: var(--paper);
    padding: 34px 36px
}

.pdp .info .sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--txt-faint)
}

.pdp .info h1 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 8px 0 6px
}

.pdp .matbadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--txt-mut);
    margin-bottom: 18px
}

.pdp .matbadge i {
    width: 11px;
    height: 11px;
    display: block
}

.pdp .lead {
    font-size: 14.5px;
    color: var(--txt-mut);
    line-height: 1.65;
    margin-bottom: 24px
}

.spectable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 26px;
    font-size: 13.5px
}

.spectable tr {
    border-top: 1px solid var(--line-soft)
}

.spectable tr:last-child {
    border-bottom: 1px solid var(--line-soft)
}

.spectable th {
    text-align: left;
    font-weight: 500;
    color: var(--txt-mut);
    padding: 9px 14px 9px 0;
    width: 42%;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .03em;
    vertical-align: top
}

.spectable td {
    padding: 9px 0;
    color: var(--txt)
}

.pdp .pricebox {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-bottom: 22px
}

.pdp .pricebox .net {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em
}

.pdp .pricebox .net small {
    font-size: 13px;
    font-weight: 500;
    color: var(--txt-faint)
}

.pdp .pricebox .gross {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    color: var(--txt-faint);
    margin-top: 4px
}

.pdp .buy {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap
}

.qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    background: #fff
}

.qty button {
    width: 42px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--txt-mut)
}

.qty button:hover {
    color: var(--accent)
}

.qty input {
    width: 52px;
    height: 48px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px
}

.pdp .longdesc {
    margin-top: 34px
}

.pdp .longdesc h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px
}

.pdp .longdesc p {
    font-size: 14px;
    color: var(--txt-mut);
    line-height: 1.7
}

@media(max-width:820px) {
    .pdp {
        grid-template-columns: 1fr
    }

    .pdp .gallery {
        min-height: 280px;
        padding: 24px
    }
}

/* ---- kosár ---- */
.cart-wrap {
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.cart-lines {
    background: var(--paper)
}

.cart-line {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line-soft)
}

.cart-line:last-child {
    border-bottom: none
}

.cart-line .thumb {
    width: 64px;
    height: 64px;
    flex: none;
    background: var(--concrete);
    position: relative;
    overflow: hidden
}

.cart-line .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply
}

.cart-line .thumb .cc {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%
}

.cart-line .cl-main {
    flex: 1;
    min-width: 0
}

.cart-line .cl-sku {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--txt-faint)
}

.cart-line .cl-name {
    font-size: 14.5px;
    font-weight: 600;
    margin-top: 2px
}

.cart-line .cl-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--txt-mut);
    margin-top: 3px
}

.cart-line .cl-qty {
    flex: none
}

.cart-line .cl-sum {
    width: 110px;
    text-align: right;
    font-weight: 700;
    flex: none
}

.cart-line .cl-del {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--txt-faint);
    padding: 6px;
    flex: none
}

.cart-line .cl-del:hover {
    color: var(--accent)
}

.cart-side {
    background: var(--paper);
    padding: 26px
}

.cart-side h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px
}

.cart-side .row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 7px 0;
    color: var(--txt-mut)
}

.cart-side .row.total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 14px;
    font-size: 18px;
    font-weight: 800;
    color: var(--txt)
}

.ship-box {
    border-left: 3px solid var(--accent);
    background: var(--concrete);
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 13px
}

.ship-box .sm {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--txt-faint);
    margin-bottom: 5px
}

.ship-box .sl {
    font-weight: 600;
    color: var(--txt)
}

.ship-box .sn {
    color: var(--txt-mut);
    margin-top: 4px;
    line-height: 1.5
}

.cart-side .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px
}

.cart-empty {
    padding: 70px 20px;
    text-align: center;
    background: var(--paper);
    border: 1px solid var(--line)
}

.cart-empty p {
    color: var(--txt-mut);
    margin-bottom: 22px;
    font-size: 15px
}

@media(max-width:820px) {
    .cart-wrap {
        grid-template-columns: 1fr
    }
}

/* ---- beküldési form oldal ---- */
.formcard {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 30px 32px;
    max-width: 680px
}

.formcard .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.formcard .full {
    width: 100%;
    justify-content: center;
    margin-top: 8px
}

@media(max-width:560px) {
    .formcard .field-row {
        grid-template-columns: 1fr
    }
}

/* két oszlopos beküldő űrlap (desktop) — mobilon/átméretezve 1 oszlop */
@media(min-width:880px) {
    .formcard-2 {
        max-width: none
    }
    .formcard-2 .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 38px;
        align-items: start
    }
    /* a szűkebb oszlopban az Átvétel/Fizetés egymás alá kerül */
    .formcard-2 .form-grid #order-options {
        grid-template-columns: 1fr;
        gap: 0
    }
    /* mindkét oszlop első szekciócíme felül zárjon rendesen */
    .formcard-2 .fc-col > .form-sec:first-child {
        margin-top: 4px;
        padding-top: 0;
        border-top: 0
    }
}

/* jogi nyilatkozat + kötelező checkbox */
.terms {
    margin-top: 22px;
    text-align: left            /* desktop: balra */
}
.terms-text {
    font-size: 12.5px;
    color: var(--txt-mut);
    line-height: 1.55;
    margin: 0 0 10px
}
.terms-text a {
    color: var(--accent);
    text-decoration: underline
}
.terms .terms-check {
    display: inline-flex;
    margin-top: 0
}
.terms .req {
    color: var(--accent)
}
@media(max-width:620px) {
    .terms {
        text-align: center
    }
    .terms .terms-check {
        justify-content: center;
        text-align: left
    }
}

/* beküldő gombsor + jogi megjegyzés */
.order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
    justify-content: flex-end   /* desktop: jobbra */
}
.order-note {
    font-size: 11px;
    color: var(--txt-faint);
    margin-top: 14px;
    text-align: left            /* desktop: balra */
}
@media(max-width:620px) {
    .order-actions {
        justify-content: center /* mobil: középre */
    }
    .order-note {
        text-align: center      /* mobil: középre */
    }
}

/* ---- köszönő ---- */
.thanks {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 64px 40px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto
}

.thanks .ok {
    width: 60px;
    height: 60px;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px
}

.thanks .ok svg {
    width: 30px;
    height: 30px;
    color: #fff
}

.thanks h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 12px
}

.thanks .ref {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 16px
}

.thanks p {
    color: var(--txt-mut);
    font-size: 15px;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 26px
}

/* ---- form üzenetek ---- */
.flash {
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 14px;
    border-left: 3px solid var(--accent);
    background: var(--accent-tint, rgba(232, 85, 31, .08))
}

.flash.err {
    border-color: #c0392b;
    background: rgba(192, 57, 43, .08);
    color: #7a241b
}

.flash.ok {
    border-color: #2e7d32;
    background: rgba(46, 125, 50, .09);
    color: #1f5d23
}

.errlist {
    color: #c0392b;
    font-size: 13px;
    margin: 6px 0 0;
    padding-left: 18px
}

/* ---- honeypot (rejtett) ---- */
.hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden
}

/* ---- mobil nav toggle ---- */
.nav-burger {
    display: none;
    background: none;
    border: 1px solid var(--line-dark);
    color: var(--on-dark);
    width: 42px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.nav-burger svg {
    width: 20px;
    height: 20px
}

@media(max-width:1080px) {
    .nav-burger {
        display: inline-flex
    }

    nav.main.open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--ink);
        border-bottom: 1px solid var(--line-dark);
        padding: 8px 0;
        z-index: 59
    }

    nav.main.open a {
        padding: 17px var(--pad);
        font-size: 16.5px;
        border-top: 1px solid var(--line-dark-2)
    }
}

/* mini cart jelző a navban */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--on-dark-mut);
    font-size: 14px
}

.cart-link:hover {
    color: var(--on-dark)
}

.cart-link .badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    background: var(--accent);
    color: #fff;
    min-width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px
}

.cart-link .badge.zero {
    display: none
}

/* ---- tartalmi (jogi) oldalak ---- */
.prose {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 38px 42px;
    max-width: 820px
}

.prose h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin: 28px 0 10px
}

.prose h2:first-child {
    margin-top: 0
}

.prose p {
    font-size: 14.5px;
    color: var(--txt-mut);
    line-height: 1.7;
    margin-bottom: 12px
}

.prose .kv {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 18px;
    font-size: 14px
}

.prose .kv th {
    text-align: left;
    font-weight: 500;
    color: var(--txt-mut);
    padding: 8px 16px 8px 0;
    width: 34%;
    vertical-align: top;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .02em
}

.prose .kv td {
    padding: 8px 0;
    color: var(--txt);
    border-top: 1px solid var(--line-soft)
}

.prose .kv tr:first-child th,
.prose .kv tr:first-child td {
    border-top: none
}

.prose .note {
    border-left: 3px solid var(--accent);
    background: rgba(232, 85, 31, .06);
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--txt-mut);
    margin: 16px 0
}

.prose a {
    color: var(--accent)
}

/* a prose-on belüli gombok tartsák meg a saját szövegszínüket (ne a link-narancsot) */
.prose a.btn-primary {
    color: #fff
}

.prose a.btn-ghost-dark {
    color: var(--txt)
}

.prose a.btn-ghost {
    color: var(--on-dark)
}

.prose strong {
    color: var(--txt);
    font-weight: 600
}

/* hosszú jogi szöveg: alcímek, listák, definíciós táblák */
.prose h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--txt);
    margin: 22px 0 8px
}
.prose h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--txt);
    margin: 18px 0 6px
}
.prose ul,
.prose ol {
    margin: 4px 0 16px;
    padding-left: 22px
}
.prose li {
    font-size: 14.5px;
    color: var(--txt-mut);
    line-height: 1.65;
    margin-bottom: 6px
}
.prose .lead {
    font-size: 13px;
    color: var(--txt-faint);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .02em;
    margin-bottom: 22px
}
.prose hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 30px 0
}
.prose .doc-date {
    margin-top: 26px;
    font-size: 13px;
    color: var(--txt-faint)
}

/* dokumentum letöltés / nyomtatás gomb */
.doc-actions {
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* ============================================================
   NYOMTATÁS / PDF (ÁSZF, Adatkezelési tájékoztató)
   ============================================================ */
@media print {
    .util,
    header.nav,
    .cta,
    footer,
    .cookie-banner,
    .scrim,
    .drawer,
    .oldintro,
    .no-print,
    .pagehead .crumbs {
        display: none !important
    }
    body,
    body.intro-on {
        background: #fff !important
    }
    .body {
        padding: 0 !important
    }
    .wrap {
        max-width: none !important;
        padding: 0 !important
    }
    .pagehead {
        padding: 0 0 10px !important;
        background: #fff !important
    }
    .pagehead h1 {
        color: #000 !important;
        font-size: 22px
    }
    .prose {
        border: 0 !important;
        box-shadow: none !important;
        max-width: none !important;
        padding: 0 !important;
        background: #fff !important
    }
    .prose,
    .prose p,
    .prose li,
    .prose td,
    .prose th,
    .prose h2,
    .prose h3,
    .prose h4 {
        color: #000 !important
    }
    .prose a {
        color: #000 !important;
        text-decoration: underline
    }
    .prose .note {
        background: transparent !important;
        border-left: 2px solid #000 !important;
        color: #000 !important
    }
    .prose .lead,
    .prose .doc-date {
        color: #333 !important
    }
}

/* ============================================================
   SÜTI-BANNER (cookie consent)
   ============================================================ */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    color: var(--on-dark);
    box-shadow: 0 -6px 28px rgba(0, 0, 0, .28);
    animation: cookieUp .28s ease
}
@keyframes cookieUp {
    from { transform: translateY(100%) }
    to   { transform: translateY(0) }
}
.cookie-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 26px
}
.cookie-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--on-dark);
    margin: 0;
    flex: 1
}
.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex: none
}
.cookie-actions .btn {
    padding: 12px 20px;
    font-size: 13.5px
}
@media(max-width:720px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 18px
    }
    .cookie-actions {
        flex-direction: column-reverse
    }
    .cookie-actions .btn {
        width: 100%;
        justify-content: center
    }
}

/* ============================================================
   IDEIGLENES — "régi oldal" curtain reveal a főoldalon
   (INTRO_ENABLED; 1-2 hónap után kikapcsolható / törölhető)
   ============================================================ */
body.intro-on {
    background: #15171a;
}

/* a réteg mögött sötét, ne villanjon a beton */

.oldintro {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.oldintro-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: saturate(.92) contrast(1.02);
    transform: scale(1.02);
}

/* sötétítő fátyol — hogy "régi/háttér" érzetet adjon és a felirat olvasható legyen */
.oldintro-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 14, 16, .12) 0%, rgba(12, 14, 16, .12) 45%,
            rgba(12, 14, 16, .30) 78%, rgba(12, 14, 16, .50) 100%);
}

/* felhívás a görgetésre (kattintható is) */
.oldintro-hint {
    position: absolute;
    left: 50%;
    top: 34vh;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    padding: 10px 18px;
    width: min(92vw, 560px);
}

.oldintro-hint .oi-badge {
    font-size: 11px;
    letter-spacing: .22em;
    color: #fff;
    background: var(--accent);
    padding: 6px 12px;
}

.oldintro-hint .oi-text {
    font-size: clamp(16px, 2.4vw, 21px);
    font-weight: 600;
    line-height: 1.45;
    /* sokkal hangsúlyosabb, rétegzett árnyék az olvashatóságért */
    text-shadow: 0 1px 2px rgba(0, 0, 0, .95), 0 3px 12px rgba(0, 0, 0, .9), 0 0 36px rgba(0, 0, 0, .7);
}

.oldintro-hint .oi-text strong {
    color: var(--accent-h);
    font-weight: 700;
}

/* nagy, valódi gomb — mint a menüben az "Árajánlatot kérek", csak nagyobb */
.oldintro-hint .oi-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 18px 34px;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    transition: background .12s ease, transform .08s ease;
}

.oldintro-hint:hover .oi-cta {
    background: var(--accent-h);
    border-color: var(--accent-h);
}

.oldintro-hint:active .oi-cta {
    transform: translateY(1px);
}

.oldintro-hint .oi-cta-arr {
    animation: oi-bounce 1.6s ease-in-out infinite;
}

@keyframes oi-bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

/* a teljes új oldal a régi fölé gördül */
.intro-on .pagewrap {
    position: relative;
    z-index: 1;
    margin-top: 70vh;
    background: var(--concrete);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -26px 70px rgba(0, 0, 0, .55);
}

/* a felirat eltűnik, amint elkezdesz görgetni */
body.intro-scrolled .oldintro-hint {
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.oldintro-hint {
    transition: opacity .35s ease;
}

@media(max-width:760px) {
    .intro-on .pagewrap {
        margin-top: 46vh;
    }

    .oldintro-hint {
        top: 24vh;
    }
}

@media(prefers-reduced-motion:reduce) {
    .oldintro-hint .oi-cta-arr {
        animation: none;
    }
}
/* termékoldali "Információk" jogi blokk — a linkek legyenek akcent színűek */
.pdp-legal a { color: var(--accent); }
.pdp-legal p { margin-bottom: 12px; }

/* ============================================================
   MOBIL kártya-elválasztás (≤600px)
   Desktopon a gap:1px + sötét háttér ad hajszál-rácsot (változatlan).
   Mobilon viszont egy oszlopban összeérnek a kártyák — ezért itt
   külön, keretes dobozokká alakítjuk őket valódi térközzel.
   Érintett rácsok: anyagtípus (.types), katalógus (.grid-prod),
   kiemelt (.feat-grid), terméklista (.plist).
   ============================================================ */
@media (max-width: 600px) {
  .types,
  .grid-prod,
  .feat-grid,
  .plist {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;   /* nincs többé a rács "vonal-háttere" */
    border: 0;
  }
  .types > .type,
  .grid-prod > .pcard,
  .feat-grid > .fcard,
  .plist > .pitem {
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  }
}

/* ============================================================
   MOBIL layout-javítás (a curtain reveal után jelentkező kilógás)
   - vízszintes túlcsordulás megakadályozása (clip: nem töri a sticky navot)
   - felső utility sor elrejtése (mobilon felesleges)
   - kisebb oldalmargó, hogy ne lógjanak ki elemek
   - a nav különálló CTA gombja helyett a hamburger menü "Árajánlatot kérek"-je
   ============================================================ */
body { overflow-x: clip; }                 /* nincs oldalirányú elcsúszás (clip nem töri a sticky navot) */

/* a hamburger menü árajánlat-tétele (desktopon rejtve, csak a nyitott mobilmenüben) */
.nav-quote { display: none; }
@media (max-width: 1080px) {
  nav.main.open .nav-quote { display: block; color: var(--accent); font-weight: 700; }
}

@media (max-width: 768px) {
  :root { --pad: 18px; }                  /* kisebb oldalmargó mobilon */
  .util { display: none; }                /* felső utility sor elrejtése */
}

@media (max-width: 600px) {
  .nav .wrap { height: 60px; }
  nav.main.open { top: 60px; }               /* a lenyíló menü a rövidebb navhoz igazodik */
  .nav-cta { gap: 10px; }
  .nav-cta .btn-primary { display: none; }  /* a CTA a hamburger menüben érhető el */
  /* hero statok ne lógjanak ki: tördelés, elválasztó vonalak nélkül */
  .hero-stats { flex-wrap: wrap; gap: 16px 22px; }
  .hero-stat { padding-right: 0; margin-right: 0; border-right: none; }
}

/* ============================================================
   Bruttó ár — olvashatóbb betű (a mono pontozott nullája nehezen olvasható)
   Csak a bruttó (.gross) vált Archivo-ra, nagyobb/vastagabb; minden más marad mono.
   ============================================================ */
.fcard .price .gross,
.plist .pitem .price .gross,
.pdp .pricebox .gross {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.fcard .price .gross,
.plist .pitem .price .gross { font-size: 12.5px; }
.pdp .pricebox .gross { font-size: 14px; }

/* megrendelő űrlap: átvétel/fizetés választók */
.formcard .opt { display: flex; align-items: flex-start; gap: 9px; font-size: 14px;
  color: var(--txt); margin-top: 9px; font-weight: 400; cursor: pointer; line-height: 1.4;
  /* normál, olvasható felirat — NE örökölje a mezőcímek mono/uppercase/betűköz stílusát */
  font-family: 'Archivo', system-ui, sans-serif; text-transform: none; letter-spacing: normal; }
.formcard .opt input { margin-top: 2px; flex: none; width: 16px; height: 16px; }
/* a pipa szövegében a hivatkozások jól látható, aláhúzott linkek legyenek */
.formcard .opt a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.formcard .opt a:hover { color: var(--accent-h); }
.formcard .opt-hint { font-size: 12px; color: var(--txt-mut); margin-top: 9px; line-height: 1.5; }

/* megrendelő űrlap szekció-címek */
.formcard .form-sec { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--txt-faint); margin: 22px 0 12px; padding-top: 16px;
  border-top: 1px solid var(--line-soft); }
.formcard .form-sec:first-of-type { margin-top: 4px; }
