/* ============================================================
   Szerszámolcsón.hu – index.css
   Főoldal specifikus stílusok
   Betöltés: base.css + header.css + footer.css után
   ============================================================ */

/* ============================================================
   HERO SZEKCIÓ
   ============================================================ */
.hero {
    background: #1e1c18;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .hero { background: #0e0f11; }

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184,125,30,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,125,30,.07) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(184,125,30,.14) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.hero-body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 52px var(--page-pad) 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}

.hero-ey-line {
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-ey-text {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Főcím */
.hero-title {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(30px, 4.5vw, 62px);
    line-height: .93;
    letter-spacing: -.5px;
    text-transform: uppercase;
    color: #f4f2ee;
    margin-bottom: 10px;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
}

/* Alcím */
.hero-sub {
    font-size: 14px;
    font-weight: 300;
    color: rgba(244,242,238,.55);
    margin-bottom: 26px;
    max-width: 520px;
    line-height: 1.65;
}

/* ============================================================
   HERO KERESŐSÁV
   ============================================================ */
.hero-search-wrap {
    width: 100%;
    max-width: 700px;
    position: relative;
    margin-bottom: 14px;
}

.hero-search {
    width: 100%;
    background: #fff;
    border-radius: var(--r-xl);
    border: 2.5px solid transparent;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    height: 58px;
}

[data-theme="dark"] .hero-search {
    background: var(--surface-2);
    border-color: var(--border);
}

.hero-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(0,0,0,.25), 0 0 0 4px rgba(var(--gold-rgb),.14);
}

/* Kategória gomb a hero keresőben */
.hero-search .search-cat-btn {
    padding: 0 14px 0 18px;
    border-right: 1px solid #e5e3de;
    height: 100%;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--fd);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    cursor: pointer;
    transition: var(--t);
}

[data-theme="dark"] .hero-search .search-cat-btn {
    border-color: var(--border);
    color: var(--text-3);
}

.hero-search .search-cat-btn:hover { color: var(--gold); }

/* Hero keresőmező */
.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 16px;
    color: #1a1814;
    background: transparent;
    min-width: 0;
}
[data-theme="dark"] .hero-search-input { color: var(--text); }
.hero-search-input::placeholder { color: #aaa; }
[data-theme="dark"] .hero-search-input::placeholder { color: var(--text-4); }

/* Hero keresés gomb */
.hero-search-btn {
    background: var(--gold);
    border: none;
    cursor: pointer;
    padding: 0 26px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    flex-shrink: 0;
    transition: var(--t);
    white-space: nowrap;
}
[data-theme="dark"] .hero-search-btn { color: #000; }
.hero-search-btn:hover { background: var(--gold-h); }

/* Kategória legördülő a hero keresőnél */
.hero-search-cat-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    z-index: 400;
    padding: 7px;
    max-height: 340px;
    overflow-y: auto;
}

/* Autocomplete a hero keresőnél */
.hero-autocomplete {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    z-index: 399;
    max-height: 400px;
    overflow-y: auto;
}

/* Népszerű tagek */
.hero-tags {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

.hero-tag-lbl {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(244,242,238,.38);
    flex-shrink: 0;
}

.hero-tag {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(244,242,238,.68);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
}

.hero-tag:hover {
    background: var(--gold-dim2);
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   HERO SLIDER (kiemelt termékek)
   ============================================================ */
.hero-slider-wrap {
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-pad);
    margin-bottom: 12px;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.hero-slider-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(244,242,238,.6);
}

.slider-navs {
    display: flex;
    gap: 6px;
}

.snav {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,242,238,.6);
    cursor: pointer;
    transition: var(--t);
}

.snav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
[data-theme="dark"] .snav:hover { color: #000; }

/* Slider konténer */
.hero-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--page-pad) 20px;
    scroll-behavior: smooth;
    max-width: 100%;
}

.hero-slider::-webkit-scrollbar { display: none; }

/* Hero termék kártyák */
.hero-pcard {
    flex: 0 0 190px;
    scroll-snap-align: start;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--t);
    backdrop-filter: blur(6px);
    text-decoration: none;
    display: block;
}

[data-theme="dark"] .hero-pcard {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.07);
}

.hero-pcard:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(var(--gold-rgb),.45);
    transform: translateY(-3px);
}

