/* =============================================
   TERMÉK OLDAL (single-product)
   ============================================= */

/* ── Hero ─────────────────────────────────── */
.termek-hero {
    background: #232B26;
}

.termek-hero__kat {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: var(--fw-regular);
    color: #FAF8F4;
    margin: 0 0 16px;
    line-height: 1.3;
}

/* ── Fő szekció ───────────────────────────── */
.termek-szekció {
    background: #F8F7F4;
    padding: 64px 0 80px;
}

/* ── 2 oszlopos grid ──────────────────────── */
.termek-grid {
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: clamp(32px, 5vw, 72px);
    min-width: 0;
    align-items: start;
}

/* ═══════════════════════════════════════════
   BAL OLDAL
═══════════════════════════════════════════ */

/* Fő kép */
.termek-fokep-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 12px;
}

.termek-fokep {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

/* Galéria bélyegképek */
.termek-galeria {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.termek-galeria__btn {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.termek-galeria__btn img {
    display: block;
    width: 72px;
    height: 56px;
    object-fit: cover;
}

.termek-galeria__btn.aktiv,
.termek-galeria__btn:hover {
    border-color: var(--color-terracotta);
}

/* Termék neve – bal (mobil) */
.termek-bal__nev {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    text-align: left;
    margin: 0 0 20px;
    line-height: 1.3;
    display: none;
    /* desktop: jobboldalt jelenik meg */
}

/* Rövid leírás */
.termek-bal__leiras {
    color: var(--color-text);
    line-height: 1.6;
    margin-top: 3rem;
}

/* Minden kép a termék bal oszlopban és a fülekben ne lógjon ki */
.termek-bal__leiras img,
.termek-tab-tartalom img {
    max-width: 100%;
    height: auto;
}

.termek-bal__leiras p {
    margin: 0 0 12px;
}

.termek-bal__leiras p:last-child {
    margin-bottom: 0;
}

/* ── Felhasználás / Megmunkálhatóság / Tulajdonságok grid ── */
.termek-felhasznalas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* 3 oszlop: első és második kap jobb oldali bordert */
.termek-felhasznalas>div:not(:last-child) {
    border-right: 1px solid var(--color-cream);
    padding-right: 1.5rem;
}

.termek-felhasznalas h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin: 0 0 18px;
}

.termek-felhasznalas ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.termek-felhasznalas ul li {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.4;
}

/* WP editor által beszúrt <br> elrejtése */
.termek-felhasznalas ul li br {
    display: none;
}

/* WP által <p>-be csomagolt img kezelése */
.termek-felhasznalas ul li p {
    display: contents;
}

.termek-li-ikon {
    display: block;
    flex-shrink: 0;
    width: 24px;
    object-fit: contain;
}

.termek-li-ikon img {
    width: 24px;
    height: auto;
}

.termek-li-ikon svg {
    width: 30px;
    height: 30px;
}

/* Hiányzó ikon → kis kör placeholder */
.termek-li-ikon--ures::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8C8880;
    margin: 0 8px;
}

/* Feature grid – 3 oszlopos rövid leírás */
.termek-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.termek-feature-grid__item {
    border-radius: 10px;
    padding: 16px 14px;
}

.termek-feature-grid__cim {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0 0 8px;
    line-height: 1.3;
}

/* Felsorolás lista */
.termek-feature-grid__lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.termek-feature-grid__lista li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.45;
}

/* Ikon a li elem előtt */
.termek-feature-grid__ikon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    display: block;
}

/* Mobil accordion trigger (nem aktív desktop-on) */
.termek-feature-grid__trigger {
    display: none;
}

/* ═══════════════════════════════════════════
   JOBB OLDAL
═══════════════════════════════════════════ */

.termek-jobb {
    position: sticky;
    top: 24px;
}

/* Termék neve – jobb (desktop) */
.termek-jobb__nev {
    font-size: 42px;
    text-align: left;
    margin: 0 0 10px;
    line-height: 1.15;
}

.termek-jobb__alcim {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--color-text);
    margin: 0 0 24px;
    line-height: 1.5;
    opacity: 0.75;
}

/* Ár sor */
.termek-arsor {
    margin-bottom: 16px;
}

.termek-arsor__ar {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    display: block;
    margin-bottom: 6px;
}

.termek-arsor__ar .woocommerce-Price-amount {
    font-size: 32px;
    font-weight: var(--fw-bold);
    font-family: 'Syne', sans-serif;
}

.termek-arsor__egyseg {
    font-size: 22px;
    font-weight: var(--fw-regular);
    font-family: 'Syne', sans-serif;
}

.termek-arsor__megjegyzes {
    font-size: 13px;
    color: var(--color-terracotta);
    margin: 0;
    line-height: 1.4;
}

/* Szeparátor */
.termek-szeparator {
    border: none;
    border-top: 1px solid var(--color-cream);
    margin: 20px 0 24px;
}

