/* =========================================================
   [kapcsolodo_termekek] — SEO-barát „További termékek" kártyarács
   Mintázat: 3 oszlopos rács, fehér kártyák, lágy árnyék.
   A kártyán belül csak a „Megnézem a terméket" link kattintható
   (SEO: tiszta belső link-struktúra, dupla linkelés nélkül).
   ========================================================= */

.modulwoo-kapcsolodo-termekek {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.modulwoo-kapcsolodo-termekek__header {
    margin-bottom: 34px;
    text-align: center;
}

.modulwoo-kapcsolodo-termekek__eyebrow {
    color: #94a072;
    font: 700 11px "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.modulwoo-kapcsolodo-termekek__heading {
    margin: 8px 0 0;
    color: #26331f;
    font: 700 30px/1.25 "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.01em;
}

.modulwoo-kapcsolodo-termekek__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.modulwoo-kapcsolodo-termekek__card {
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(43, 58, 37, 0.07);
    display: flex;
    flex-direction: column;
}

/* Képterület — a minta szerint 180px magas, krém háttér placeholder-ként. */
.modulwoo-kapcsolodo-termekek__image {
    display: block;
    width: 100%;
    height: 180px;
    background: #eceae3;
    overflow: hidden;
}

.modulwoo-kapcsolodo-termekek__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modulwoo-kapcsolodo-termekek__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.modulwoo-kapcsolodo-termekek__category {
    font: 700 10px "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #94a072;
}

.modulwoo-kapcsolodo-termekek__title {
    margin: 6px 0 0;
    color: #26331f;
    font: 700 15px/1.3 "Plus Jakarta Sans", sans-serif;
}

.modulwoo-kapcsolodo-termekek__price {
    margin-top: 10px;
    color: #1d2a16;
    font: 800 17px "Plus Jakarta Sans", sans-serif;
}

/* A kártyán belül EZ az egyetlen link — a kép, cím és kategória nem
   kattintható, így nincs dupla linkelés (jobb SEO). */
.modulwoo-kapcsolodo-termekek__link {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(43, 58, 37, 0.08);
    color: #3f5236;
    font: 600 14px "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.modulwoo-kapcsolodo-termekek__link:hover,
.modulwoo-kapcsolodo-termekek__link:focus-visible {
    color: #26331f;
    gap: 9px;
}

.modulwoo-kapcsolodo-termekek__link svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.2s ease;
}

.modulwoo-kapcsolodo-termekek__link:hover svg,
.modulwoo-kapcsolodo-termekek__link:focus-visible svg {
    transform: translateX(2px);
}

/* =========================================================
   Reszponzív
   ========================================================= */
@media (max-width: 900px) {
    .modulwoo-kapcsolodo-termekek__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .modulwoo-kapcsolodo-termekek__header {
        margin-bottom: 26px;
    }

    .modulwoo-kapcsolodo-termekek__heading {
        font-size: 26px;
    }

    .modulwoo-kapcsolodo-termekek__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