.hero-pcard-img {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.15);
    border-bottom: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}

.hero-pcard-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--ts);
}
.hero-pcard:hover .hero-pcard-img img { transform: scale(1.08); }

.hero-pcard-emoji {
    font-size: 42px;
    opacity: .35;
}

.hero-pcard-body {
    padding: 10px 12px;
}

.hero-pcard-cat {
    font-family: var(--fm);
    font-size: 7px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.hero-pcard-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    color: rgba(244,242,238,.9);
    line-height: 1.25;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-pcard-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
}

.hero-pcard-price {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    color: var(--gold);
}

.hero-pcard-old {
    font-family: var(--fm);
    font-size: 9px;
    color: rgba(244,242,238,.3);
    text-decoration: line-through;
}

.hero-pcard-badge {
    display: inline-block;
    font-family: var(--fm);
    font-size: 7px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
}

.hb-sale { background: var(--red);  color: #fff; }
.hb-new  { background: var(--gold); color: #fff; }
[data-theme="dark"] .hb-new { color: #000; }
.hb-hot  { background: var(--blue); color: #fff; }

/* ============================================================
   TICKER SZALAG
   ============================================================ */
.ticker-tape {
    background: var(--gold);
    padding: 9px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    animation: tgo 28s linear infinite;
    width: max-content;
}

/* Hover-re pause – könnyebb olvasni */
.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
[data-theme="dark"] .ticker-item { color: #000; }

.ticker-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    flex-shrink: 0;
}
[data-theme="dark"] .ticker-sep { background: rgba(0,0,0,.3); }

@keyframes tgo {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   KATEGÓRIA STRIP
   ============================================================ */
.sec-cats {
    padding: 44px 0 48px;
    border-bottom: 1px solid var(--border);
}

.cat-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.cat-strip::-webkit-scrollbar { display: none; }

/* Kategória kártyák */
.cat-card {
    flex: 0 0 122px;
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    text-decoration: none;
    color: inherit;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--t);
}

.cat-card:hover {
    border-color: rgba(var(--gold-rgb),.35);
    transform: translateY(-3px);
    box-shadow: var(--sh-md), var(--sh-gold);
}

.cat-card:hover::after,
.cat-card.is-active::after { transform: scaleX(1); }

.cat-card.is-active {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.cat-ico {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border: 1px solid rgba(var(--gold-rgb),.18);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--t);
    flex-shrink: 0;
}

.cat-card:hover .cat-ico,
.cat-card.is-active .cat-ico {
    background: var(--gold);
    border-color: var(--gold);
}

.cat-name {
    font-family: var(--fd);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text);
    text-align: center;
    line-height: 1.25;
    transition: color .3s;
}

.cat-cnt {
    font-family: var(--fm);
    font-size: 8px;
    color: var(--text-4);
}

/* ============================================================
   TERMÉKEK SZEKCIÓ
   ============================================================ */
.sec-products {
    padding: 44px 0 52px;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

/* Filter csipek */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.filter-bar::-webkit-scrollbar { display: none; }

.fchip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 13px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-3);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.fchip:hover { border-color: var(--gold); color: var(--gold); }
.fchip.on    { background: var(--gold); border-color: var(--gold); color: #fff; }
[data-theme="dark"] .fchip.on { color: #000; }

.fsort {
    margin-left: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 5px 12px;
    font-family: var(--fd);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-3);
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.fsort:hover { border-color: var(--gold); color: var(--gold); }

/* Termék rács */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* Badge pozícionálás */
.pbadge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
}

/* ============================================================
   PROMO BANNEREK
   ============================================================ */
.sec-promo {
    padding: 44px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.promo-card {
    border-radius: var(--r-lg);
    padding: 38px 44px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--t);
}

.promo-card:hover { transform: translateY(-3px); }

/* Fő promo */
.promo-main {
    background: linear-gradient(135deg, #1e1c18 0%, #13110d 100%);
    border: 1px solid rgba(184,125,30,.22);
    box-shadow: 0 6px 28px rgba(0,0,0,.16);
}
[data-theme="dark"] .promo-main {
    background: linear-gradient(135deg, #1a1c21 0%, #0f1014 100%);
    box-shadow: 0 6px 28px rgba(0,0,0,.45);
}

/* Másodlagos promo */
.promo-sub {
    background: linear-gradient(135deg, #141828 0%, #0e1018 100%);
    border: 1px solid rgba(91,156,246,.18);
    box-shadow: 0 6px 28px rgba(0,0,0,.14);
}

.pglow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 80% 50%, rgba(184,125,30,.17) 0%, transparent 70%);
    pointer-events: none;
}

.pgrid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.pcontent { position: relative; z-index: 1; }

.plbl {
    font-family: var(--fm);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.ptitle {
    font-family: var(--fd);
    font-weight: 900;
    font-size: clamp(22px, 2.8vw, 44px);
    text-transform: uppercase;
    line-height: .95;
    color: #f4f2ee;
    margin-bottom: 10px;
}
.ptitle em { font-style: normal; color: var(--gold); }

.pdesc {
    font-size: 13px;
    color: rgba(244,242,238,.5);
    max-width: 280px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.pico {
    position: absolute;
    right: 36px;
    bottom: 20px;
    font-size: 80px;
    opacity: .1;
    transform: rotate(-15deg);
    pointer-events: none;
    line-height: 1;
}

/* Visszaszámláló */
.ptimer {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
}

.tb-block {
    text-align: center;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-sm);
    padding: 7px 10px;
    min-width: 46px;
}

.tb-num {
    font-family: var(--fm);
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
    line-height: 1;
}

.tb-lbl {
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-top: 3px;
}

/* Promo gombok */
.btn-promo {
    background: var(--gold);
    color: #fff;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: var(--r-xs);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
[data-theme="dark"] .btn-promo { color: #000; }
.btn-promo:hover {
    background: var(--gold-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(var(--gold-rgb),.35);
}

/* Másodlagos promo gomb – kék téma */
.btn-promo-ol {
    color: rgba(111,168,245,.88);
    font-family: var(--fd);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: var(--r-xs);
    border: 1.5px solid rgba(91,156,246,.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t);
    text-decoration: none;
}

.btn-promo-ol:hover {
    border-color: rgba(91,156,246,.65);
    background: rgba(91,156,246,.08);
}

/* ============================================================
   MÁRKÁK MARQUEE
   ============================================================ */
.sec-brands {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    transition: background .3s;
}

.brands-lbl {
    font-family: var(--fm);
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-4);
    text-align: center;
    margin-bottom: 18px;
}

.brands-wrap {
    overflow: hidden;
    position: relative;
}

.brands-wrap::before,
.brands-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.brands-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--surface), transparent); }
.brands-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }

.brands-track {
    display: flex;
    animation: mq 32s linear infinite;
    width: max-content;
}
.brands-track:hover { animation-play-state: paused; }

@keyframes mq {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.brand-item {
    padding: 0 32px;
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--t);
    cursor: default;
}
.brand-item:hover { color: var(--gold); }

.bsep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================================
   USP
   ============================================================ */
.sec-usp { padding: 44px 0; }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    margin-top: 24px;
}

.usp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    box-shadow: var(--sh-sm);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t);
}

.usp-card:hover { border-color: rgba(var(--gold-rgb),.25); box-shadow: var(--sh-md); }
.usp-card:hover::before { transform: scaleX(1); }

.usp-ico {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.usp-title {
    font-family: var(--fd);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
    transition: color .3s;
}

.usp-desc {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
}

.usp-n {
    position: absolute;
    top: 15px; right: 15px;
    font-family: var(--fm);
    font-size: 9px;
    color: var(--text-4);
}

/* ============================================================
   RESZPONZÍV
   ============================================================ */
@media (max-width: 1100px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-body { padding: 32px var(--page-pad) 0; }
    .hero-search { height: 50px; }
    .hero-search-btn span { display: none; }
    .hero-search-btn { padding: 0 18px; }
    .hero-search .search-cat-btn { display: none; }
    .hero-sub { font-size: 13px; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-card { padding: 28px; }
    .promo-card .pdesc { max-width: 100%; }
}

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

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-tags { display: none; } /* Mobilon rejtjük a tag sorát */
    .prod-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .prod-grid::-webkit-scrollbar { display: none; }
    .prod-grid .prod-card {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }
    .usp-grid { grid-template-columns: 1fr; }
}