/* ── Attribútum csoport ────────────────────── */
.termek-attr-csoport {
    margin-bottom: 20px;
}

.termek-attr-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin: 0 0 10px;
}

.termek-attr-gombok {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.termek-attr-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Szélesség (többszörös választás): a gomb és a hozzá tartozó mennyiség-mező
   soronként, egymás alatt jelenik meg (nem a többi attribútum-gomb közé
   tördelve) – ezért a szülő .termek-attr-gombok itt oszlopba rendez. */
.termek-attr-csoport[data-tobbszoros] .termek-attr-gombok {
    flex-direction: column;
    align-items: flex-start;
}

/* Egy sor: [Szélesség gomb] [mennyiség-lépegető] [db] – ha nem fér ki
   egymás mellett, szépen tördelődik egymás alá (flex-wrap) */
.termek-attr-item--sor {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.termek-attr-mennyiseg {
    display: flex;
    align-items: center;
    border: 1px solid #C8C3B8;
    border-radius: 7px;
    overflow: hidden;
    background: #ffffff;
}

/* A JS a `hidden` attribútummal rejti el a mezőt (pl. színváltáskor,
   ha az adott szélesség már nem elérhető) – a fenti display:flex
   viszont felülírná a böngésző [hidden]{display:none} alapszabályát,
   ezért itt kell explicit kivételt tenni. */
.termek-attr-mennyiseg[hidden] {
    display: none;
}

.termek-qty__btn--kicsi {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.termek-qty__input--kicsi {
    width: 40px;
    height: 32px;
    font-size: 14px;
    border-left: 1px solid #C8C3B8;
    border-right: 1px solid #C8C3B8;
}

/* Alap méret / hossz gomb */
.attr-btn {
    min-width: 98px;
    height: 48px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #C8C3B8;
    border-radius: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    line-height: 1;
}

.attr-btn:hover {
    border-color: var(--color-text);
}

.attr-btn.aktiv {
    background: #232B26;
    border-color: #232B26;
    color: #ffffff;
}

/* Szín gomb */
.attr-btn--szin {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--attr-szin, #C8C3B8);
    border: 2px solid transparent;
    padding: 0;
}

.attr-btn--szin.aktiv {
    border-color: var(--color-text);
    box-shadow: 0 0 0 2px #ffffff inset;
}

/* ── Mennyiség ────────────────────────────── */
.termek-qty {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.termek-qty__label {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    white-space: nowrap;
}

.termek-qty__egyseg {
    font-size: 14px;
    color: var(--color-mid-gray);
    white-space: nowrap;
}

.termek-qty__stepper {
    display: flex;
    align-items: center;
    border: 1px solid #C8C3B8;
    border-radius: 7px;
    overflow: hidden;
    background: #ffffff;
}

.termek-qty__btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.15s;
    flex-shrink: 0;
}

.termek-qty__btn:hover {
    background: #F8F7F4;
}

.termek-qty__input {
    width: 56px;
    height: 44px;
    border: none;
    border-left: 1px solid #C8C3B8;
    border-right: 1px solid #C8C3B8;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    background: #ffffff;
    outline: none;
}

.termek-qty__input::-webkit-outer-spin-button,
.termek-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* ── Gyors árbecslés (kliens oldali, tájékoztató) ─────────────────────── */
.termek-becsles {
    background: #F8F7F4;
    border: 1px solid #C8C3B8;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.termek-becsles__cim {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0 0 8px;
}

.termek-becsles__alcim {
    font-size: 14px;
    color: var(--color-mid-gray);
    margin: 0 0 20px;
}

.termek-becsles__alcim a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.termek-becsles__csoport {
    padding: 12px 0;
    border-top: 1px solid #E3DFD6;
}

.termek-becsles__sor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #E3DFD6;
    font-size: 15px;
    color: var(--color-text);
}

.termek-becsles__csoport .termek-becsles__sor {
    border-bottom: none;
    padding: 4px 0;
}

.termek-becsles__sor--vegosszeg {
    border-bottom: none;
    padding-top: 16px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: var(--fw-bold);
}

/* ── CTA gombok ───────────────────────────── */
.termek-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.termek-cta__konzult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #232B26;
    color: #F8F7F4;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: var(--fw-bold);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity var(--transition);
}

.termek-cta__konzult:hover {
    opacity: 0.85;
    color: #F8F7F4;
}

/* YITH wishlist a CTA-ban (outline stílus) */
.termek-cta__wishlist-btn {
    display: flex;
}

.termek-cta__wishlist-btn .yith-wcwl-add-to-wishlist {
    width: 100%;
}

.termek-cta__wishlist-btn .add_to_wishlist,
.termek-cta__wishlist-btn .yith-wcwl-wishlistexistslink a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--color-terracotta);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: var(--fw-bold);
    text-decoration: none;
    text-align: center;
    background: transparent;
    cursor: pointer;
    transition: background-color var(--transition);
    line-height: 1.3;
}

