/* =============================================
   TERMÉKEK (SHOP) OLDAL – Kategória nézet
   ============================================= */

/* ────────────────────────────────────────────
   H1 HERO SZEKCIÓ
   ─────────────────────────────────────────── */
.shop-hero {
    background: linear-gradient(180deg, #334B44 0%, #3D5A52 100%);
}

/* ── Világos háttér variáns (pl. Letölthető dok. aloldalak) ── */
.shop-hero--vilagos {
    background: linear-gradient(180deg, #C8C3B8 0%, #E8E6E1 100%);
}

.shop-hero--vilagos .shop-hero__title {
    color: #232B26;
}

.shop-hero__inner {
    padding-top: var(--header-pad-x);
    padding-bottom: var(--header-pad-x);
}

/* Kis felirat a h1 felett (pl. Rólunk oldal) – .hero__subtitle stílusai */
.shop-hero__label {
    font-size: 24px;
    font-weight: var(--fw-regular);
    line-height: 1.4;
    color: var(--color-text-inv);
    margin: 0 0 28px;
}

.shop-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
    color: #F8F7F4;
    margin: 0 0 28px;
}

.shop-hero__line {
    display: block;
    width: 250px;
    height: 3px;
    background: #D97E4A;
    border-radius: 2px;
}

/* ────────────────────────────────────────────
   BREADCRUMB
   ─────────────────────────────────────────── */
.shop-breadcrumb {
    background: #E8E6E1;
    padding: 20px 0;
}

.shop-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-breadcrumb a,
.shop-breadcrumb__sep,
.shop-breadcrumb__current {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1;
}

/* A linkek/elválasztók sosem törnek sorba – csak az utolsó (aktuális oldal)
   elem zsugorodhat, és ha nagyon hosszú (pl. egy termék teljes neve), inkább
   "..."-tal levágódik, mint hogy csúnyán szavak közt tördelődjön */
.shop-breadcrumb a,
.shop-breadcrumb__sep {
    white-space: nowrap;
    flex-shrink: 0;
}

.shop-breadcrumb__current {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.shop-breadcrumb a {
    text-decoration: none;
    transition: color var(--transition);
}

.shop-breadcrumb a:hover {
    color: var(--color-terracotta);
}

/* ────────────────────────────────────────────
   KATEGÓRIÁK FŐSZEKCIÓ
   ─────────────────────────────────────────── */
.shop-kategoriak {
    background: #F8F7F4;
    padding: 5rem 0;
}

/* ── Egyedi kategória sor ──────────────────── */
.shop-kategoria {
    padding: 72px 0;
    border-bottom: 1px solid var(--color-cream); /* #E8E6E1 */
}

.shop-kategoria:last-child {
    border-bottom: none;
    padding-bottom: 96px;
}

.shop-kategoria__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ── Kép ──────────────────────────────────── */
.shop-kategoria__img-wrap {
    flex-shrink: 0;
    width: 380px;
}

.shop-kategoria__img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md); /* 16px */
    display: block;
}

/* ── Szöveg oszlop ────────────────────────── */
.shop-kategoria__body {
    flex: 1;
    min-width: 0;
}

.shop-kategoria__title {
    margin: 0 0 24px;
    line-height: 1.1;
    text-align: left;
}

.shop-kategoria__desc {
    margin-bottom: 36px;
}

.shop-kategoria__desc p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.shop-kategoria__desc p:last-child {
    margin-bottom: 0;
}

/* ────────────────────────────────────────────
   GOMB – outlined / stroke stílus
   ─────────────────────────────────────────── */
.shop-kategoria__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--color-terracotta);
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    padding: 10px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: var(--fw-bold);
    cursor: pointer;
    text-decoration: none;
    transition: gap 0.35s ease, background-color var(--transition);
}

.shop-kategoria__btn:hover {
    color: var(--color-terracotta);
    gap: 28px;
    background-color: rgba(217, 126, 74, 0.06);
}

.shop-kategoria__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

/* ─────────────────────────────────────────────
   TABLET (≤ 980px)
   ───────────────────────────────────────────── */
@media only screen and (max-width: 980px) {
    .shop-hero__inner {
        padding-top: 60px;
        padding-bottom: 52px;
    }

    .shop-hero__title {
        font-size: 76px;
    }

    .shop-kategoria__inner {
        gap: 48px;
    }

    .shop-kategoria__img-wrap {
        width: 300px;
    }

    .shop-kategoria__img-wrap img {
        height: 240px;
    }

    .shop-kategoria__title {
        margin-bottom: 20px;
    }
}

/* ─────────────────────────────────────────────
   MOBIL (≤ 799px) – egymás alá kerül
   ───────────────────────────────────────────── */
@media only screen and (max-width: 799px) {
    .shop-hero__inner {
        padding-top: 48px;
        padding-bottom: 40px;
    }

    .shop-kategoriak {
        padding: 3rem 0 5rem;
    }

    .shop-hero__label {
        font-size: 20px;
    }

    .shop-hero__title {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .shop-hero__line {
        width: 160px;
    }

    .shop-kategoria {
        padding: 48px 0;
    }

    .shop-kategoria:last-child {
        padding-bottom: 64px;
    }

    /* Hover-nyíl animáció letiltása mobilon (tap = "beragadt" hover,
       ami tördelte a feliratot) – a padding mindenhol egységesen 10px 32px */
    .shop-kategoria__btn:hover {
        gap: 16px;
    }

    .shop-kategoria__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .shop-kategoria__img-wrap {
        width: 100%;
    }

    .shop-kategoria__img-wrap img {
        height: 220px;
    }

    .shop-kategoria__title {
        margin-bottom: 16px;
    }

    .shop-kategoria__desc {
        margin-bottom: 24px;
    }

    /* Globális gomb móbil override – ide is kerül a specificitás miatt */
    .shop-kategoria__btn {
        font-size: 16px;
    }
}

/* ─────────────────────────────────────────────
   KIS MOBIL (≤ 630px)
   ───────────────────────────────────────────── */
@media only screen and (max-width: 630px) {
    .shop-hero__inner {
        padding-top: 40px;
        padding-bottom: 36px;
    }

    .shop-hero__label {
        font-size: 16px;
        margin: 0 0 18px;
    }

    .shop-hero__title {
        font-size: 40px;
    }

    .shop-hero__line {
        width: 120px;
    }
}

/* ─────────────────────────────────────────────
   NAGYON KIS KÉPERNYŐ (≤ 450px)
   ───────────────────────────────────────────── */
@media only screen and (max-width: 450px) {
    .shop-hero__inner {
        padding-top: 36px;
        padding-bottom: 32px;
    }

    .shop-hero__title {
        font-size: 32px;
    }

    .shop-hero__line {
        width: 100px;
    }
}