.termek-cta__wishlist-btn .add_to_wishlist:hover,
.termek-cta__wishlist-btn .yith-wcwl-wishlistexistslink a:hover {
    background-color: rgba(217, 126, 74, 0.08);
}

/* ═══════════════════════════════════════════
   FÜLEK / TABS
═══════════════════════════════════════════ */
.termek-fulek-szekció {
    background: #F8F7F4;
    padding: 0 0 80px;
    border-top: 1px solid var(--color-cream);
}

.termek-fulek {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--color-cream);
    margin-bottom: 40px;
}

.termek-fül {
    padding: 20px 28px;
    background: transparent;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition), border-color var(--transition);
}

.termek-fül:hover {
    opacity: 0.8;
}

.termek-fül.aktiv {
    opacity: 1;
}

.termek-tab-panel {
    display: none;
}

.termek-tab-panel.aktiv {
    display: block;
}

.termek-tab-tartalom {
    max-width: 780px;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

.termek-tab-tartalom p {
    margin: 0 0 16px;
}

.termek-tab-tartalom p:last-child {
    margin-bottom: 0;
}

.termek-tab-tartalom h3 {
    font-family: 'Syne', sans-serif;
    margin: 28px 0 12px;
}

.termek-tab-tartalom h4 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 2.5rem 0 12px;
}

.termek-tab-tartalom p,
.termek-tab-tartalom li,
.termek-bal__leiras p {
    font-size: 15px;
}

/* ── Táblázat reszponzív wrapper ────────────── */
.termek-tab-tartalom .tabla-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background:
        linear-gradient(to right, #F8F7F4 30%, transparent) left center,
        linear-gradient(to left,  #F8F7F4 30%, transparent) right center,
        radial-gradient(ellipse at left,  rgba(0,0,0,0.10), transparent 70%) left center,
        radial-gradient(ellipse at right, rgba(0,0,0,0.10), transparent 70%) right center;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-repeat: no-repeat;
    background-attachment: local, local, scroll, scroll;
}

/* ── Táblázat stílusok ───────────────────────── */
.termek-tab-tartalom table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: transparent;
}

.termek-tab-tartalom table caption {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border: 1px solid #D8D4CC;
    border-bottom: none;
    padding: 8px 14px;
}

.termek-tab-tartalom table th,
.termek-tab-tartalom table td {
    border: 1px solid #D8D4CC;
    padding: 10px 14px;
    text-align: left;
}

.termek-tab-tartalom table td.muszaki-kozep {
    text-align: center;
}

.termek-tab-tartalom table tr.muszaki-kiemelt th,
.termek-tab-tartalom table tr.muszaki-kiemelt td {
    background: var(--color-terracotta);
    color: #fff;
    font-weight: 700;
}

.termek-tab-tartalom .muszaki-jegyzet {
    font-size: 12px;
    color: var(--color-terracotta);
}

.termek-tab-tartalom .muszaki-abra {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.termek-tab-tartalom ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.termek-tab-tartalom ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── Nagy képernyő (≤ 1550px) – feature grid 2 oszlop ── */
@media only screen and (max-width: 1550px) {
    .termek-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1495px) and (min-width: 1046px) {
    .termek-felhasznalas>div:nth-child(3) {
        padding-right: 0;
        border-top: 1px solid var(--color-cream);
        padding-top: 1.5rem;
    }

    .termek-felhasznalas>div:nth-child(2) {
        border-right: none;
    }

    .termek-felhasznalas {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media only screen and (max-width: 1045px) and (min-width: 800px){
    .termek-felhasznalas>div:not(:last-child){
        padding-right: 0;
        border-bottom: 1px solid var(--color-cream);
        padding-bottom: 1.5rem;
        border-right: none;
    }
    .termek-felhasznalas{
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
    }
    
}

@media only screen and (max-width: 678px) and (min-width: 500px){

    .termek-felhasznalas>div:not(:last-child) {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--color-cream);
        padding-bottom: 1.5rem;
    }

    .termek-felhasznalas{
        grid-template-columns: 1fr;
    }
}

/* ── 1340px – CTA wishlist gomb alá törik ──── */
@media only screen and (max-width: 1340px) {
    .termek-cta {
        grid-template-columns: 1fr;
    }
}

/* ── Tablet (≤ 1160px) ─────────────────────── */
@media only screen and (max-width: 1160px) {
    .termek-grid {
        gap: 48px;
    }

    .termek-jobb__nev {
        font-size: 34px;
    }

    .termek-arsor__ar,
    .termek-arsor__ar .woocommerce-Price-amount {
        font-size: 32px;
    }

    .termek-arsor__egyseg {
        font-size: 22px;
    }
}

/* ── Tablet kis (≤ 980px) ─────────────────── */
@media only screen and (max-width: 980px) {
    .termek-szekció {
        padding: 48px 0 64px;
    }

    .termek-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .termek-fokep {
        height: 320px;
    }

    .termek-jobb {
        position: static;
    }

    .termek-jobb__nev {
        font-size: 28px;
    }
}

/* ── 900px: bal oszlop szűk → felhasznalas 2 oszlop ── */
@media only screen and (max-width: 900px) and (min-width: 800px) {
    .termek-felhasznalas {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobil (≤ 799px) – egymás alá ─────────── */
@media only screen and (max-width: 799px) {
    .termek-szekció {
        padding: 36px 0 56px;
    }

    .termek-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Mobilon a bal oldali cím látszik */
    .termek-bal__nev {
        display: block;
    }

    /* Jobb oldali cím elrejtve mobilon */
    .termek-jobb__nev {
        display: none;
    }

    .termek-fokep {
        height: 280px;
    }

    .termek-jobb {
        margin-top: 32px;
    }

    /* Feature grid accordion mobilon */
    .termek-feature-grid {
        display: block;
        margin-top: 16px;
        border: 1px solid var(--color-cream);
        border-radius: 10px;
        overflow: hidden;
    }

    .termek-feature-grid__item {
        border-radius: 0;
        border-bottom: 1px solid var(--color-cream);
        padding: 0;
    }

    .termek-feature-grid__item:last-child {
        border-bottom: none;
    }

    .termek-feature-grid__trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        background: transparent;
        border: none;
        font-family: 'Syne', sans-serif;
        font-size: 14px;
        font-weight: var(--fw-bold);
        color: var(--color-text);
        cursor: pointer;
        text-align: left;
        gap: 8px;
    }

    .termek-feature-grid__trigger::after {
        content: '+';
        font-size: 20px;
        font-weight: var(--fw-regular);
        flex-shrink: 0;
        transition: transform 0.2s;
    }

    .termek-feature-grid__item.nyitva .termek-feature-grid__trigger::after {
        transform: rotate(45deg);
    }

    .termek-feature-grid__cim {
        display: none;
        /* trigger mutatja a cím helyett */
    }

    .termek-feature-grid__lista {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 16px;
        gap: 6px;
    }

    .termek-feature-grid__item.nyitva .termek-feature-grid__lista {
        max-height: 300px;
        padding: 0 16px 14px;
    }

    /* Fülek mobilon */
    .termek-fül {
        font-size: 14px;
        padding: 16px 18px;
    }

    .termek-fulek-szekció {
        padding-bottom: 56px;
    }
}

@media only screen and (max-width: 678px){
    
}

/* ── Kis mobil (≤ 630px) ──────────────────── */
@media only screen and (max-width: 630px) {
    .termek-fokep {
        height: 240px;
    }

    .termek-cta {
        grid-template-columns: 1fr;
    }


    .termek-jobb__nev {
        font-size: 24px;
    }

    .termek-galeria__btn img {
        width: 60px;
        height: 46px;
    }
}

/* ── Kis mobil (≤ 500px) – felhasznalas 1 oszlop ── */
@media only screen and (max-width: 500px) {
    .termek-felhasznalas {
        grid-template-columns: 1fr;
    }

    .termek-felhasznalas>div:not(:last-child) {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--color-cream);
        padding-bottom: 1.5rem;
    }
}

/* ── Táblázat mobil (≤ 600px) ───────────────── */
@media only screen and (max-width: 600px) {
    .termek-tab-tartalom table {
        font-size: 12px;
    }

    .termek-tab-tartalom table th,
    .termek-tab-tartalom table td {
        padding: 7px 9px;
    }
}

/* ── Kapcsolódó / Hasonló termékek szekciók ── */
.termek-ajanlott {
    padding: 64px 0 72px;
}

.termek-kapcsolodo {
    background: #F8F7F4;
}

.termek-hasonlo {
    background: #EFEEE9;
}

.termek-ajanlott__cim {
    margin: 0 0 40px;
    text-align: left;
}

.termek-ajanlott__racs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

@media only screen and (max-width: 768px) {
    .termek-ajanlott {
        padding: 48px 0 56px;
    }
    .termek-ajanlott__racs {
        gap: 16px;
    }
}

@media only screen and (max-width: 560px) {
    .termek-ajanlott__racs {
        grid-template-columns: 1fr;
    }
}

/* ── Nagyon kis (≤ 450px) ─────────────────── */
@media only screen and (max-width: 450px) {
    .termek-szekció {
        padding: 24px 0 48px;
    }

    .termek-fulek-szekció {
        padding-bottom: 40px;
    }

    .termek-fül {
        padding: 14px 14px;
        font-size: 13px;
    }
}