﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #00A458;
    --color-primary-dark: #179349;
    --color-text: #1f1f1f;
    --color-muted: #4a4a4a;
    --color-border: #d9eee1;
    --color-soft: #CEF0E0;
    --color-bg: #fdfdfd;
    --container-width: 1440px;
    --radius-xl: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    background: #fff;
    position: relative;
    z-index: 20;
}

.header-top {
    border-bottom: 1px solid var(--color-border);
}

.header-top__inner {
    min-height: 116px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.header-logo img {
    width: 325px;
    height: auto;
}

.header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    min-width: 0;
}

.header-info__item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.header-info__icon {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .header-info__icon img {
        width: 33px;
        height: 33px;
        object-fit: contain;
    }

.header-info__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-info__label {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.header-info__value {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #000000;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header-actions__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .header-actions__icon:hover {
        transform: translateY(-1px);
        opacity: 0.85;
    }

    .header-actions__icon img {
        width: 31px;
        height: 31px;
        object-fit: contain;
    }

.header-actions__icon--cart {
    margin-left: 2px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #146c43;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
}

/* BOTTOM NAV */
.header-bottom {
    border-top: 0;
    border-bottom: 1px solid var(--color-border);
}

.header-bottom__inner {
    min-height: 108px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 0;
    width: 100%;
}

.main-nav__link {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    color: #111;
    white-space: nowrap;
    transition: color 0.2s ease;
    flex: 0 1 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .main-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 4px;
        background: var(--color-primary);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

        .main-nav__link:hover::after,
        .main-nav__link--active::after {
            transform: scaleX(1);
        }

.main-nav__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex: 0 0 auto;
    margin: 0 10px;
}

.header-cta {
    min-height: 52px;
    padding: 0 24px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .header-cta:hover {
        background: var(--color-primary);
        color: #fff;
        transform: translateY(-1px);
    }

.header-cta__arrow {
    font-size: 20px;
    line-height: 1;
}

/* TABLET */
@media (max-width: 1280px) {
    .header-top__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .header-bottom__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-logo img {
        width: 240px;
    }

    .header-info {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .header-info__item {
        align-items: flex-start;
    }

    .header-info__value {
        white-space: normal;
    }

    .header-actions {
        gap: 18px;
    }

    .header-bottom__inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .main-nav__link {
        font-size: 15px;
        height: auto;
    }

        .main-nav__link::after {
            bottom: -6px;
            height: 3px;
        }

    .main-nav__dot {
        display: none;
    }

    .header-cta {
        width: 100%;
    }
}

.header-info__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .header-info__value a:hover {
        color: #00A458;
    }

/* FOOTER */
.site-footer {
    margin-top: 80px;
    padding-bottom: 40px;
}

.footer {
    background: #CEF0E0;
    border-radius: 20px;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.2fr 0.9fr 1.05fr;
    gap: 0;
}

/* oszlop */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

    /* elválasztó vonalak */
    .footer-col:not(:first-child) {
        border-left: 1px solid rgba(0, 164, 88, 0.15);
        padding-left: 32px;
    }

/* logo */
.footer-logo {
    width: 220px;
    height: auto;
}

/* bal blokk */
.footer-col--brand {
    gap: 28px;
    padding-right: 24px;
}

/* kontakt */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-contact p {
        font-size: 15px;
        line-height: 1.6;
        color: #000000;
        margin: 0;
    }

/* social */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #D5FAE9;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

/* cím */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #00a458;
    margin: 0;
}

/* lista */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.footer-col a {
    font-size: 15px;
    color: #000000;
    transition: color 0.2s ease;
}
    .footer-col a:hover {
        color: #00a458;
    }

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 26px;
}

.footer-bottom__bg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 42px;
    pointer-events: none;
}

    .footer-bottom__bg img {
        width: min(1080px, 78%);
        height: auto;
        display: block;
    }

.footer-bottom__content {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-bottom__copyright,
.footer-bottom__credit {
    font-size: 12px;
    line-height: 1.4;
    color: #2f2f2f;
    margin: 0;
}

.footer-bottom__copyright {
    text-align: left;
}

.footer-bottom__credit {
    text-align: right;
}

.footer-bottom__payments {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer-bottom__payments img {
        width: 265px;
        height: auto;
        display: block;
    }

@media (max-width: 1200px) {
    .footer-bottom__bg img {
        width: min(900px, 82%);
    }

    .footer-bottom__content {
        max-width: 900px;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 18px;
    }

    .footer-bottom__bg {
        margin-bottom: 18px;
    }

        .footer-bottom__bg img {
            width: 92%;
        }

    .footer-bottom__content {
        max-width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom__copyright,
    .footer-bottom__credit {
        text-align: center;
        font-size: 11px;
    }

    .footer-bottom__payments img {
        width: 210px;
    }
}

/*---------------------------------------------------------------------------HOME----------------------------------------------------------------------------------------------------------*/

/* HOME HERO */


.container-wide {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-page .header-bottom {
    border-bottom: none;
}

.home-page .site-footer {
    margin-top: 0;
}

.hero-card {
    position: relative;
    min-height: 820px;
    border-radius: 20px;
}

    .hero-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 80px;
        width: 60%;
        height: 660px;
        background: #00A458;
        border-radius: 20px 0 0 20px;
        z-index: 1;
    }

.hero-card__content {
    min-height: 820px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-card__text {
    padding: 0 0 0 170px;
    max-width: none;
    position: relative;
    z-index: 3;
}

.hero-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 112px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 -360px 42px 0;
    text-shadow: 0 7px 16px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    position: relative;
    z-index: 4;
}

.hero-card__subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 44px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 4;
}

.hero-card__button {
    min-height: 62px;
    padding: 0 42px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    color: #111;
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    position: relative;
    z-index: 4;
}

    .hero-card__button:hover {
        background: #fff;
        transform: translateY(-1px);
    }

.hero-card__button-arrow {
    font-size: 1.35rem;
    line-height: 1;
}

.hero-card__image-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 62%;
    height: 710px;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.hero-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-mission {
    background: #f1fbf6;
    border-radius: 0 0 20px 20px;
    margin-top: -120px;
    padding: 210px 0 76px;
    position: relative;
    z-index: 0;
}

.hero-mission__inner {
    max-width: 1304px;
    margin: 0 auto;
}

    .hero-mission__inner p {
        font-family: 'Barlow', sans-serif;
        font-size: 24px;
        line-height: 1.9;
        color: #000000;
        margin: 0;
    }

        .hero-mission__inner p + p {
            margin-top: 10px;
        }

.hero-mission__link {
    font-weight: 800;
    color: #00A458;
    white-space: nowrap;
    margin-left: 10px;
    transition: opacity 0.2s ease;
}

    .hero-mission__link:hover {
        opacity: 0.8;
    }

    .hero-mission__link span {
        font-size: 1.1em;
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .hero-card {
        min-height: 760px;
    }

        .hero-card::before {
            top: 72px;
            height: 610px;
            width: 60%;
        }

    .hero-card__content {
        min-height: 760px;
    }

    .hero-card__text {
        padding-left: 24px;
    }

    .hero-card__title {
        font-size: 4.8rem;
        margin-right: -220px;
    }

    .hero-card__image-wrap {
        width: 60%;
        height: 680px;
    }

    .hero-mission {
        margin-top: -96px;
        padding-top: 170px;
    }

    .hero-mission__inner {
        padding: 0 32px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .hero-card {
        min-height: auto;
    }

        .hero-card::before {
            display: none;
        }

    .hero-card__content {
        min-height: auto;
        display: block;
        background: #00A458;
        border-radius: 20px 20px 0 0;
    }

    .hero-card__text {
        max-width: 100%;
        padding: 56px 36px 48px;
    }

    .hero-card__title {
        font-size: 3.8rem;
        margin: 0 0 28px;
        white-space: normal;
    }

    .hero-card__subtitle {
        margin-bottom: 32px;
    }

    .hero-card__image-wrap {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 460px;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
    }

    .hero-mission {
        margin-top: 24px;
        border-radius: 20px;
        padding: 56px 0;
    }

    .hero-mission__inner {
        max-width: 100%;
        padding: 0 32px;
    }

        .hero-mission__inner p {
            line-height: 1.85;
        }
}

/* MOBILE */
/* MOBILE */
@media (max-width: 768px) {
    .home-hero {
        padding-top: 12px;
    }

    .hero-card {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
        border-radius: 20px;
        overflow: hidden;
        background: #00A458;
    }

    .hero-card__content {
        min-height: auto;
        display: block;
        background: #00A458;
        border-radius: 0;
    }

    .hero-card__text {
        padding: 38px 24px 36px;
    }

    .hero-card__title {
        font-size: 2.7rem;
        line-height: 0.98;
        margin: 0 0 24px;
    }

    .hero-card__subtitle {
        font-size: 0.98rem;
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .hero-card__button {
        width: 100%;
        min-height: 56px;
        padding: 0 24px;
        font-size: 1rem;
    }

    .hero-card__image-wrap {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 300px;
        border-radius: 20px 20px 0 0;
        box-shadow: none;
    }

    .hero-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-mission {
        padding: 40px 0;
    }

    .hero-mission__inner {
        padding: 0 20px;
    }

        .hero-mission__inner p {
            font-size: 1rem;
            line-height: 1.8;
        }

    .hero-mission__link {
        display: inline-block;
        margin-left: 0;
        margin-top: 6px;
        white-space: normal;
    }
}

/* QUALITY SECTION */
.quality-section {
    padding: 92px 0 0;
}

.quality-section__header {
    text-align: center;
    margin-bottom: 38px;
}

.quality-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
    padding-bottom: 40px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.quality-card {
    background: #fff;
    border-radius: 20px;
    min-height: 458px;
    padding: 108px 10px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.quality-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: #CEF0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px;
    flex-shrink: 0;
}

    .quality-card__icon img {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

.quality-card__title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    color: #0D472C;
    margin: 0 0 22px;
}

.quality-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin: 0;
    max-width: 320px;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .quality-section {
        padding-top: 64px;
    }

    .quality-section__title {
        font-size: 60px;
    }

    .quality-grid {
        gap: 28px;
    }

    .quality-card {
        min-height: 420px;
        padding: 48px 28px 38px;
    }

    .quality-card__icon {
        margin-bottom: 42px;
    }

    .quality-card__title {
        font-size: 23px;
    }

    .quality-card__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .quality-section__header {
        margin-bottom: 28px;
    }

    .quality-section__title {
        font-size: 48px;
    }

    .quality-card {
        min-height: auto;
        padding: 40px 28px 34px;
    }

    .quality-card__icon {
        margin-bottom: 30px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .quality-section {
        padding-top: 48px;
    }

    .quality-section__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .quality-card {
        border-radius: 22px;
        padding: 32px 22px 28px;
    }

    .quality-card__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

        .quality-card__icon img {
            width: 32px;
            height: 32px;
        }

    .quality-card__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .quality-card__text {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* SOLUTIONS SECTION */
.solutions-section {
    padding: 186px 0 0;
}

.solutions-section__bg {
    position: relative;
    padding: 0 0 86px;
}

    .solutions-section__bg::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 200px;
        bottom: 0;
        background: #0D472C;
        z-index: 0;
    }

    .solutions-section__bg > .container {
        position: relative;
        z-index: 1;
    }

.solutions-section__header {
    text-align: center;
    transform: translateY(-42px);
    margin-bottom: -2px;
}

.solutions-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    align-items: stretch;
}

.solution-card {
    position: relative;
    min-height: 724px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.solution-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 31, 18, 0.82) 0%, rgba(7, 31, 18, 0.46) 34%, rgba(7, 31, 18, 0.12) 62%, rgba(7, 31, 18, 0.02) 100%);
}

.solution-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 34px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.solution-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px;
}

.solution-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 22px;
    max-width: 320px;
}

.solution-card__link {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

    .solution-card__link:hover {
        opacity: 0.8;
    }

.solutions-partner {
    margin: 58px auto 0;
    max-width: 980px;
    display: grid;
    grid-template-columns: 126px 1fr;
    align-items: center;
    gap: 34px;
}

.solutions-partner__icon {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: #00A458;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

    .solutions-partner__icon img {
        width: 75px;
        height: 75px;
        object-fit: contain;
    }

.solutions-partner__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 28px;
    line-height: 1.60;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
    padding-left: 50px;
}

.solutions-partner__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    padding-left: 50px;
}

.solutions-partner__link {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

    .solutions-partner__link:hover {
        opacity: 0.8;
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .solutions-section {
        padding-top: 84px;
    }

    .solutions-section__bg::before {
        top: 215px;
    }

    .solutions-section__title {
        font-size: 62px;
    }

    .solution-card {
        min-height: 560px;
    }

    .solution-card__content {
        padding: 0 24px 42px;
    }

    .solution-card__title {
        font-size: 24px;
    }

    .solutions-partner {
        max-width: 900px;
        gap: 28px;
    }

    .solutions-partner__title {
        font-size: 25px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .solutions-section__bg {
        position: relative;
        background: transparent;
        padding: 0 0 86px;
    }

        .solutions-section__bg::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 190px;
            bottom: 0;
            background: #0D472C;
            z-index: 0;
            display: block;
        }

    .solutions-section__header {
        position: relative;
        z-index: 2;
        transform: none;
        margin-bottom: 28px;
        padding-top: 0;
    }

    .solutions-section__title {
        font-size: 48px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solution-card {
        min-height: 480px;
    }

    .solutions-partner {
        margin-top: 42px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 22px;
    }

    .solutions-partner__text {
        line-height: 1.75;
    }

    .solutions-partner__link {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* MOBILE */
/* MOBILE */
@media (max-width: 768px) {
    .solutions-section {
        padding-top: 64px;
    }

    .solutions-section__bg {
        position: relative;
        background: transparent;
        padding: 0 0 56px;
    }

    .solutions-section__bg::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 208px;
        bottom: 0;
        background: #0D472C;
        z-index: 0;
        display: block;
    }

    .solutions-section__header {
        position: relative;
        z-index: 2;
        margin-bottom: 18px;
        padding-top: 0;
        transform: none;
    }

    .solutions-section__title {
        font-size: 38px;
        line-height: 1.04;
        padding-bottom: 30px;
    }

    .solutions-grid {
        position: relative;
        z-index: 2;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solution-card {
        min-height: 560px;
        border-radius: 16px;
    }

    .solution-card__content {
        padding: 0 20px 26px;
    }

    .solution-card__title {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .solution-card__text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .solution-card__link {
        font-size: 17px;
    }

    .solutions-partner {
        margin-top: 34px;
        position: relative;
        z-index: 2;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 14px;
    }

    .solutions-partner__icon {
        display: none;
    }

    .solutions-partner__title {
        font-size: 24px;
        padding-left: 0;
    }

    .solutions-partner__text {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 0;
    }

    .solutions-partner__link {
        font-size: 17px;
        display: block;
        padding-top: 18px;
    }

}

/* DIMENSIONS SECTION */
.dimensions-section {
    padding: 118px 0 88px;
}

.dimensions-section__header {
    text-align: center;
    margin-bottom: 54px;
}

.dimensions-section__eyebrow {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 14px;
}

.dimensions-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
}

.dimensions-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dimensions-row {
    display: grid;
    grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
    align-items: center;
    gap: 34px;
}

.dimensions-row--image-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 660px);
}

.dimensions-media-card {
    position: relative;
    width: 100%;
    min-height: 434px;
    border-radius: 6px;
    overflow: hidden;
    background: #dcdcdc;
}

.dimensions-media-card__video {
    width: 100%;
    height: 100%;
    min-height: 434px;
    object-fit: cover;
    display: block;
}

.dimensions-media-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

    .dimensions-media-card__play:hover {
        transform: scale(1.04);
        background: rgba(255, 255, 255, 0.08);
    }

.dimensions-media-card__play-icon {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ffffff;
    margin-left: 6px;
}

.dimensions-text-card {
    min-height: 434px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 16px;
}

.dimensions-text-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 36px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #0D472C;
    margin: 0 0 22px;
}

.dimensions-text-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin: 0 0 28px;
    max-width: 540px;
}

.dimensions-text-card__link {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

    .dimensions-text-card__link:hover {
        opacity: 0.8;
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .dimensions-section {
        padding: 96px 0 76px;
    }

    .dimensions-section__title {
        font-size: 56px;
    }

    .dimensions-row,
    .dimensions-row--image-right {
        grid-template-columns: minmax(0, 55%) minmax(0, 45%);
        gap: 28px;
    }

    .dimensions-row--image-right {
        grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    }

    .dimensions-media-card,
    .dimensions-media-card__video,
    .dimensions-text-card {
        min-height: 390px;
    }

    .dimensions-text-card__title {
        font-size: 28px;
    }

    .dimensions-text-card__text {
        font-size: 15px;
        line-height: 1.75;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .dimensions-section {
        padding: 78px 0 70px;
    }

    .dimensions-section__header {
        margin-bottom: 34px;
    }

    .dimensions-section__title {
        font-size: 46px;
    }

    .dimensions-grid {
        gap: 28px;
    }

    .dimensions-row,
    .dimensions-row--image-right {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dimensions-media-card,
    .dimensions-media-card__video {
        min-height: 340px;
    }

    .dimensions-text-card {
        min-height: auto;
        padding: 0;
    }

    .dimensions-text-card__title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .dimensions-text-card__text {
        max-width: 100%;
        margin-bottom: 18px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .dimensions-section {
        padding: 56px 0 56px;
    }

    .dimensions-section__header {
        margin-bottom: 28px;
    }

    .dimensions-section__eyebrow {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .dimensions-section__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .dimensions-grid {
        gap: 22px;
    }

    .dimensions-media-card,
    .dimensions-media-card__video {
        min-height: 220px;
        border-radius: 10px;
    }

    .dimensions-media-card__play {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .dimensions-media-card__play-icon {
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 18px;
        margin-left: 4px;
    }

    .dimensions-text-card__title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .dimensions-text-card__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .dimensions-text-card__link {
        font-size: 18px;
    }

}

/* SHOWROOM SECTION */
.showroom-section {
    padding: 100px 0;
}

.showroom-card {
    border-radius: 0;
}

.showroom-wrapper {
    width: 100%;
    max-width: 1940px;
    margin: 0 auto;
}

.showroom-card {
    position: relative;
    min-height: 560px;
}

/* BAL OLDAL - KÉP */
.showroom-card__media {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 730px; /* magasabb, mint a zöld blokk */
    overflow: hidden;
    z-index: 2;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

    .showroom-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* JOBB OLDAL - ZÖLD BLOKK */
.showroom-card__content {
    background: #CEF0E0;
    width: 65%;
    min-height: 694px; /* alacsonyabb mint a kép */
    margin-left: auto;
    padding: 72px 88px 72px 480px; /* jobbra tolja a szöveget */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 0;
}

/* TYPO */
.showroom-card__eyebrow {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.showroom-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0 0 24px;
}

.showroom-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 28px;
    max-width: 580px;
    font-weight: 400;
}

.showroom-card__link {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

    .showroom-card__link:hover {
        opacity: 0.8;
    }

/* csak nagyon nagy monitoron legyen külső lekerekítés */
@media (min-width: 1930px) {
    .showroom-card__media {
        border-radius:20px;
    }

    .showroom-card__content {
        border-radius:20px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .showroom-card {
        position: static;
        min-height: auto;
    }

    .showroom-card__media {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 320px;
        margin-bottom: 20px;
        border-radius: 20px 20px 0 0;
    }

    .showroom-card__content {
        width: 100%;
        min-height: auto;
        padding: 40px 32px;
        border-radius: 0 0 20px 20px;
    }

    .showroom-card__title {
        font-size: 36px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .showroom-section {
        padding: 60px 0;
    }

    .showroom-card__media {
        height: 240px;
    }

    .showroom-card__content {
        padding: 32px 20px;
    }

    .showroom-card__title {
        font-size: 28px;
    }

    .showroom-card__text {
        font-size: 15px;
    }
}

/* PLANNER SECTION */
.planner-section {
    padding: 100px 0;
}

.planner-wrapper {
    width: 100%;
    max-width: 1940px;
    margin: 0 auto;
}

.planner-card {
    min-height: 762px;
    background-image: url('/images/home/planner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.planner-card__content {
    max-width: 800px;
    padding: 140px 0 120px 170px;
    position: relative;
    z-index: 1;
}

.planner-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 80px;
    line-height: 1.03;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 30px;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.planner-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 34px;
    max-width: 530px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.planner-card__button {
    min-height: 58px;
    padding: 0 34px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    color: #ffffff;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .planner-card__button:hover {
        background: #ffffff;
        color: #111111;
        transform: translateY(-1px);
    }

/* csak 1930 fölött legyen lekerekítés */
@media (min-width: 1930px) {
    .planner-card {
        border-radius: 20px;
    }
}

/* LAPTOP */
@media (max-width: 1400px) {
    .planner-section {
        padding: 84px 0;
    }

    .planner-card {
        min-height: 620px;
    }

    .planner-card__content {
        padding: 110px 0 90px 90px;
        max-width: 520px;
    }

    .planner-card__title {
        font-size: 60px;
    }

    .planner-card__text {
        font-size: 17px;
        max-width: 430px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .planner-card {
        min-height: 520px;
        background-position: 62% center;
    }

    .planner-card__content {
        padding: 72px 32px 72px 32px;
        max-width: 460px;
    }

    .planner-card__title {
        font-size: 46px;
    }

    .planner-card__text {
        font-size: 16px;
        line-height: 1.65;
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .planner-section {
        padding: 30px 0 10px;
    }

    .planner-card {
        min-height: 420px;
        background-position: 5% center;
    }

    .planner-card__content {
        padding: 40px 20px 40px 20px;
        max-width: 100%;
    }

    .planner-card__title {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .planner-card__text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 320px;
    }

    .planner-card__button {
        min-height: 52px;
        padding: 0 26px;
        font-size: 17px;
        display: flex;
        margin: 0 auto;
    }
}




/* REVIEWS SECTION */
.reviews-section {
    padding: 96px 0 88px;
}

.reviews-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    color: #00A458;
    margin: 0;
}

.reviews-fullbleed {
    width: 100%;
    max-width: 1930px;
    margin: 0 auto; /* EZ HIÁNYZIK */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

.review-card {
    display: flex;
    flex-direction: column;
}

.review-card__bubble {
    position: relative;
    background: #f1fbf6;
    border-radius: 14px;
    min-height: 270px;
    padding: 46px 34px 40px;
    margin-bottom: 26px;
}

    .review-card__bubble::after {
        content: "";
        position: absolute;
        left: 56px;
        bottom: -12px;
        width: 24px;
        height: 24px;
        background: #f1fbf6;
        transform: rotate(45deg);
        border-radius: 4px;
    }

.review-card__quote {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    font-style: italic;
    color: #2a2a2a;
    margin: 0;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
}

.review-card__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .review-card__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__name {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.review-card__role {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #444444;
    margin: 0;
}

.reviews-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.reviews-section__button {
    min-height: 56px;
    padding: 0 28px;
    border: 2px solid #00A458;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    color: #111111;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .reviews-section__button:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

/* 1930 alatt a két szélső buborék külső oldala legyen levágva */
@media (max-width: 1929px) {
    .review-card__bubble--left {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .review-card__bubble--right {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* LAPTOP */
@media (max-width: 1400px) {
    .reviews-section__title {
        font-size: 56px;
    }

    .reviews-grid {
        gap: 16px;
    }

    .review-card__bubble {
        min-height: 250px;
        padding: 38px 28px 34px;
    }

    .review-card__quote {
        font-size: 15px;
        line-height: 1.8;
    }

    .review-card__author {
        padding: 0 20px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .reviews-section {
        padding: 76px 0 72px;
    }

    .reviews-section__header {
        margin-bottom: 34px;
    }

    .reviews-section__title {
        font-size: 48px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 0 24px;
    }

    .review-card__bubble,
    .review-card__bubble--left,
    .review-card__bubble--right {
        border-radius: 14px;
        min-height: auto;
    }

    .review-card__author {
        padding: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .reviews-section {
        padding: 56px 0 56px;
    }

    .reviews-section__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .reviews-section__header {
        margin-bottom: 26px;
    }

    .reviews-grid {
        padding: 0 16px;
    }

    .review-card__bubble,
    .review-card__bubble--left,
    .review-card__bubble--right {
        padding: 28px 20px 24px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

        .review-card__bubble::after {
            left: 34px;
            width: 18px;
            height: 18px;
            bottom: -9px;
        }

    .review-card__quote {
        font-size: 15px;
        line-height: 1.75;
    }

    .review-card__avatar {
        width: 48px;
        height: 48px;
    }

    .review-card__name,
    .review-card__role {
        font-size: 14px;
    }

    .reviews-section__button {
        width: 100%;
        font-size: 17px;
    }
}

/* KNOWLEDGE SECTION */
.knowledge-section {
    padding: 96px 0 88px;
}

.knowledge-section__header {
    text-align: center;
    margin-bottom: 34px;
}

.knowledge-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    color: #00A458;
    margin: 0 0 6px;
}

.knowledge-section__subtitle {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.knowledge-featured {
    display: grid;
    grid-template-columns: 684px 1fr;
    gap: 46px;
    align-items: start;
    margin-bottom: 34px;
}

.knowledge-featured__image-wrap {
    display: block;
    width: 100%;
}

.knowledge-featured__image {
    width: 100%;
    height: 447px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.knowledge-featured__content {
    padding-top: 8px;
}

.knowledge-featured__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #0D472C;
    margin: 0 0 14px;
}

.knowledge-featured__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 18px;
    max-width: 620px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.knowledge-card__image-wrap {
    display: block;
    width: 100%;
    margin-bottom: 14px;
}

.knowledge-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.knowledge-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #0D472C;
    margin: 0 0 8px;
}

.knowledge-card__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 10px;
    max-width: 400px;
}

.knowledge-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

    .knowledge-link:hover {
        opacity: 0.8;
    }

.knowledge-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.knowledge-section__button {
    min-height: 48px;
    padding: 0 26px;
    border: 2px solid #00A458;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #000000;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .knowledge-section__button:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .knowledge-section__title {
        font-size: 56px;
    }

    .knowledge-section__subtitle {
        font-size: 22px;
    }

    .knowledge-featured {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 34px;
    }

    .knowledge-featured__image {
        height: 400px;
    }

    .knowledge-featured__title {
        font-size: 32px;
    }

    .knowledge-featured__text,
    .knowledge-card__text {
        font-size: 17px;
    }

    .knowledge-card__image {
        height: 250px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .knowledge-section {
        padding: 76px 0 72px;
    }

    .knowledge-section__header {
        margin-bottom: 28px;
    }

    .knowledge-section__title {
        font-size: 48px;
    }

    .knowledge-section__subtitle {
        font-size: 20px;
    }

    .knowledge-featured {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .knowledge-featured__content {
        padding-top: 0;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .knowledge-featured {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 28px;
    }

    .knowledge-featured__image-wrap {
        order: 1;
    }

    .knowledge-featured__content {
        order: 2;
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .knowledge-featured__title {
        order: 1;
        padding-top: 12px;
    }

    .knowledge-featured__text {
        order: 2;
    }

    .knowledge-link {
        order: 3;
        align-self: flex-start;
        margin-top: 2px;
        padding-bottom: 12px;
    }

    .knowledge-grid {
        display: none;
    }

    .knowledge-section__footer {
        margin-top: 0;
    }
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 88px 0 96px;
}

.newsletter-card {
    position: relative;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('/images/home/newsletter-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.newsletter-card__content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 68px 68px 56px 68px; 
}

.newsletter-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 10px;
}

.newsletter-card__subtitle {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 28px;
}

.newsletter-card__button {
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    color: #111111;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .newsletter-card__button:hover {
        background: #ffffff;
        transform: translateY(-1px);
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .newsletter-section {
        padding: 72px 0 84px;
    }

    .newsletter-card {
        min-height: 290px;
    }

    .newsletter-card__content {
        max-width: 660px;
        padding: 56px 48px 48px 48px;
    }

    .newsletter-card__title {
        font-size: 54px;
    }

    .newsletter-card__subtitle {
        font-size: 21px;
    }

    .newsletter-card__logo {
        top: 30px;
        right: 96px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .newsletter-section {
        padding: 64px 0 76px;
    }

    .newsletter-card {
        min-height: 300px;
        border-radius: 12px;
        background-position: center;
    }

    .newsletter-card__content {
        max-width: 560px;
        padding: 42px 36px 40px;
    }

    .newsletter-card__title {
        font-size: 42px;
        line-height: 1.12;
        margin-bottom: 8px;
    }

    .newsletter-card__subtitle {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 22px;
    }

    .newsletter-card__button {
        min-height: 50px;
        font-size: 17px;
        padding: 0 22px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 56px 0 64px;
    }

    .newsletter-card {
        min-height: 520px;
        border-radius: 10px;
        background-image: url('/images/home/newsletter-bg-mob.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .newsletter-card__content {
        max-width: 100%;
        padding: 42px 24px 36px;
        text-align: center;
    }

    .newsletter-card__title {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .newsletter-card__subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .newsletter-card__button {
        width: auto;
        min-width: 230px;
        max-width: 100%;
        min-height: 48px;
        padding: 0 22px;
        font-size: 16px;
        margin: 0 auto;
    }
}





/*------------------------------------------------------------------------------ GREEN WALLS ----------------------------------------------------------------------------------------------------------*/

/* GREENWALLS INTRO */
.greenwalls-intro {
    padding: 34px 0 76px;
}

.greenwalls-intro__top {
    margin-bottom: 42px;
}

.greenwalls-intro__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #707070;
}

    .greenwalls-intro__breadcrumbs a,
    .greenwalls-intro__breadcrumbs span {
        color: inherit;
    }

.greenwalls-intro__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0 0 20px;
}

.greenwalls-intro__lead {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.9;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    max-width: 1440px;
}

.greenwalls-intro__main {
    display: grid;
    grid-template-columns: minmax(0, 684px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    margin-bottom: 32px;
}

.greenwalls-intro__media {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #d9d9d9;
}

.greenwalls-intro__video {
    width: 100%;
    height: 447px;
    object-fit: cover;
    display: block;
}

.greenwalls-intro__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 86px;
    height: 86px;
    border: 3px solid rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .greenwalls-intro__play:hover {
        transform: scale(1.04);
        background: rgba(255, 255, 255, 0.08);
    }

.greenwalls-intro__play-icon {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #ffffff;
    margin-left: 6px;
}

.greenwalls-intro__content {
    padding-top: 10px;
}

.greenwalls-intro__subtitle {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 18px;
}

.greenwalls-intro__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

.greenwalls-intro__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.greenwalls-intro__action-card {
    min-height: 83px;
    border: 2px solid #D5FAE9;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 16px 0 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .greenwalls-intro__action-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    }

.greenwalls-intro__action-icon {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: #CEF0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .greenwalls-intro__action-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
    }

.greenwalls-intro__action-text {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    flex: 1 1 auto;
}

.greenwalls-intro__action-arrow {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #00A458;
    flex-shrink: 0;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .greenwalls-intro__title {
        font-size: 56px;
    }

    .greenwalls-intro__lead {
        font-size: 20px;
    }

    .greenwalls-intro__main {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
        gap: 30px;
    }

    .greenwalls-intro__video {
        height: 410px;
    }

    .greenwalls-intro__subtitle {
        font-size: 32px;
    }

    .greenwalls-intro__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .greenwalls-intro {
        padding: 24px 0 64px;
    }

    .greenwalls-intro__title {
        font-size: 48px;
    }

    .greenwalls-intro__lead {
        font-size: 18px;
        line-height: 1.8;
    }

    .greenwalls-intro__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .greenwalls-intro__content {
        padding-top: 0;
    }

    .greenwalls-intro__video {
        height: 360px;
    }

    .greenwalls-intro__actions {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .greenwalls-intro {
        padding: 18px 0 48px;
    }

    .greenwalls-intro__breadcrumbs {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 8px;
    }

    .greenwalls-intro__title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .greenwalls-intro__lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .greenwalls-intro__video {
        height: 250px;
    }

    .greenwalls-intro__play {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .greenwalls-intro__play-icon {
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 18px;
        margin-left: 4px;
    }

    .greenwalls-intro__subtitle {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .greenwalls-intro__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .greenwalls-intro__action-card {
        min-height: 76px;
        gap: 14px;
        padding: 0 14px 0 12px;
    }

    .greenwalls-intro__action-icon {
        width: 52px;
        height: 52px;
    }

        .greenwalls-intro__action-icon img {
            width: 36px;
            height: 36px;
        }

    .greenwalls-intro__action-text,
    .greenwalls-intro__action-arrow {
        font-size: 18px;
    }
}

/* ARTIFICIAL PRODUCTS SECTION */
.artificial-products-section {
    padding: 92px 0 84px;
}

.artificial-products-section__header {
    text-align: center;
    margin-bottom: 34px;
}

.artificial-products-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    color: #00A458;
    margin: 0 0 12px;
}

.artificial-products-section__subtitle {
    max-width: 1130px;
    margin: 0 auto;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.artificial-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 34px;
}

.artificial-product-card {
    padding: 0 34px 14px;
    position: relative;
}

    .artificial-product-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: #00A458;
        opacity: 0.35;
    }

    .artificial-product-card:nth-child(3n)::after {
        display: none;
    }

.artificial-product-card__image-wrap {
    display: block;
    width: 100%;
    margin-bottom: 16px;
}

.artificial-product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    background: #f1fbf6;
    border-radius: 10px;
}

.artificial-product-card__content {
    display: flex;
    flex-direction: column;
}

.artificial-product-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 6px;
}

.artificial-product-card__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 18px;
}

.artificial-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
}

.artificial-product-card__price {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
    white-space: nowrap;
}

.artificial-product-card__button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

    .artificial-product-card__button:hover {
        transform: translateY(-1px);
        opacity: 0.92;
    }

.artificial-product-card__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .artificial-product-card__button-icon img {
        width: auto;
        height: 20px;
        display: block;
    }

.artificial-products-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.artificial-products-section__button {
    min-height: 52px;
    padding: 0 24px;
    border: 2px solid #00A458;
    border-radius: 999px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .artificial-products-section__button:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .artificial-products-section__title {
        font-size: 56px;
    }

    .artificial-product-card {
        padding: 0 24px 14px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .artificial-products-section {
        padding: 74px 0 72px;
    }

    .artificial-products-section__title {
        font-size: 48px;
    }

    .artificial-products-section__subtitle {
        font-size: 17px;
    }

    .artificial-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .artificial-product-card:nth-child(3n)::after {
        display: block;
    }

    .artificial-product-card:nth-child(2n)::after {
        display: none;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .artificial-products-section {
        padding: 56px 0 56px;
    }

    .artificial-products-section__header {
        margin-bottom: 26px;
    }

    .artificial-products-section__title {
        font-size: 38px;
        line-height: 1.04;
    }

    .artificial-products-section__subtitle {
        font-size: 16px;
        line-height: 1.65;
    }

    .artificial-products-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .artificial-product-card {
        padding: 0 0 12px;
    }

        .artificial-product-card::after {
            display: none;
        }

    .artificial-product-card__title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .artificial-product-card__text {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .artificial-product-card__footer {
        gap: 12px;
    }

    .artificial-product-card__price {
        font-size: 22px;
    }

    .artificial-product-card__button {
        min-height: 42px;
        padding: 0 16px;
        font-size: 15px;
    }

    .artificial-products-section__subtitle {
        display: none;
    }

    .artificial-products-grid .artificial-product-card:nth-child(n+6) {
        display: none;
    }

    .artificial-products-section__button {
        width: 100%;
    }
}

/* GREENWALL GALLERY SECTION */
.greenwall-gallery-section {
    padding: 96px 0 110px;
    overflow: hidden;
}

.greenwall-gallery-section__header {
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 0 24px;
    text-align: center;
}

.greenwall-gallery-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 6px;
}

.greenwall-gallery-section__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    margin: 0 auto;
    max-width: none;
}

.greenwall-gallery {
    position: relative;
    width: 100%;
}

.greenwall-gallery__track-wrap {
    position: relative;
    overflow: hidden;
    /* pontosan 3 kép + 2 gap */
    max-width: calc(1000px * 3 + 18px * 2);
    margin: 0 auto;
}

.greenwall-gallery__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    will-change: transform;
    transition: transform 0.5s ease;
    padding: 0;
}

.greenwall-gallery__slide {
    width: 1000px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #e9efe9;
    flex: 0 0 auto;
}

    .greenwall-gallery__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.greenwall-gallery__fade {
    display: none;
}

/* nyilak */
.greenwall-gallery__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: 2px solid #00A458;
    border-radius: 50%;
    background: #ffffff;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

    .greenwall-gallery__nav:hover {
        background: #00A458;
        color: #ffffff;
    }


.greenwall-gallery__nav-icon {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.greenwall-gallery__fade {
    display: none;
}

@media (min-width: 1930px) {
    .greenwall-gallery__fade {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 140px;
        z-index: 4;
        pointer-events: none;
    }

    .greenwall-gallery__fade--left {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
    }

    .greenwall-gallery__fade--right {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
    }
}

/* LAPTOP */
@media (max-width: 1600px) {
    .greenwall-gallery__slide {
        width: 880px;
    }
}



/* TABLET */
@media (max-width: 1100px) {
    .greenwall-gallery-section {
        padding: 72px 0 84px;
    }

    .greenwall-gallery-section__title {
        font-size: 32px;
    }

    .greenwall-gallery-section__text {
        font-size: 16px;
    }

    .greenwall-gallery__slide {
        width: 78vw;
        max-width: 760px;
        border-radius: 12px;
    }

    .greenwall-gallery__nav {
        width: 60px;
        height: 60px;
    }

}

/* MOBILE */
@media (max-width: 768px) {
    .greenwall-gallery-section {
        padding: 56px 0 64px;
    }

    .greenwall-gallery-section__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .greenwall-gallery-section__title {
        font-size: 28px;
    }

    .greenwall-gallery-section__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .greenwall-gallery__slide {
        width: 82vw;
        border-radius: 10px;
    }

    .greenwall-gallery__nav {
        width: 52px;
        height: 52px;
    }

    .greenwall-gallery__nav-icon {
        font-size: 28px;
    }
}

.greenwall-gallery__nav {
    opacity: 1;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.13s ease; /* gyorsabb eltűnés */
}

    .greenwall-gallery__nav.is-hiding {
        opacity: 0;
        pointer-events: none;
    }

    .greenwall-gallery__nav.is-showing {
        opacity: 1;
    }


/* SPORT TYPES SECTION */
.sport-types-section {
    padding: 96px 0 92px;
}

.sport-types-section__header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 64px;
}

.sport-types-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0 0 18px;
}

.sport-types-section__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0 auto;
    max-width: 1180px;
}

.sport-types-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sport-type-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.sport-type-card__media {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #d9d9d9;
}

.sport-type-card__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sport-type-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sport-type-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 6px;
}

.sport-type-card__specs {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 18px;
}

.sport-type-card__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

.sport-type-card--image-right .sport-type-card__content {
    order: 1;
}

.sport-type-card--image-right .sport-type-card__media {
    order: 2;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .sport-types-section {
        padding: 84px 0 84px;
    }

    .sport-types-section__title {
        font-size: 56px;
    }

    .sport-type-card {
        gap: 32px;
    }

    .sport-type-card__image {
        height: 380px;
    }

    .sport-type-card__title {
        font-size: 32px;
    }

    .sport-type-card__specs {
        font-size: 22px;
    }

    .sport-type-card__text,
    .sport-types-section__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .sport-types-section {
        padding: 72px 0 72px;
    }

    .sport-types-section__header {
        margin-bottom: 42px;
    }

    .sport-types-section__title {
        font-size: 48px;
    }

    .sport-type-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sport-type-card--image-right .sport-type-card__content,
    .sport-type-card--image-right .sport-type-card__media {
        order: initial;
    }

    .sport-type-card__image {
        height: 340px;
    }

    .sport-type-card__title {
        font-size: 30px;
    }

    .sport-type-card__specs {
        font-size: 21px;
        margin-bottom: 14px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .sport-types-section {
        padding: 56px 0 56px;
    }

    .sport-types-section__header {
        margin-bottom: 30px;
    }

    .sport-types-section__title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 12px;
    }

    .sport-types-section__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .sport-types-list {
        gap: 32px;
    }

    .sport-type-card__image {
        height: 240px;
    }

    .sport-type-card__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .sport-type-card__specs {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .sport-type-card__text {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* CTA SECTION */
.cta-section {
    background: #0D472C;
    width: 100%;
    padding: 96px 0;
}

.cta-section__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 16px;
}

.cta-section__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0 auto 28px;
    max-width: 720px;
}

/* GOMB - a korábbi stílushoz igazítva */
.cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    transition: all 0.25s ease;
}

    .cta-section__button:hover {
        background: #ffffff;
        color: #0D472C;
    }

/* SECTION */
.about-mission {
    padding: 34px 0 96px;
}


/* TITLE */
.about-mission__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #00A458;
    margin-bottom: 24px;
}

/* LEAD TEXT */
.about-mission__lead {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.9;
    color: #000000;
    max-width: 1440px;
    margin-bottom: 40px;
}

/* IMAGE */
.about-mission__media {
    width: 100%;
    margin-bottom: 32px;
}

    .about-mission__media img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

/* SMALL TEXT (korábbi stílus logika) */
.about-mission__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    max-width: 1440px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .about-mission__title {
        font-size: 42px;
    }

    .about-mission__lead {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-mission {
        padding: 48px 0 64px;
    }

    .about-mission__title {
        font-size: 32px;
    }

    .about-mission__lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-mission__text {
        font-size: 14px;
    }
}

/* ABOUT VALUES */
.about-values {
    padding: 92px 0 90px;
}

.about-values__header {
    text-align: center;
    margin-bottom: 52px;
}

.about-values__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 42px;
}

.about-values__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: start;
    gap: 18px;
}

.about-values__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #CEF0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-values__icon img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
    }

.about-values__content {
    padding-top: 2px;
}

.about-values__item-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 10px;
}

.about-values__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    max-width: 320px;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .about-values__title {
        font-size: 56px;
    }

    .about-values__grid {
        column-gap: 34px;
    }

    .about-values__item-title {
        font-size: 22px;
    }

    .about-values__text {
        font-size: 17px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .about-values {
        padding: 74px 0 74px;
    }

    .about-values__header {
        margin-bottom: 38px;
    }

    .about-values__title {
        font-size: 48px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 32px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-values {
        padding: 56px 0 56px;
    }

    .about-values__header {
        margin-bottom: 28px;
    }

    .about-values__title {
        font-size: 38px;
        line-height: 1.08;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .about-values__item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }

    .about-values__icon {
        width: 56px;
        height: 56px;
    }

        .about-values__icon img {
            width: 26px;
            height: 26px;
        }

    .about-values__item-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .about-values__text {
        font-size: 16px;
        line-height: 1.65;
        max-width: none;
    }
}

/* SECTION */
.partners-section {
    padding: 96px 0;
}

/* FELSŐ BLOKK */
.partners-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.partners-main__media img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.partners-main__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    color: #00A458;
    margin-bottom: 16px;
}

.partners-main__text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 20px;
}

.partners-main__link {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

    .partners-main__link:hover {
        text-decoration: underline;
    }

/* ALSÓ RÉSZ */
.partners-sub__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #00A458;
    margin-bottom: 48px;
}

.partners-sub__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

/* KÁRTYA */
.partners-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    align-items: center;
}

.partners-card__media img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.partners-card__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.partners-card__text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.partners-card__link {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

    .partners-card__link:hover {
        text-decoration: underline;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .partners-main {
        grid-template-columns: 1fr;
    }

    .partners-sub__grid {
        grid-template-columns: 1fr;
    }

    .partners-card {
        grid-template-columns: 1fr;
    }
}

/* CAREER CTA SECTION */
.career-cta-section {
    background: #0D472C;
    width: 100%;
    padding: 96px 0;
}

.career-cta-section__inner {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.career-cta-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 18px;
}

.career-cta-section__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0 auto 30px;
    max-width: 760px;
}

.career-cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .career-cta-section__button:hover {
        background: #ffffff;
        color: #0D472C;
        transform: translateY(-1px);
    }

/* TABLET */
@media (max-width: 1100px) {
    .career-cta-section {
        padding: 76px 0;
    }

    .career-cta-section__title {
        font-size: 40px;
    }

    .career-cta-section__text {
        font-size: 17px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .career-cta-section {
        padding: 56px 0;
    }

    .career-cta-section__title {
        font-size: 32px;
        line-height: 1.12;
    }

    .career-cta-section__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .career-cta-section__button {
        width: 100%;
        max-width: 320px;
        min-height: 50px;
        font-size: 17px;
    }
}

/* CASE STUDIES */
.case-studies-section {
    padding: 92px 0 88px;
}

.case-studies-section__container {
    max-width: 1600px;
}

.case-studies-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #00A458;
    text-align: center;
    margin: 0 0 56px;
}

.case-studies-slider {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 28px;
}

.case-studies-slider__item {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 46px;
    align-items: center;
}

.case-studies-slider__media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #d9d9d9;
}

.case-studies-slider__image {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.case-studies-slider__content {
    max-width: 620px;
}

.case-studies-slider__item-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 18px;
}

.case-studies-slider__text {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 20px;
}

.case-studies-slider__link {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

    .case-studies-slider__link:hover {
        opacity: 0.75;
    }

.case-studies-slider__nav {
    width: 72px;
    height: 72px;
    border: 2px solid #00A458;
    border-radius: 50%;
    background: #ffffff;
    color: #00A458;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.13s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    justify-self: center;
}

    .case-studies-slider__nav:hover {
        background: #00A458;
        color: #ffffff;
        transform: scale(1.04);
    }

    .case-studies-slider__nav.is-hiding {
        opacity: 0;
        pointer-events: none;
    }

.case-studies-slider__nav-icon {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.case-studies-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.case-studies-section__button {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #00A458;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000000;
    text-decoration: none;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .case-studies-section__button:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

/* LAPTOP */
@media (max-width: 1400px) {
    .case-studies-section__title {
        font-size: 56px;
        margin-bottom: 42px;
    }

    .case-studies-slider {
        grid-template-columns: 64px minmax(0, 1fr) 64px;
        gap: 18px;
    }

    .case-studies-slider__item {
        gap: 34px;
    }

    .case-studies-slider__image {
        height: 420px;
    }

    .case-studies-slider__item-title {
        font-size: 32px;
    }

    .case-studies-slider__text {
        font-size: 17px;
    }

    .case-studies-slider__nav {
        width: 64px;
        height: 64px;
    }
}

/* TABLET */
@media (max-width: 1100px) {
    .case-studies-section {
        padding: 74px 0 72px;
    }

    .case-studies-section__title {
        font-size: 48px;
    }

    .case-studies-slider {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .case-studies-slider__item {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .case-studies-slider__content {
        max-width: 100%;
    }

    .case-studies-slider__image {
        height: 380px;
    }

    .case-studies-slider__nav {
        order: 2;
    }

    .case-studies-slider__nav--prev,
    .case-studies-slider__nav--next {
        justify-self: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .case-studies-section {
        padding: 56px 0 56px;
    }

    .case-studies-section__title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 30px;
    }

    .case-studies-slider__image {
        height: 260px;
    }

    .case-studies-slider__item-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .case-studies-slider__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .case-studies-slider__nav {
        width: 56px;
        height: 56px;
    }

    .case-studies-slider__nav-icon {
        font-size: 28px;
    }

    .case-studies-section__button {
        width: 100%;
        max-width: 280px;
        font-size: 17px;
    }
}

/* --- CONTACT --- */

.contact-section {
    padding: 60px 20px 40px;
    background-color: #ffffff;
    color: #000000;
}

.contact-title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    text-align: center;
    font-size: 64px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    color: #00A458;
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 400;
    color: #000000;
    margin-top: -25px;
    margin-bottom: 50px;
}

    .contact-subtitle::after {
        content: "";
        display: block;
        width: 240px;
        height: 4px;
        margin: 18px auto 32px;
        border-radius: 999px;
        background: linear-gradient( to right, rgba(206,240,224,0), #7ED9B3, #00A458, #7ED9B3, rgba(206,240,224,0) );
    }

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form,
.contact-map {
    flex: 1 1 45%;
    min-width: 320px;
}

    .contact-form label {
        display: block;
        font-family: 'IBM Plex Sans Condensed', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 8px;
        color: #000000;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #d9eee1;
        border-radius: 10px;
        font-size: 1rem;
        margin-bottom: 20px;
        font-family: 'Barlow', sans-serif;
        color: #000000;
        resize: none;
        background: #ffffff;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .contact-form input.error,
        .contact-form textarea.error {
            border: 2px solid #d93025;
            outline: none;
        }

        .contact-form input:focus:not(.error),
        .contact-form textarea:focus:not(.error) {
            border-color: #00A458;
            box-shadow: 0 0 0 4px rgba(0, 164, 88, 0.12);
            outline: none;
        }

        .contact-form input.error:focus,
        .contact-form textarea.error:focus {
            border-color: #b30000;
            box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
            outline: none;
        }

.submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border: 2px solid #00A458;
    border-radius: 999px;
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: 16px;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        background: #00A458;
        color: #ffffff;
    }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.form-message {
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #0D472C;
}

/* TABLET */
@media (max-width: 1100px) {
    .contact-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        padding: 48px 16px 32px;
    }

    .contact-title {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 34px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-top: -12px;
        margin-bottom: 34px;
    }

        .contact-subtitle::after {
            width: 140px;
            margin: 14px auto 22px;
        }

    .contact-form label {
        font-size: 22px;
    }

    .submit-btn {
        width: 100%;
    }
}


/* =============================================================================================================================================================
                                                                   GLOBAL RESPONSIVE SAFETY
================================================================================================================================================================ */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.container,
.container-wide {
    width: min(100%, var(--container-width));
}

.site-header,
.site-footer,
.hero-card,
.hero-mission,
.greenwall-gallery-section,
.case-studies-section,
.reviews-section,
.newsletter-section {
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
p,
a,
span {
    overflow-wrap: break-word;
}

/* több hely a fix szélességű vagy grid elemeknek */
.header-top__inner,
.header-bottom__inner,
.header-info,
.main-nav,
.partners-grid,
.reviews-grid,
.knowledge-featured,
.greenwalls-intro__main,
.sport-type-card,
.dimensions-row,
.case-studies-slider__item,
.contact-wrapper {
    min-width: 0;
}

/* tipikus kilógás javítás */
.partner-card {
    width: 100%;
    max-width: 318px;
    justify-self: center;
}

/* =========================================
   PANDA GRASS FOOTER – MOBIL A KÉP SZERINT
========================================= */

@media (max-width: 768px) {
    .site-footer {
        margin-top: 56px;
        padding-bottom: 24px;
    }

        .site-footer .container {
            padding: 0;
            max-width: 100%;
        }

    .footer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        width: calc(100%);
        margin: 0 auto;
        padding: 30px 18px 34px;
        border-radius: 18px;
    }

    .footer-col,
    .footer-col--brand {
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

        .footer-col:not(:first-child) {
            border-left: none;
            padding-left: 0;
        }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 6px;
    }

    .footer-logo {
        width: 210px;
        max-width: 100%;
        margin: 0 0 22px;
    }

    .footer-contact {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 26px;
    }

        .footer-contact p {
            margin: 0;
            text-align: left;
            font-size: 14px;
            line-height: 1.55;
        }

    .footer-social {
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
    }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .footer-social img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

    .footer-col h4 {
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 14px;
        text-align: left;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 0;
        margin: 0;
    }

    .footer-col li {
        width: 100%;
        text-align: left;
    }

    .footer-col a {
        display: inline-block;
        font-size: 14px;
        line-height: 1.45;
        text-align: left;
    }

    .footer-bottom {
        padding: 18px 16px 0;
    }

    .footer-bottom__bg {
        display: none;
    }

    .footer-bottom__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        text-align: center;
    }

    .footer-bottom__payments {
        order: 1;
    }

        .footer-bottom__payments img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

    .footer-bottom__copyright {
        order: 2;
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
        text-align: center;
    }

    .footer-bottom__credit {
        display: none;
    }

    .footer {
        padding: 26px 18px 28px;
        gap: 22px 18px;
    }

    /* BRAND blokk */
    .footer-col--brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-left: 35px;
    }

    /* LOGÓ */
    .footer-logo {
        width: 190px;
        margin: 0;
    }

    /* ELÉRHETŐSÉGEK */
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin: 0;
    }

        .footer-contact p {
            margin: 0;
            font-size: 14px;
            line-height: 1.45;
        }

    /* SOCIAL */
    .footer-social {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        margin-top: 8px;
    }

        .footer-social a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-social img {
            width: 20px;
            height: 20px;
        }
}
/* =========================
   HEADER / MOBILE NAV
========================= */

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1102;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: var(--color-primary);
        display: block;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-toggle:hover {
        border-color: var(--color-primary);
    }

.mobile-header-info {
    display: none;
}

/* tablet és lejjebb */
@media (max-width: 1100px) {
    .header-top__inner {
        min-height: 84px;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 12px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .header-logo {
        position: relative;
        z-index: 1102;
    }

        .header-logo img {
            width: 220px;
        }

    .header-info {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: auto;
    }

    .header-actions {
        order: 4;
        gap: 14px;
        position: relative;
        z-index: 1102;
    }

    .header-actions__icon {
        width: 30px;
        height: 30px;
    }

        .header-actions__icon img {
            width: 26px;
            height: 26px;
        }

    .header-bottom {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 1100;
    }

    .site-header.is-nav-open .header-bottom {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-bottom__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px 24px 24px;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        white-space: normal;
    }

    .main-nav__link {
        width: 100%;
        height: auto;
        min-height: 44px;
        justify-content: center;
        text-align: center;
        font-size: 18px;
        line-height: 1.25;
        white-space: normal;
        padding: 8px 0;
    }

        .main-nav__link::after {
            display: none;
        }

    .main-nav__dot {
        display: none;
    }

    .header-cta {
        width: 100%;
        max-width: 320px;
        justify-self: center;
    }

    .mobile-header-info {
        display: grid;
        gap: 14px;
        padding-top: 4px;
        border-top: 1px solid var(--color-border);
    }

        .mobile-header-info .header-info__item {
            justify-content: center;
            text-align: center;
            align-items: center;
        }

        .mobile-header-info .header-info__text {
            align-items: center;
        }

    .site-header.is-nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-top__inner {
        min-height: 74px;
        grid-template-columns: auto 1fr auto auto;
        gap: 10px;
    }

    .header-logo img {
        width: 180px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions__icon {
        width: 28px;
        height: 28px;
    }

        .header-actions__icon img {
            width: 24px;
            height: 24px;
        }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -3px;
        right: -4px;
    }

    .header-bottom__inner {
        padding: 16px 18px 18px;
    }

    .main-nav__link {
        font-size: 17px;
        min-height: 40px;
    }

    .mobile-header-info .header-info__item {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-header-info .header-info__icon {
        width: 50px;
        height: 50px;
    }

        .mobile-header-info .header-info__icon img {
            width: 28px;
            height: 28px;
        }

    .mobile-header-info .header-info__label,
    .mobile-header-info .header-info__value {
        white-space: normal;
    }
}

body.menu-open {
    overflow: hidden;
}

.nav-toggle {
    pointer-events: auto;
    z-index: 1200;
}

.header-actions,
.header-logo {
    z-index: 1102;
}

.header-top__inner {
    position: relative;
}

/* =========================
   MOBILE CONTENT ORDER FIX
========================= */

@media (max-width: 1100px) {
    .dimensions-row,
    .dimensions-row--image-right,
    .greenwalls-intro__main,
    .knowledge-featured,
    .sport-type-card,
    .sport-type-card--image-right,
    .partners-main,
    .case-studies-slider__item,
    .showroom-card,
    .pp-brand-showcase__item,
    .pp-brand-showcase__item--reverse,
    .pp-brand-feature,
    .pp-sister-brand-card {
        display: flex;
        flex-direction: column;
    }

    /* általános sorrend: szöveg/cím felül, média utána */
    .dimensions-text-card {
        order: 1;
    }

    .dimensions-media-card {
        order: 2;
    }

    .greenwalls-intro__content {
        order: 1;
    }

    .greenwalls-intro__media {
        order: 2;
    }

    .sport-type-card__content {
        order: 1;
    }

    .sport-type-card__media {
        order: 2;
    }

    .partners-main__content {
        order: 1;
    }

    .partners-main__media {
        order: 2;
    }

    .case-studies-slider__content {
        order: 1;
    }

    .case-studies-slider__media {
        order: 2;
    }

    .showroom-card__content {
        order: 1;
    }

    .showroom-card__media {
        order: 2;
    }
}

/* =========================
   MOBILE CENTER FIX - PARTNER BLOKK
========================= */

@media (max-width: 768px) {
    .solutions-partner {
        margin-top: 42px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 22px;
    }

    .solutions-partner__title,
    .solutions-partner__text {
        padding-left: 0;
        text-align: center;
    }

    .solutions-partner__link {
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
    }
}

/* =========================
   GREENWALL GALLERY NAV FIX
========================= */

.greenwall-gallery {
    overflow: hidden;
}

.greenwall-gallery__track-wrap {
    position: relative;
    overflow: hidden;
}

.greenwall-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    opacity: 1;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.13s ease;
}

/* fontos: a régi fix transformos pozicionálás ne szóljon bele */
.greenwall-gallery__nav--prev,
.greenwall-gallery__nav--next {
    right: auto;
}

/* ha korábbi media queryből maradt transform, ezt felülírja a JS */
.greenwall-gallery__nav.is-hiding {
    opacity: 0;
    pointer-events: none;
}

.greenwall-gallery__nav.is-showing {
    opacity: 1;
}


/* =========================================
   PANDA GRASS HEADER – PandaGrass MINTÁJÚ MOBIL ELRENDEZÉS
========================================= */

/* alap */
.main-nav__link--mobile-only {
    display: none;
}

.mobile-searchbar {
    display: none;
}

/* hamburger új ikon */
.nav-toggle {
    padding: 0;
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 0;
    gap: 0;
}

    .nav-toggle:hover {
        border: none;
        background: transparent;
    }

.nav-toggle__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    line-height: 0;
}

/* a régi span-es hamburger ne rajzoljon semmit */
.nav-toggle span {
    width: auto;
    height: auto;
    background: transparent;
}

/* 1100 alatt egységes mobil/tablet header */
@media (max-width: 1100px) {
    .header-top {
        border-bottom: none;
    }

    .header-top__inner {
        min-height: auto;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 12px;
        padding-top: 18px;
        padding-bottom: 12px;
    }

    .header-logo {
        grid-column: 1;
        grid-row: 1;
    }

        .header-logo img {
            width: 230px;
            height: auto;
        }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
        order: initial;
        gap: 14px;
        margin-left: 0;
    }

    .header-actions__icon--search,
    .header-actions__icon--profile {
        display: none;
    }

    .header-actions__icon--cart {
        display: inline-flex;
        width: 28px;
        height: 28px;
        margin-left: 0;
    }

        .header-actions__icon--cart img {
            width: 24px;
            height: 24px;
        }

    .nav-toggle {
        display: inline-flex;
        grid-column: 4;
        grid-row: 1;
        order: initial;
        margin-left: 0;
        justify-self: end;
        align-items: center;
        justify-content: center;
    }

    .mobile-searchbar {
        display: block;
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 6px;
        width: calc(100% + 32px);
        padding: 0 10px;
    }

    .mobile-searchbar__form {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        border-radius: 999px;
        background: #EEF3EF;
        overflow: hidden;
    }

    .mobile-searchbar__button {
        width: 52px;
        height: 50px;
        border: none;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .mobile-searchbar__form input {
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        background: transparent;
        padding: 0 18px 0 0;
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 15px;
        line-height: 1.2;
        color: #1b1b1b;
    }

        .mobile-searchbar__form input::placeholder {
            color: #8A9690;
            opacity: 1;
        }

    .header-bottom {
        top: 100%;
        border-top: none;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    }

    .header-bottom__inner {
        padding: 18px 24px 24px;
        gap: 22px;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .main-nav__link {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 18px;
        line-height: 1.2;
        padding: 8px 0;
    }

    .main-nav__dot {
        display: none;
    }

    .main-nav__link--mobile-only {
        display: inline-flex;
    }

    .header-cta {
        width: 100%;
        max-width: 320px;
        justify-self: center;
    }

    .mobile-header-info {
        display: grid;
        gap: 14px;
        padding-top: 4px;
        border-top: 1px solid var(--color-border);
    }

        .mobile-header-info .header-info__item {
            justify-content: center;
            text-align: center;
            align-items: center;
        }

        .mobile-header-info .header-info__text {
            align-items: center;
        }

    .site-header.is-nav-open .nav-toggle span:nth-child(1),
    .site-header.is-nav-open .nav-toggle span:nth-child(2),
    .site-header.is-nav-open .nav-toggle span:nth-child(3) {
        transform: none;
        opacity: 1;
    }
}

/* szorosabb mobil finomhangolás */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-top__inner {
        gap: 10px;
        padding-top: 24px;
        padding-bottom: 12px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .header-logo img {
        width: 170px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-actions__icon--cart {
        width: 26px;
        height: 26px;
    }

        .header-actions__icon--cart img {
            width: 22px;
            height: 22px;
        }

    .nav-toggle {
        width: 28px;
        height: 28px;
    }

    .nav-toggle__burger {
        width: 24px;
        height: 24px;
    }

    .mobile-searchbar {
        margin-top: 4px;
    }

    .mobile-searchbar__form {
        height: 48px;
    }

    .mobile-searchbar__button {
        width: 48px;
        height: 48px;
    }

    .mobile-searchbar__form input {
        height: 48px;
        font-size: 14px;
        padding-right: 16px;
    }

    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -4px;
        right: -5px;
    }

    .header-bottom__inner {
        padding: 16px 18px 18px;
    }

    .main-nav__link {
        font-size: 17px;
        min-height: 40px;
    }

    .mobile-header-info .header-info__item {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-header-info .header-info__icon {
        width: 50px;
        height: 50px;
    }

        .mobile-header-info .header-info__icon img {
            width: 28px;
            height: 28px;
        }

    .mobile-header-info .header-info__label,
    .mobile-header-info .header-info__value {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .dimensions-row,
    .dimensions-row--image-right,
    .dimensions-row--image-left {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .dimensions-media-card {
        order: 1;
    }

    .dimensions-text-card {
        order: 2;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .showroom-section {
        padding: 60px 0;
    }

    .showroom-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .showroom-card {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    /* ===== KÉP FELÜL + TÚLLÓGÁS ===== */
    .showroom-card__media {
        position: relative;
        width: calc(100% - 46px);
        margin: 0 auto -200px; /* EZ a túllógás */
        height: 260px;
        border-radius: 16px;
        z-index: 2;
        order:1;
    }

        .showroom-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* ===== ZÖLD BLOKK ===== */
    .showroom-card__content {
        width: 100%;
        min-height: auto;
        padding: 240px 20px 32px; /* felül több hely a kilógó kép miatt */
        border-radius: 16px;
        background: #CEF0E0;
        order: 2;
    }

    /* ===== TYPO ===== */
    .showroom-card__title {
        font-size: 28px;
    }

    .showroom-card__text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    .greenwalls-intro__main {
        display: flex;
        flex-direction: column;
    }

    .greenwalls-intro__media {
        order: 1;
    }

    .greenwalls-intro__content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .panel-products-section .artificial-products-grid .artificial-product-card:nth-child(n+6) {
        display: none;
    }
}

/* =========================================
   PANDA GRASS – WEBSHOP ALAP
========================================= */

.pg-webshop-page {
    padding: 80px 0 100px;
    background: #ffffff;
}

.pg-webshop-page__header {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
}

.pg-webshop-page__eyebrow {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    margin-bottom: 12px;
}

.pg-webshop-page__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    color: #00A458;
    margin: 0 0 18px;
}

.pg-webshop-page__lead {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

.pg-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pg-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 164, 88, 0.14);
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.pg-product-card__image-wrap {
    height: 260px;
    padding: 20px;
    background: rgba(0, 164, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pg-product-card__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.pg-product-card__image--placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    color: #777777;
}

.pg-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.pg-product-card__category {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    margin-bottom: 10px;
    text-decoration: none;
}

.pg-product-card__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    margin: 0 0 18px;
}

    .pg-product-card__title a {
        color: inherit;
        text-decoration: none;
    }

.pg-product-card__price {
    margin-top: auto;
    margin-bottom: 22px;
}

.pg-product-card__gross {
    display: block;
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #000000;
}

.pg-product-card__net {
    display: block;
    margin-top: 6px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
}

.pg-product-card__inquiry {
    display: inline-flex;
    align-items: center;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #00A458;
}

.pg-product-card__button {
    width: fit-content;
    min-width: 138px;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: #00A458;
    border: 2px solid #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

    .pg-product-card__button:hover {
        background: #ffffff;
        color: #00A458;
    }

.pg-product-list-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 20px;
    background: rgba(0, 164, 88, 0.05);
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

.pg-product-offer-notice {
    margin: 48px auto 0;
    max-width: 780px;
    padding: 20px 28px;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.07);
    color: #00A458;
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 767px) {
    .pg-webshop-page {
        padding: 52px 0 72px;
    }

    .pg-webshop-page__header {
        margin-bottom: 36px;
        text-align: left;
    }

    .pg-webshop-page__title {
        font-size: 42px;
    }

    .pg-webshop-page__lead {
        font-size: 17px;
    }

    .pg-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pg-product-card {
        border-radius: 20px;
    }

    .pg-product-card__body {
        padding: 22px;
    }

    .pg-product-card__title {
        font-size: 24px;
    }

    .pg-product-offer-notice {
        border-radius: 20px;
        font-size: 15px;
    }
}

.pg-product-detail__intro {
    white-space: pre-line;
}

.pg-inquiry-note {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 800;
    text-align: center;
}

.pg-inquiry-note--detail {
    margin: 0 0 24px;
    text-align: left;
}

.pg-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

    .pg-product-grid > .pg-product-card {
        width: 100%;
        min-width: 0;
    }

.pg-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pg-product-card__image-wrap {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    padding: 20px;
    background: rgba(0, 164, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-product-card__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .pg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pg-product-grid {
        grid-template-columns: 1fr;
    }
}

.pg-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

    .pg-product-grid > .pg-product-card {
        width: 100%;
        min-width: 0;
    }

.pg-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pg-product-card__image-wrap {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    padding: 20px;
    background: rgba(0, 164, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-product-card__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .pg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pg-product-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PANDA GRASS – PRODUCT PAGINATION
========================================= */

.pg-product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 44px auto 0;
    flex-wrap: wrap;
}

.pg-product-pagination__pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pg-product-pagination__button,
.pg-product-pagination__page {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 999px;
    background: #ffffff;
    color: #006B39;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pg-product-pagination__button {
    width: 42px;
    padding: 0;
    font-size: 28px;
    font-weight: 500;
    padding-bottom: 3px;
}

.pg-product-pagination__button--prev {
    padding-right: 2px;
}

.pg-product-pagination__button--next {
    padding-left: 2px;
}

.pg-product-pagination__button:hover,
.pg-product-pagination__page:hover {
    background: rgba(0, 164, 88, 0.06);
    border-color: rgba(0, 164, 88, 0.42);
    color: #00A458;
    text-decoration: none;
    transform: translateY(-1px);
}

.pg-product-pagination__page--active {
    background: #00A458;
    border-color: #00A458;
    color: #ffffff;
    pointer-events: none;
}

.pg-product-pagination__ellipsis {
    min-width: 28px;
    height: 42px;
    color: #006B39;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .pg-product-pagination {
        gap: 8px;
        margin-top: 32px;
    }

    .pg-product-pagination__pages {
        gap: 6px;
    }

    .pg-product-pagination__button,
    .pg-product-pagination__page {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }

    .pg-product-pagination__button {
        width: 38px;
        padding: 0;
        font-size: 26px;
        padding-bottom: 3px;
    }

    .pg-product-pagination__button--prev {
        padding-right: 2px;
    }

    .pg-product-pagination__button--next {
        padding-left: 2px;
    }

    .pg-product-pagination__ellipsis {
        min-width: 22px;
        height: 38px;
        font-size: 16px;
    }
}

/* =========================================
   PANDA GRASS – PRODUCT LIST TOOLBAR
========================================= */

.pg-product-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 34px 0 0;
}

.pg-product-list-toolbar__label {
    color: #4A4A4A;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.pg-product-list-toolbar__select {
    width: auto;
    min-width: 18px;
    height: 42px;
    padding: 0 32px 0 16px;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 999px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L6 6L10 2' stroke='%23006B39' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    color: #006B39;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    box-shadow: 0 10px 24px rgba(0, 164, 88, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .pg-product-list-toolbar__select:hover,
    .pg-product-list-toolbar__select:focus {
        border-color: #00A458;
        color: #00A458;
        box-shadow: 0 12px 30px rgba(0, 164, 88, 0.14);
    }

@media (max-width: 767px) {
    .pg-product-list-toolbar {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .pg-product-list-toolbar__label {
        width: 100%;
        text-align: center;
    }

    .pg-product-list-toolbar__select {
        width: min(66px, 100%);
    }
}

/* =========================================
   PANDA GRASS – PRODUCT DETAIL
========================================= */

.pg-product-detail {
    padding: 64px 0 100px;
    background: #ffffff;
}

.pg-product-detail__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 42px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
}

    .pg-product-detail__breadcrumbs a {
        color: #00A458;
        text-decoration: none;
        font-weight: 700;
    }

    .pg-product-detail__breadcrumbs strong {
        color: #000000;
        font-weight: 600;
    }

.pg-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: start;
}

.pg-product-detail__main-image {
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid rgba(0, 164, 88, 0.14);
    background: rgba(0, 164, 88, 0.05);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

    .pg-product-detail__main-image img {
        max-width: 100%;
        max-height: 430px;
        object-fit: contain;
        display: block;
    }

.pg-product-detail__image-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: 20px;
    background: rgba(0, 164, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    color: #777777;
}

.pg-product-detail__thumbs {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.pg-product-detail__thumb {
    width: 108px;
    height: 86px;
    border-radius: 16px;
    border: 1px solid rgba(0, 164, 88, 0.18);
    background: #ffffff;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pg-product-detail__thumb.is-active {
        border-color: #00A458;
        box-shadow: 0 8px 24px rgba(0, 164, 88, 0.18);
    }

    .pg-product-detail__thumb img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

.pg-product-detail__content {
    min-width: 0;
    padding-top: 12px;
}

.pg-product-detail__category {
    display: inline-flex;
    margin-bottom: 14px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00A458;
    text-decoration: none;
}

.pg-product-detail__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px;
}

.pg-product-detail__intro {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: #333333;
    white-space: pre-line;
    margin-bottom: 24px;
}

.pg-product-detail__buy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(0, 164, 88, 0.06);
    border: 1px solid rgba(0, 164, 88, 0.14);
    margin-bottom: 22px;
}

.pg-product-detail__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pg-product-detail__price-label {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00A458;
}

.pg-product-detail__price strong {
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    color: #000000;
}

.pg-product-detail__price span:last-child {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
}

.pg-product-detail__cart-button {
    min-width: 210px;
    height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    border: 2px solid #00A458;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .pg-product-detail__cart-button:hover {
        background: #ffffff;
        color: #00A458;
    }

.pg-product-detail__meta {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    color: #666666;
}

    .pg-product-detail__meta strong {
        color: #000000;
    }

.pg-product-detail__files {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.pg-product-detail__file {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 164, 88, 0.24);
    color: #00A458;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.pg-product-specs {
    margin-top: 80px;
}

.pg-product-specs__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 28px;
    color: #000000;
}

.pg-product-specs__table {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 164, 88, 0.14);
}

.pg-product-specs__row {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    border-top: 1px solid rgba(0, 164, 88, 0.12);
}

    .pg-product-specs__row:first-child {
        border-top: 0;
    }

.pg-product-specs__label,
.pg-product-specs__value {
    padding: 18px 24px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.pg-product-specs__label {
    background: rgba(0, 164, 88, 0.045);
    font-weight: 800;
    color: #000000;
}

.pg-product-specs__value {
    color: #333333;
}

.pg-inquiry-note {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 800;
    text-align: center;
}

.pg-inquiry-note--detail {
    text-align: left;
}

@media (max-width: 767px) {
    .pg-product-detail {
        padding: 42px 0 72px;
    }

    .pg-product-detail__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pg-product-detail__main-image {
        min-height: 340px;
        padding: 28px;
        border-radius: 22px;
    }

        .pg-product-detail__main-image img {
            max-height: 280px;
        }

    .pg-product-detail__title {
        font-size: 38px;
    }

    .pg-product-detail__intro {
        font-size: 16px;
    }

    .pg-product-detail__buy-box {
        flex-direction: column;
        align-items: stretch;
    }

    .pg-product-detail__cart-button {
        width: 100%;
    }

    .pg-product-specs {
        margin-top: 52px;
    }

    .pg-product-specs__title {
        font-size: 30px;
    }

    .pg-product-specs__row {
        grid-template-columns: 1fr;
    }

    .pg-product-specs__label,
    .pg-product-specs__value {
        padding: 14px 18px;
    }
}

/* =========================================
   PANDA GRASS – CART PAGE
========================================= */

.pg-cart-page {
    padding: 40px 0 80px;
    background: #ffffff;
}

.pg-cart-page__header {
    margin-bottom: 28px;
}

.pg-cart-page__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #00A458;
    margin: 0;
}

.pg-cart-page__empty {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.pg-cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}

.pg-cart-page__items {
    display: grid;
    gap: 20px;
}

.pg-cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 164, 88, 0.18);
    border-radius: 16px;
    background: #ffffff;
}

.pg-cart-item__image-wrap {
    background: rgba(0, 164, 88, 0.06);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.pg-cart-item__image {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
}

.pg-cart-item__title {
    margin: 0 0 10px;
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

    .pg-cart-item__title a {
        color: #00A458;
        text-decoration: none;
    }

.pg-cart-item__price {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 4px;
    color: #000000;
}

.pg-cart-item__price--inquiry {
    color: #00A458;
}

.pg-cart-item__price-note {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #00A458;
    margin-bottom: 10px;
}

.pg-cart-item__line-total {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.pg-cart-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.pg-cart-item__quantity-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pg-cart-item__quantity-input {
    width: 84px;
    height: 42px;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 999px;
    padding: 0 14px;
    font-family: "Barlow", sans-serif;
}

.pg-cart-item__update-button,
.pg-cart-item__remove-button,
.pg-cart-summary__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.pg-cart-item__update-button,
.pg-cart-summary__button--primary {
    background: #00A458;
    color: #ffffff;
}

.pg-cart-item__remove-button,
.pg-cart-summary__button--secondary {
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
}

.pg-cart-summary__card {
    background: rgba(0, 164, 88, 0.06);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 110px;
}

.pg-cart-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.pg-cart-summary__subrow {
    margin-top: -6px;
    margin-bottom: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #00A458;
    text-align: right;
}

.pg-cart-summary__notice {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 164, 88, 0.10);
    color: #007A42;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.pg-cart-summary__buttons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .pg-cart-page__layout {
        grid-template-columns: 1fr;
    }

    .pg-cart-summary__card {
        position: static;
    }
}

@media (max-width: 767px) {
    .pg-cart-page {
        padding: 24px 0 56px;
    }

    .pg-cart-page__title {
        font-size: 42px;
    }

    .pg-cart-item {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PANDA GRASS – CHECKOUT / QUOTE FORMS
========================================= */

.pg-form-page {
    padding: 56px 0 90px;
    background: #ffffff;
}

.pg-form-page__header {
    margin-bottom: 34px;
}

.pg-form-page__title {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #00A458;
    margin: 0;
}

.pg-order-form {
    max-width: 980px;
    display: grid;
    gap: 22px;
}

.pg-form-card {
    background: rgba(0, 164, 88, 0.06);
    border-radius: 20px;
    padding: 28px;
}

.pg-form-card__title {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #00A458;
    margin: 0 0 20px;
}

.pg-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pg-form-grid__wide {
    grid-column: 1 / -1;
}

.pg-order-form label {
    gap: 8px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #003B23;
}

    .pg-order-form label span {
        font-weight: 500;
        color: #537463;
        margin-left: 4px;
    }

.pg-order-form input,
.pg-order-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 14px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    color: #000000;
    outline: none;
    margin-top: 8px;
}

.pg-order-form input {
    height: 50px;
}

.pg-order-form textarea {
    resize: vertical;
    min-height: 140px;
}

    .pg-order-form input:focus,
    .pg-order-form textarea:focus {
        border-color: #00A458;
        box-shadow: 0 0 0 3px rgba(0, 164, 88, 0.12);
    }

.pg-form-checkbox {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px !important;
    cursor: pointer;
}

    .pg-form-checkbox input {
        width: 20px;
        height: 20px;
        padding: 0;
        flex: 0 0 auto;
        margin-top: 0;
    }

    .pg-form-checkbox span {
        margin-left: 0 !important;
    }

.pg-billing-fields {
    margin-top: 24px;
}

    .pg-billing-fields.is-hidden {
        display: none;
    }

.pg-form-submit {
    justify-self: start;
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .pg-form-submit:hover {
        background: #003B23;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .pg-form-page {
        padding: 32px 0 64px;
    }

    .pg-form-page__title {
        font-size: 44px;
    }

    .pg-form-card {
        padding: 22px;
    }

    .pg-form-grid {
        grid-template-columns: 1fr;
    }

    .pg-form-submit {
        width: 100%;
    }
}

/* =========================================
   PANDA GRASS – WEBSHOP DRAWER + HEADER CART
========================================= */

.webshop-drawer-is-open {
    overflow: hidden;
}

.pg-webshop-drawer-float {
    position: fixed;
    left: 0;
    top: 140px;
    z-index: 5000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0 999px 999px 0;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
}

.pg-webshop-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 40, 22, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 6000;
}

    .pg-webshop-drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.pg-webshop-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(390px, 92vw);
    height: 100vh;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 6001;
    box-shadow: 18px 0 45px rgba(0, 40, 22, 0.18);
    overflow-y: auto;
    padding: 28px 26px 40px;
}

    .pg-webshop-drawer.is-open {
        transform: translateX(0);
    }

.pg-webshop-drawer__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 22px;
}

.pg-webshop-drawer__title,
.pg-webshop-drawer__heading {
    font-family: "IBM Plex Sans Condensed", "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #00A458;
    margin: 0 0 18px;
}

.pg-webshop-drawer__main-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 28px;
}

.pg-webshop-drawer__block {
    border-top: 1px solid rgba(0, 164, 88, 0.18);
    padding-top: 22px;
    margin-top: 22px;
}

.pg-webshop-drawer__links {
    display: grid;
    gap: 8px;
}

    .pg-webshop-drawer__links a {
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        line-height: 1.4;
        font-weight: 700;
        color: #00A458;
        text-decoration: none;
        background: rgba(0, 164, 88, 0.06);
        border-radius: 14px;
        padding: 14px 16px;
    }

.pg-webshop-drawer__filter-form {
    display: grid;
    gap: 14px;
}

.pg-webshop-drawer__filter-label {
    display: grid;
    gap: 6px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #003B23;
}

    .pg-webshop-drawer__filter-label input {
        width: 100%;
        height: 44px;
        border: 1px solid rgba(0, 164, 88, 0.22);
        border-radius: 999px;
        padding: 0 16px;
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        color: #000000;
        outline: none;
    }

.pg-webshop-drawer__filter-submit,
.pg-webshop-drawer__filter-reset {
    min-height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.pg-webshop-drawer__filter-submit {
    border: 0;
    background: #00A458;
    color: #ffffff;
    cursor: pointer;
}

.pg-webshop-drawer__filter-reset {
    background: rgba(0, 164, 88, 0.06);
    color: #00A458;
}

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart__badge {
    position: absolute;
    left: 18px;
    bottom: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

    .header-cart__badge.is-hidden {
        display: none;
    }

.header-actions__icon--filter {
    display: none;
}

[data-product-list] {
    transition: opacity 0.2s ease;
}

    [data-product-list].is-loading {
        opacity: 0.45;
        pointer-events: none;
    }

@media (max-width: 767px) {

    .header-actions__filter-icon {
        display: block;
        line-height: 1;
        transform: translateY(-1px);
    }

    .pg-webshop-drawer {
        left: auto;
        right: 0;
        transform: translateX(100%);
        box-shadow: -18px 0 45px rgba(0, 40, 22, 0.18);
    }

        .pg-webshop-drawer.is-open {
            transform: translateX(0);
        }

    .header-cart__badge {
        left: auto;
        right: 12px;
        bottom: -6px;
    }
}

.header-actions__icon--filter {
    display: none;
}

@media (max-width: 767px) {
    .pg-webshop-drawer-float {
        display: none;
    }

    .header-actions__icon--filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 0;
        background: #00A458;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
        padding: 0;
        cursor: pointer;
        flex: 0 1 auto;
    }

    .header-actions__filter-icon {
        display: block;
        line-height: 1;
    }

    .webshop-drawer-toggle {
        display: none;
    }

    .webshop-drawer {
        left: auto;
        right: 0;
        transform: translateX(100%);
        box-shadow: -18px 0 45px rgba(0, 164, 88, 0.18);
    }

    .webshop-drawer.is-open {
        transform: translateX(0);
    }
}

.pg-product-detail__main-image img,
.pg-product-detail__thumb img,
.pg-product-card__image,
.pg-cart-item__image {
    mix-blend-mode: multiply;
}

.cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 9999;
    width: min(720px, calc(100% - 32px));
    transform: translate(-50%, calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

    .cookie-bar.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }

    .cookie-bar.is-hiding {
        transform: translate(-50%, calc(100% + 40px));
        opacity: 0;
        pointer-events: none;
    }

.cookie-bar__inner {
    min-height: 46px;
    padding: 8px 12px 8px 18px;
    border-radius: 999px;
    background: #f4e7b8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-bar__text {
    margin: 0;
    color: #000000;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.cookie-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-bar__accept {
    border: 0;
    border-radius: 999px;
    padding: 8px 18px;
    background: #000000;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__accept:hover {
        background: #222222;
        transform: translateY(-1px);
    }

.cookie-bar__close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .cookie-bar__close:hover {
        background: rgba(0, 0, 0, 0.14);
        transform: translateY(-1px);
    }

@media (max-width: 767px) {
    .cookie-bar {
        bottom: 14px;
        width: calc(100% - 24px);
    }

    .cookie-bar__inner {
        border-radius: 22px;
        padding: 10px 10px 10px 16px;
        gap: 12px;
    }

    .cookie-bar__text {
        font-size: 14px;
    }

    .cookie-bar__accept {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cookie-bar__close {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
}

/* PARTNERS SECTION */
.partners-section {
    padding: 100px 0 80px;
}

/* TITLE */
.partners-section__title {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-align: center;
    color: #00A458;
    margin: 0 0 46px;
}

/* GRID */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
}

/* CARD */
.partner-card {
    flex: 0 0 318px;
    height: 115px;
    background: #ffffff;
    border: 1px solid #C6E4D6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* LOGO */
    .partner-card img {
        max-width: 200px;
        max-height: 70px;
        object-fit: contain;
        opacity: 0.75;
        filter: grayscale(100%);
        transition: opacity 0.2s ease, filter 0.2s ease;
    }

    /* HOVER */
    .partner-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

        .partner-card:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

/* TABLET */
@media (max-width: 1100px) {
    .partners-section__title {
        font-size: 48px;
    }

    .partners-grid {
        gap: 20px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .partners-section {
        padding: 0;
        overflow: hidden;
    }

        .partners-section .container {
            padding-right: 0;
        }

    .partners-section__title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .partners-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 6px 0;
        margin: 0;
        scrollbar-width: none;
    }

        .partners-grid::-webkit-scrollbar {
            display: none;
        }

    .partner-card {
        flex: 0 0 82%;
        height: 80px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

        .partner-card img {
            max-width: 120px;
            max-height: 34px;
        }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #00A458;
    white-space: nowrap;
    text-transform: uppercase;
}

    .lang-switcher a {
        color: inherit;
        text-decoration: none;
        opacity: 0.45;
        transition: opacity 0.2s ease;
    }

        .lang-switcher a:hover {
            opacity: 1;
        }

    .lang-switcher .active {
        color: inherit;
        opacity: 1;
        cursor: default;
        pointer-events: none;
    }

    .lang-switcher span:not(.active) {
        color: inherit;
        opacity: 0.35;
    }

.lang-switcher--mobile-icons {
    display: flex;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 767px) {
    .lang-switcher {
        margin-left: 4px;
        font-size: 13px;
        gap: 6px;
    }

    .lang-switcher--mobile-icons {
        display: flex;
    }
}

.pg-product-detail__stock-warning {
    margin: 0 0 22px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #FFF4E5;
    border: 1px solid #FFD8A8;
    color: #A15C00;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

/* --- REFERENCES GALLERY --- */
.refs-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.2vw, 16px);
}

@media (max-width: 1100px) {
    .refs-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .refs-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .refs-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .refs-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- TILE (button) --- */
.refs-thumb {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    transform-origin: left bottom;
    transform: perspective(900px) rotateY(78deg) translateY(14px) scale(0.985);
    filter: blur(2px);
    transition: transform 1000ms cubic-bezier(.2,.85,.2,1), opacity 520ms ease, filter 1000ms ease;
    will-change: transform, opacity, filter;
}

.refs-thumb {
    aspect-ratio: 4 / 3;
    display: block;
}

    .refs-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.refs-gallery.is-visible .refs-thumb {
    opacity: 1;
    transform: perspective(900px) rotateY(0deg) translateY(0) scale(1);
    filter: blur(0);
}

@media (hover: hover) {
    .refs-gallery.is-visible .refs-thumb:hover {
        transform: perspective(900px) rotateY(0deg) translateY(-4px) scale(1.01);
    }
}

.refs-thumb:focus-visible {
    outline: 2px solid rgba(255,255,255,0.75);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .refs-thumb {
        transition: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}


/* --- LIGHTBOX --- */
.refs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .refs-lightbox.is-open {
        display: block;
    }

.refs-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.86);
    opacity: 0;
    transition: opacity 240ms ease;
}

.refs-lightbox.is-open .refs-lightbox__backdrop {
    opacity: 1;
}

.refs-lightbox__img {
    position: fixed;
    left: 0;
    top: 0;
    border: 3px solid #fff;
    background: rgba(0,0,0,0.08);
    box-shadow: 0 18px 60px rgba(0,0,0,0.55);
    transform-origin: top left;
    transform: translate3d(0,0,0) scale(1);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.85,.2,1), opacity 220ms ease;
    will-change: transform, opacity;
}

.refs-lightbox.is-open .refs-lightbox__img {
    opacity: 1;
}

.refs-lightbox__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(140px, 18vw);
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.9;
}

    .refs-lightbox__nav:hover {
        opacity: 1;
    }

.refs-lightbox__nav--prev {
    left: 0;
}

.refs-lightbox__nav--next {
    right: 0;
}

.refs-lightbox__navIcon {
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    user-select: none;
    text-shadow: 0 8px 30px rgba(0,0,0,0.65);
}

.refs-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
    text-shadow: 0 8px 30px rgba(0,0,0,0.65);
}

    .refs-lightbox__close:hover {
        opacity: 1;
    }

@media (hover: none) {
    .refs-lightbox__nav {
        width: min(160px, 24vw);
    }

    .refs-lightbox__close {
        padding: 12px;
        margin: -12px;
    }

    .refs-lightbox__navIcon {
        padding: 12px;
        margin: -12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .refs-lightbox__backdrop,
    .refs-lightbox__img {
        transition: none !important;
    }
}

.refs-lightbox {
    touch-action: pan-y;
}

.refs-gallery-sentinel {
    height: 1px;
}

/* Lightbox címcsík */
/* wrapper: ugyanoda kerül, ahova eddig az img ment */
.refs-lightbox__wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 10px; /* JS felülírja */
    height: 10px; /* JS felülírja */
    z-index: 10000;
}

    /* a kép kitölti a wrap-et */
    .refs-lightbox__wrap .refs-lightbox__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 3px solid #fff;
        background: rgba(0,0,0,0.08);
        box-shadow: 0 18px 60px rgba(0,0,0,0.55);
        transform-origin: center;
        opacity: 0;
        transition: transform 420ms cubic-bezier(.2,.85,.2,1), opacity 220ms ease;
        will-change: transform, opacity;
    }

/* titlebar a képen belül alul */
.refs-lightbox__titlebar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px;
    background: rgba(255,255,255,0.72); /* halvány fehér csík */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0.75;
}

.refs-lightbox__title {
    color: #071b4a;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}

/* nyitáskor látszódjon a kép */
.refs-lightbox.is-open .refs-lightbox__wrap .refs-lightbox__img {
    opacity: 1;
}

/* --- 1366–1439 (tipikus kisebb laptop) --- */
@media (max-width: 1439px) {
    .refs-hero-3d {
        perspective: 860px;
        height: 510px;
    }

    .carousel {
        --r: 440px;
        --w: 230px;
        --h: 165px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 22s;
    }
}

/* --- 1280–1365 (régebbi laptop / kisebb desktop) --- */
@media (max-width: 1365px) {
    .refs-hero-3d {
        perspective: 820px;
        height: 490px;
    }

    .carousel {
        --r: 410px;
        --w: 220px;
        --h: 155px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 22s;
    }
}

/* --- 1024–1279 (kis laptop / tablet landscape) --- */
@media (max-width: 1279px) {
    .refs-hero-3d {
        perspective: 780px;
        height: 360px;
    }

    .carousel {
        --r: 370px;
        --w: 205px;
        --h: 145px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 26s;
    }
}

/* --- 768–1023 (tablet / nagy mobil landscape) --- */
@media (max-width: 1023px) {
    .refs-hero-3d {
        perspective: 740px;
        height: 320px;
    }

    .carousel {
        --r: 280px;
        --w: 170px;
        --h: 110px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

/* --- 521–767 (mobil nagyobb) --- */
@media (max-width: 767px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 240px;
    }

    .carousel {
        --r: 210px;
        --w: 140px;
        --h: 88px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

/* --- <=520 (mobil – ez nálad már van, de itt egységesítve) --- */
@media (max-width: 520px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 180px;
    }

    .carousel {
        --r: 190px;
        --w: 120px;
        --h: 75px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}

@media (max-width: 430px) {
    .refs-hero-3d {
        perspective: 700px;
        height: 200px;
    }

    .carousel {
        --r: 160px;
        --w: 110px;
        --h: 70px;
        --cap-gap: 3px;
        --cap-size: 6px;
        --dur: 28s;
    }
}


/* --- <=380 (kis mobil – nálad is van) --- */
@media (max-width: 380px) {
    .refs-hero-3d {
        perspective: 640px;
        height: 170px;
    }

    .carousel {
        --r: 130px;
        --w: 90px;
        --h: 55px;
        --cap-gap: 3px;
        --cap-size: 5px;
        --dur: 30s;
    }
}

/* =========================
   DESKTOP UP-SCALE (2K+)
   ========================= */

/* --- 1600+ (nagyobb laptop/monitor) --- */
@media (min-width: 1600px) {
    .refs-hero-3d {
        perspective: 980px;
        height: 520px;
    }

    .carousel {
        --r: 430px;
        --w: 300px;
        --h: 180px;
        --cap-gap: 5px;
        --cap-size: 8px;
        --dur: 22s;
    }
}

/* --- 1920+ (FullHD) --- */
@media (min-width: 1920px) {
    .refs-hero-3d {
        perspective: 1100px;
        height: 600px;
    }

    .carousel {
        --r: 500px;
        --w: 340px;
        --h: 205px;
        --cap-gap: 5px;
        --cap-size: 8px;
        --dur: 22s;
    }
}

/* --- 2560+ (2K / QHD) --- */
@media (min-width: 2560px) {
    .refs-hero-3d {
        perspective: 1400px;
        height: 760px;
    }

    .carousel {
        --r: 680px;
        --w: 420px;
        --h: 250px;
        --cap-gap: 6px;
        --cap-size: 10px;
        --dur: 24s;
    }
}

/* --- 3200+ (3K ultrawide / nagyobb) --- */
@media (min-width: 3200px) {
    .refs-hero-3d {
        perspective: 1700px;
        height: 900px;
    }

    .carousel {
        --r: 820px;
        --w: 500px;
        --h: 300px;
        --cap-gap: 7px;
        --cap-size: 11px;
        --dur: 26s;
    }
}

/* --- 3840+ (4K) --- */
@media (min-width: 3840px) {
    .refs-hero-3d {
        perspective: 2100px;
        height: 1050px;
    }

    .carousel {
        --r: 980px;
        --w: 600px;
        --h: 360px;
        --cap-gap: 8px;
        --cap-size: 12px;
        --dur: 28s;
    }
}

.carousel {
    --step: calc(var(--dur) / var(--n));
}

.carousel-caption {
    animation: capFade var(--dur) linear infinite;
    animation-delay: calc(var(--i) * var(--step) * -1);
}


/* elöl 1, hátul 0 */
@keyframes capFade {
    0%, 12.5%, 87.5%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: .25;
    }

    37.5%, 62.5% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }
}



body.lightbox-open .refs-hero-3d .carousel,
body.lightbox-open .refs-hero-3d .carousel-caption {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}

html.lightbox-open .refs-hero-3d .carousel,
html.lightbox-open .refs-hero-3d .carousel-caption {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}


/* LIGHTBOX: a NAV + CLOSE biztosan a kép fölött legyen */
.refs-lightbox__nav,
.refs-lightbox__close {
    z-index: 10050; /* magasabb, mint a wrap (10000) */
    pointer-events: auto; /* legyen kattintható */
}

/* biztos, ami biztos: a wrap maradjon alatta */
.refs-lightbox__wrap {
    z-index: 10000;
}

/* a backdrop maradjon legalul */
.refs-lightbox__backdrop {
    z-index: 9990;
}

/* =========================================
   REFERENCES 3D CAROUSEL
========================================= */

.refs-hero-3d {
    perspective: 900px;
    perspective-origin: 50% 45%;
    height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.carousel-wrap,
.carousel-stage,
.carousel,
.carousel-item,
.carousel-card {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.carousel-stage {
    overflow: visible;
}

.carousel {
    --n: 8;
    --stepDeg: calc(360deg / var(--n));
    --r: 430px;
    --w: 290px;
    --h: 170px;
    --cap-gap: 6px;
    --cap-size: 7px;
    --dur: 22s;
    position: relative;
    width: var(--w);
    height: var(--h);
    animation: spin var(--dur) linear infinite;
    will-change: transform;
}

.carousel-item {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotateY(calc(var(--i) * var(--stepDeg))) translateZ(var(--r));
}

.carousel-card {
    width: var(--w);
    height: calc(var(--h) + var(--cap-gap) + (var(--cap-size) * 1.6));
    transform: rotateY(calc(var(--i) * var(--stepDeg) * -1));
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: center;
    overflow: visible;
}

    .carousel-card img {
        display: block;
        width: 100%;
        height: var(--h);
        object-fit: cover;
        box-shadow: 0 10px 20px rgba(0,0,0,.25);
        border-radius: 0;
    }

.carousel-caption {
    margin-top: var(--cap-gap);
    font-size: clamp(calc(var(--cap-size) * 1.1), 1.2vw, calc(var(--cap-size) * 1.4));
    line-height: 1.35;
    text-align: center;
    color: #071b4a;
    opacity: 0.95;
    font-weight: 700;
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.carousel-card:focus-visible {
    outline: 3px solid rgba(84, 41, 206, .35);
    outline-offset: 4px;
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* fontos: az alsó galéria refs-thumb animációja ne rejtse el a felső carouselt */
.refs-hero-3d .refs-thumb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    aspect-ratio: auto !important;
}

.page-referenciak-pandagrass .carousel-caption,
.page-referenciak-pandagrass .refs-lightbox__title {
    color: #00A458;
}

.page-referenciak-pandagrass .carousel-card:focus-visible,
.page-referenciak-pandagrass .refs-thumb:focus-visible {
    outline-color: rgba(0, 164, 88, 0.45);
}

/* PandaGrass references page title */
.page-referenciak-pandagrass .page-title {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: clamp(42px, 5vw, 84px);
    line-height: 1.05;
    font-weight: 700;
    color: #00A458;
    text-align: center;
    margin: 0 0 18px;
}

.page-referenciak-pandagrass .page-subtitle {
    font-family: "Barlow", sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: #0D472C;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

@media (max-width: 767px) {
    .page-referenciak-pandagrass .page-title {
        font-size: 42px;
        font-size: 42px;
        margin-bottom: 14px;
    }

    .page-referenciak-pandagrass .page-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

.page-referenciak-pandagrass .refs-page {
    padding-top: 56px;
}

.page-referenciak-pandagrass .page-subtitle {
    margin-bottom: 72px;
}

.page-referenciak-pandagrass .refs-hero-3d {
    margin-bottom: 72px;
}

.page-referenciak-pandagrass .carousel-caption {
    color: #00A458;
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.page-referenciak-pandagrass .refs-lightbox__title {
    color: #00A458;
}

@media (max-width: 767px) {
    .page-referenciak-pandagrass .refs-page {
        padding-top: 40px;
    }

    .page-referenciak-pandagrass .page-subtitle {
        margin-bottom: 48px;
    }

    .page-referenciak-pandagrass .refs-hero-3d {
        margin-bottom: 48px;
    }
}

/* =========================================
   IMPRESSZUM / LEGAL PAGE — PANDAGRASS
========================================= */

.about-intro-section__content {
    margin-top: 56px;
    max-width: 980px;
}

    .about-intro-section__content h2 {
        font-family: "IBM Plex Sans Condensed", sans-serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #00A458;
        margin: 0 0 18px;
    }

    .about-intro-section__content p {
        font-family: "Barlow", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.9;
        color: #0D472C;
        margin: 0 0 52px;
    }

        .about-intro-section__content p br {
            display: block;
            content: "";
            margin-bottom: 6px;
        }


@media (max-width: 767px) {

    .about-intro-section__content {
        margin-top: 42px;
    }

        .about-intro-section__content h2 {
            font-size: 26px;
            margin-bottom: 14px;
        }

        .about-intro-section__content p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

    .about-intro-section__lead {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* =========================================
   KNOWLEDGE BASE PAGE
========================================= */

.knowledge-section--page {
    padding-top: 54px;
    padding-bottom: 72px;
}

    .knowledge-section--page .knowledge-section__header {
        margin-bottom: 34px;
    }

    .knowledge-section--page .knowledge-featured {
        margin-bottom: 44px;
    }

.knowledge-featured__title a,
.knowledge-card__title a {
    color: inherit;
    text-decoration: none;
}

    .knowledge-featured__title a:hover,
    .knowledge-card__title a:hover {
        color: #00A458;
    }

.knowledge-grid--page {
    display: grid;
}

    .knowledge-grid--page .knowledge-card__text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

@media (max-width: 768px) {
    .knowledge-section--page {
        padding-top: 42px;
        padding-bottom: 56px;
    }

        .knowledge-section--page .knowledge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .knowledge-section--page .knowledge-featured {
            margin-bottom: 28px;
        }
}

/* =========================================
   KNOWLEDGE BASE PAGE
========================================= */

.knowledge-section--page {
    padding-top: 54px;
    padding-bottom: 72px;
}

    .knowledge-section--page .knowledge-section__header {
        margin-bottom: 34px;
    }

    .knowledge-section--page .knowledge-featured {
        margin-bottom: 44px;
    }

.knowledge-featured__title a,
.knowledge-card__title a {
    color: inherit;
    text-decoration: none;
}

    .knowledge-featured__title a:hover,
    .knowledge-card__title a:hover {
        color: #00A458;
    }

.knowledge-grid--page {
    display: grid;
}

.knowledge-featured__text,
.knowledge-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   BLOG DETAIL
========================================= */

.blog-detail {
    padding: 54px 0 72px;
}

.blog-detail__back {
    display: inline-flex;
    margin-bottom: 32px;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00A458;
    text-decoration: none;
}

.blog-detail__header {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
}

.blog-detail__title {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #00A458;
    margin: 0;
}

.blog-detail__content {
    max-width: 920px;
    margin: 0 auto;
    font-family: "Barlow", sans-serif;
    font-size: 19px;
    line-height: 1.85;
    color: #000000;
}

    .blog-detail__content p {
        margin: 0 0 28px;
    }

    .blog-detail__content h2,
    .blog-detail__content h3 {
        font-family: "IBM Plex Sans Condensed", sans-serif;
        font-weight: 600;
        line-height: 1.22;
        color: #0D472C;
        margin: 48px 0 18px;
    }

    .blog-detail__content h2 {
        font-size: clamp(30px, 3vw, 42px);
    }

    .blog-detail__content h3 {
        font-size: clamp(24px, 2.4vw, 32px);
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
        margin: 0 0 32px 24px;
        padding: 0;
    }

    .blog-detail__content li {
        margin-bottom: 10px;
    }

    .blog-detail__content figure {
        margin: 42px 0;
    }

    .blog-detail__content img {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .blog-detail__content a {
        color: #00A458;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .knowledge-section--page {
        padding-top: 42px;
        padding-bottom: 56px;
    }

        .knowledge-section--page .knowledge-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

    .blog-detail {
        padding: 42px 0 56px;
    }

    .blog-detail__header {
        text-align: left;
    }

    .blog-detail__content {
        font-size: 17px;
    }
}


/* =========================================
   PANDA GRASS ADMIN
========================================= */

/* ADMIN PROFILE MENU */

.header-profile-menu {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

    .header-profile-menu .header-actions__icon--profile {
        position: relative;
        width: 38px;
        height: 38px;
        border: 0;
        padding: 0;
        margin: 0;
        background: transparent;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

        .header-profile-menu .header-actions__icon--profile img {
            display: block;
            width: 24px;
            height: 24px;
        }

.header-profile-menu__admin-badge {
    position: absolute;
    right: 1px;
    bottom: -1px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.header-profile-menu__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 210px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1000;
}

.header-profile-menu:hover .header-profile-menu__dropdown,
.header-profile-menu:focus-within .header-profile-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-profile-menu__label {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00A458;
    margin-bottom: 14px;
}

.header-profile-menu__logout {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .header-profile-menu__logout:hover {
        background: #00A458;
    }

@media (max-width: 767px) {
    .header-profile-menu {
        display: none;
    }
}

/* ADMIN CREATE BUTTON */

.admin-page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.admin-product-create-button,
.pg-admin-create-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    min-height: 62px;
    padding: 0 34px;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(0, 164, 88, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    .admin-product-create-button:hover,
    .pg-admin-create-button:hover {
        background: #007E44;
        transform: translateY(-2px);
        box-shadow: 0 22px 52px rgba(0, 126, 68, 0.28);
    }

@media (max-width: 767px) {
    .admin-page-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .admin-product-create-button,
    .pg-admin-create-button {
        width: 100%;
        min-height: 54px;
    }
}

/* PRODUCT CARD ADMIN EDIT */

.pg-product-card {
    position: relative;
}

.pg-product-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

    .pg-product-card__title-row .pg-product-card__title {
        margin: 0;
        flex: 1 1 auto;
    }

.pg-admin-edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 164, 88, 0.22));
}

    .pg-admin-edit-button:hover {
        transform: scale(1.12);
        filter: drop-shadow(0 10px 24px rgba(0, 164, 88, 0.34));
    }


.pg-admin-edit-button--detail {
    position: static;
    color: #00A458;
    font-size: 48px;
    line-height: 1;
}

/* PRODUCT DETAIL ADMIN ACTIONS */

.pg-product-detail__content {
    position: relative;
}

.pg-product-detail__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .pg-product-detail__title-row .pg-product-detail__title {
        margin-right: auto;
    }

.pg-admin-product-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.pg-admin-delete-form {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.pg-admin-delete-button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #C1121F;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .pg-admin-delete-button:hover {
        transform: scale(1.14);
        opacity: 0.82;
    }

    .pg-admin-delete-button svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ADMIN PRODUCT MODAL */

.admin-modal-open {
    overflow: hidden;
}

.admin-product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .admin-product-modal.is-open {
        display: block;
    }

.admin-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 18, 0.58);
    backdrop-filter: blur(6px);
}

.admin-product-modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(1180px, calc(100vw - 48px));
    height: min(92vh, 1400px);
    transform: translate(-50%, -50%);
    background: #F2FBF6;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.admin-product-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.admin-product-modal__frame,
.admin-product-modal__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .admin-product-modal {
        display: none !important;
    }
}

/* ADMIN PRODUCT CREATE / EDIT FORM */

.admin-product-create-modal-body {
    margin: 0;
    background: #F2FBF6;
}

.admin-product-create-page {
    padding: 34px;
    background: #F2FBF6;
}

.admin-product-create-page__header {
    margin-bottom: 36px;
}

.admin-product-create-page__title {
    margin: 0 0 10px;
    font-family: "Anton SC", sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.02;
    color: #00A458;
}

.admin-product-create-page__subtitle {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #1E1E1E;
}

.admin-product-form {
    display: grid;
    gap: 28px;
}

.admin-product-form__section {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 92, 49, 0.10);
}

.admin-product-form__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-product-form__section-title {
    margin: 0 0 24px;
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #007C43;
}

.admin-product-form__section-header .admin-product-form__section-title {
    margin-bottom: 0;
}

.admin-product-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.admin-product-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.admin-product-form__field--full {
    grid-column: 1 / -1;
}

.admin-product-form__field label,
.admin-product-form__checkbox {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #007C43;
}

.admin-product-form__input,
.admin-product-form__textarea {
    width: 100%;
    border: 1px solid rgba(0, 164, 88, 0.24);
    border-radius: 14px;
    padding: 13px 14px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    color: #1E1E1E;
    background: #ffffff;
    white-space: pre-wrap;
}

    .admin-product-form__input:focus,
    .admin-product-form__textarea:focus {
        outline: none;
        border-color: #00A458;
        box-shadow: 0 0 0 4px rgba(0, 164, 88, 0.12);
    }

select.admin-product-form__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2300A458' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    padding-right: 54px;
}

.admin-product-form__textarea {
    min-height: 132px;
    resize: vertical;
}

.admin-product-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    font-size: 16px;
}

    .admin-product-form__checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #00A458;
        cursor: pointer;
        flex-shrink: 0;
    }

    .admin-product-form__checkbox span {
        line-height: 1.3;
    }

.admin-product-form__price-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(180px, 260px) 120px;
    gap: 22px;
    align-items: end;
}

.admin-product-form__field--vat {
    max-width: 120px;
}

.admin-product-form__help {
    margin: 6px 0 0;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: #555;
}

.admin-product-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.admin-product-form__submit {
    min-height: 58px;
    padding: 0 38px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 164, 88, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .admin-product-form__submit:hover {
        background: #007C43;
        transform: translateY(-1px);
        box-shadow: 0 22px 52px rgba(0, 124, 67, 0.28);
    }

.admin-product-form__delete {
    min-height: 58px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.admin-product-form__validation,
.field-validation-error {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    color: #B42318;
}

.admin-product-form__success {
    margin: 0 0 24px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #EAF7EF;
    color: #157347;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.admin-product-form__add-spec {
    margin-top: 14px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .admin-product-form__add-spec:hover {
        background: #007C43;
    }

/* ADMIN SPECIFICATIONS */

.admin-product-spec-card {
    padding: 18px;
    border-radius: 22px;
    background: #F6FCF8;
    border: 1px solid rgba(0, 164, 88, 0.10);
    margin-bottom: 18px;
}

.admin-product-spec-card__header {
    margin-bottom: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #00A458;
    letter-spacing: 0.02em;
}

.admin-product-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

/* ADMIN IMAGE PREVIEW / DROPZONE */

.admin-dropzone {
    border: 2px dashed rgba(0, 164, 88, 0.24);
    border-radius: 22px;
    padding: 22px 24px;
    background: #F6FCF8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

    .admin-dropzone.is-dragover {
        border-color: #00A458;
        background: #ECF8F1;
    }

.admin-dropzone__text {
    margin: 0;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #007C43;
}

.admin-image-upload-button {
    display: inline-flex;
    width: 170px;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #00A458;
    color: white;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 164, 88, 0.20);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .admin-image-upload-button:hover {
        background: #007C43;
        transform: translateY(-1px);
        box-shadow: 0 16px 34px rgba(0, 124, 67, 0.26);
    }

    .admin-image-upload-button input {
        display: none;
    }

.admin-image-upload-error {
    margin-top: 14px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #C1121F;
}

.admin-image-preview-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

    .admin-image-preview-list:empty {
        display: none;
        margin: 0;
    }

.admin-image-preview-card {
    position: relative;
    background: #F6FCF8;
    border-radius: 24px;
    padding: 18px;
}

.admin-image-preview-card__title {
    margin: 0 0 14px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #007C43;
    word-break: break-word;
}

.admin-image-preview-card__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .admin-image-preview-card__stage.is-dragging {
        cursor: grabbing;
    }

.admin-image-preview-card__bg {
    display: none;
    position: absolute;
    width: 78%;
    max-width: 430px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(0, 164, 88, 0.16);
    z-index: 1;
}

.admin-image-preview-card__stage img {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    max-width: none;
    width: 70%;
    height: auto;
    transform: translate(-50%, -50%) translate(var(--x, 0px), var(--y, 0px)) scale(var(--scale, 1));
    transform-origin: center;
    user-select: none;
    pointer-events: none;
}

.admin-image-preview-card[data-existing-image-card] .admin-image-preview-card__stage img {
    width: 111%;
}

.admin-image-preview-card__controls {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.admin-image-preview-card__control {
    display: grid;
    gap: 6px;
}

    .admin-image-preview-card__control label {
        font-family: "Barlow", sans-serif;
        font-size: 13px;
        font-weight: 800;
        color: #007C43;
    }

    .admin-image-preview-card__control input[type="range"] {
        width: 100%;
    }

.admin-image-preview-card__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

    .admin-image-preview-card__remove:hover {
        background: #C1121F;
    }

/* ADMIN FILES - KEPT FOR LATER */

.admin-existing-file {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-existing-file__name {
    font-weight: 700;
    color: #1E1E1E;
}

.admin-existing-file__download {
    color: #00A458;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

    .admin-existing-file__download:hover {
        opacity: 0.75;
    }

.admin-existing-file__delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #C1121F;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.18);
}

    .admin-existing-file__delete:hover {
        background: #970E18;
    }

/* RESPONSIVE */

@media (max-width: 900px) {
    .admin-product-form__grid,
    .admin-product-spec-row {
        grid-template-columns: 1fr;
    }

    .admin-product-form__section {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .admin-product-create-page {
        padding: 22px;
    }

    .admin-product-form__grid {
        grid-template-columns: 1fr;
    }

    .admin-product-form__field {
        width: 100%;
    }

    .admin-product-form__input,
    .admin-product-form__textarea,
    select.admin-product-form__input {
        width: 100%;
        max-width: 100%;
    }

    .admin-product-form__price-row {
        grid-template-columns: 1fr;
    }

    .admin-product-form__field--vat {
        max-width: 100%;
    }

    .admin-image-preview-list {
        grid-template-columns: 1fr;
    }

    .admin-product-form__actions {
        flex-direction: column;
    }

    .admin-product-form__submit,
    .admin-product-form__delete {
        width: 100%;
    }
}

.pg-product-detail__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .pg-product-detail__title-row .pg-product-detail__title {
        margin-right: auto;
    }

.pg-admin-product-actions--detail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-top: -16px;
}

.pg-product-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pg-admin-edit-button--card {
    position: static;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

    .pg-admin-edit-button--card img {
        width: 48px;
        height: 48px;
        display: block;
    }

.mobile-admin-badge {
    position: absolute;
    right: -5px;
    bottom: -6px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.main-nav__link--admin {
    color: #00A458;
    font-weight: 800;
}

.main-nav__logout-form {
    margin: 0;
    padding: 0;
}

.main-nav__logout-button {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font: inherit;
    font-weight: 800;
    color: #C1121F;
    cursor: pointer;
    text-align: left;
}

.mobile-admin-badge {
    position: absolute;
    right: -5px;
    bottom: -6px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.mobile-admin-menu {
    display: none;
}

@media (max-width: 767px) {
    .nav-toggle {
        position: relative;
    }

    .mobile-admin-badge {
        display: flex;
    }

    .mobile-admin-menu {
        display: grid;
        gap: 8px;
        width: 100%;
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(0, 164, 88, 0.16);
        justify-items: center;
        text-align: center;
    }

    .mobile-admin-menu__label {
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #00A458;
    }

    .mobile-admin-menu__logout-form {
        margin: 0;
        padding: 0;
    }

    .mobile-admin-menu__logout-button {
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        font: inherit;
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #C1121F;
        cursor: pointer;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-toggle .mobile-admin-badge {
        position: absolute !important;
        right: -6px !important;
        bottom: -7px !important;
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        border-radius: 999px !important;
        background: #111111 !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: "Barlow", sans-serif !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        text-align: center !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.18) !important;
        z-index: 20 !important;
    }
}

.pg-admin-edit-button--detail {
    position: static;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

    .pg-admin-edit-button--detail img {
        width: 46px !important;
        height: auto !important;
        max-width: 46px !important;
        display: block;
    }

@media (max-width: 767px) {
    .pg-product-detail {
        overflow-x: hidden;
    }

        .pg-product-detail .container {
            max-width: 100%;
            overflow-x: hidden;
        }

    .pg-product-detail__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        max-width: 100%;
    }

    .pg-product-detail__gallery,
    .pg-product-detail__content,
    .pg-product-detail__buy-box,
    .pg-product-detail__price,
    .pg-product-detail__intro,
    .pg-product-detail__meta {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .pg-product-detail__main-image {
        width: 100%;
        max-width: 100%;
    }

        .pg-product-detail__main-image img {
            max-width: 100%;
            height: auto;
        }

    .pg-product-detail__thumbs {
        max-width: 100%;
        overflow-x: auto;
        display: flex;
        gap: 10px;
        padding-bottom: 6px;
    }

    .pg-product-detail__thumb {
        flex: 0 0 auto;
    }

    .pg-product-detail__title-row {
        align-items: flex-start;
        gap: 10px;
    }

    .pg-product-detail__title {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .pg-product-detail__cart-button {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================
   ADMIN LOGIN
========================================= */

.admin-login {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background: #F2FBF6;
}

.admin-login__card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 24px 70px rgba(0, 92, 49, 0.14);
}

.admin-login__title {
    margin: 0 0 28px;
    font-family: "Anton SC", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    color: #00A458;
}

.admin-login__form {
    display: grid;
    gap: 18px;
}

.admin-login__field {
    display: grid;
    gap: 8px;
}

    .admin-login__field label {
        font-family: "Barlow", sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #007C43;
    }

    .admin-login__field input {
        width: 100%;
        height: 48px;
        border: 1px solid rgba(0, 164, 88, 0.24);
        border-radius: 14px;
        padding: 0 14px;
        font-family: "Barlow", sans-serif;
        font-size: 16px;
        color: #1E1E1E;
        outline: none;
    }

        .admin-login__field input:focus {
            border-color: #00A458;
            box-shadow: 0 0 0 4px rgba(0, 164, 88, 0.12);
        }

    .admin-login__field span,
    .admin-login__validation {
        font-family: "Barlow", sans-serif;
        font-size: 14px;
        color: #B42318;
    }

.admin-login__remember {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    color: #1E1E1E;
}

    .admin-login__remember input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #00A458;
    }

.admin-login__button {
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: #00A458;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 164, 88, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .admin-login__button:hover {
        background: #007C43;
        transform: translateY(-1px);
        box-shadow: 0 20px 44px rgba(0, 124, 67, 0.28);
    }

@media (max-width: 560px) {
    .admin-login {
        padding: 48px 18px;
    }

    .admin-login__card {
        padding: 28px;
        border-radius: 22px;
    }

    .admin-login__title {
        font-size: 30px;
    }
}

/* =========================================
   ADMIN LAYOUT
========================================= */

.admin-layout {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #F6F4FC;
    color: #1E1E1E;
}

.admin-layout-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(45, 17, 124, 0.12);
}

.admin-layout-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-layout-header__logo {
    font-size: 18px;
    font-weight: 800;
    color: #5429CE;
    text-decoration: none;
}

.admin-layout-header__nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .admin-layout-header__nav a {
        font-size: 14px;
        font-weight: 700;
        color: #1E1E1E;
        text-decoration: none;
    }

.admin-layout-header__logout button {
    border: 0;
    border-radius: 999px;
    background: #5429CE;
    color: #ffffff;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
}

.admin-layout-main {
    min-height: calc(100vh - 73px);
}

/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-dashboard {
    padding: 80px 24px;
}

.admin-dashboard__inner {
    max-width: 980px;
    margin: 0 auto;
}

.admin-dashboard__header {
    text-align: center;
    margin-bottom: 42px;
}

.admin-dashboard__title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;
    color: #2D117C;
}

.admin-dashboard__subtitle {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.admin-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
    gap: 24px;
}

.admin-dashboard-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 32px 24px;
    border-radius: 28px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(45, 17, 124, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .admin-dashboard-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(45, 17, 124, 0.18);
    }

.admin-dashboard-card__title {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #5429CE;
    margin-bottom: 12px;
}

.admin-dashboard-card__text {
    font-size: 16px;
    font-weight: 700;
    color: #1E1E1E;
}

.pg-webshop-admin-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

    .pg-webshop-admin-actions .pg-admin-create-button {
        cursor: pointer;
    }

@media (max-width: 767px) {
    .admin-layout-header__inner {
        flex-wrap: wrap;
    }

    .admin-layout-header__nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .admin-layout-header__logout {
        margin-left: auto;
        margin-right: auto;
    }

    .admin-dashboard {
        padding: 52px 18px;
    }

    .admin-dashboard__title {
        font-size: 34px;
    }

    .admin-dashboard__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PANDA GRASS PRODUCT CARD ADMIN ACTIONS
========================================= */

.pg-product-card {
    position: relative;
}

.pg-product-card__title-row {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

    .pg-product-card__title-row .pg-product-card__title {
        margin: 0;
        flex: 1 1 auto;
    }

.pg-product-card__admin-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex: 0 0 auto;
}

.pg-product-card__edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 122, 66, 0.22));
}

    .pg-product-card__edit-button:hover {
        transform: scale(1.12);
        filter: drop-shadow(0 10px 24px rgba(0, 122, 66, 0.38));
    }

    .pg-product-card__edit-button img {
        width: 28px;
        height: 28px;
        display: block;
    }

.pg-product-card__delete-form {
    display: flex;
    margin: 0;
    padding: 0;
}

.pg-product-card__delete-button {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #D91F32;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform .16s ease, opacity .16s ease;
}

    .pg-product-card__delete-button:hover {
        transform: translateY(-1px) scale(1.08);
        opacity: .82;
    }

    .pg-product-card__delete-button svg {
        width: 30px;
        height: 30px;
        transform: translateY(1px);
    }


/* =========================================
   PANDA GRASS ADMIN LAYOUT + DASHBOARD
========================================= */

.admin-layout-body {
    margin: 0;
    background: #F4FCF7;
    font-family: "Barlow", sans-serif;
    color: #1B152B;
}

.admin-layout-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 164, 88, 0.08);
    box-shadow: 0 10px 30px rgba(0, 122, 66, 0.04);
}

.admin-layout-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-layout-header__logo {
    font-family: "Anton SC", sans-serif;
    font-size: 32px;
    color: #00A458;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.admin-layout-header__nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-layout-header__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(0, 164, 88, 0.08);
    color: #00A458;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .admin-layout-header__link:hover {
        background: #00A458;
        color: #ffffff;
        transform: translateY(-1px);
    }

.admin-layout-header__logout {
    border: 0;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(193, 18, 31, 0.10);
    color: #C1121F;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .admin-layout-header__logout:hover {
        background: #C1121F;
        color: #ffffff;
        transform: translateY(-1px);
    }

.admin-layout-main {
    padding: 42px 0 80px;
}

.admin-dashboard__header {
    margin-bottom: 36px;
}

.admin-dashboard__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    color: #00A458;
    text-align: center;
}

.admin-dashboard__subtitle {
    margin-top: 16px;
    max-width: 720px;
    margin-inline: auto;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4B5B52;
    text-align: center;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.admin-dashboard-card {
    min-height: 255px;
    background: #ffffff;
    border-radius: 36px;
    padding: 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgba(0, 164, 88, 0.08);
    box-shadow: 0 14px 40px rgba(0, 164, 88, 0.05), 0 2px 10px rgba(0, 0, 0, 0.03);
}

    .admin-dashboard-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 60px rgba(0, 164, 88, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    }

.admin-dashboard-card__eyebrow {
    font-family: "Anton SC", sans-serif;
    font-size: clamp(64px, 5vw, 88px);
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: #00A458;
    margin: 0 0 22px 0;
    text-align: center;
}

.admin-dashboard-card__title {
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
    margin: 0;
    text-align: center;
}

@media (max-width: 900px) {
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-card {
        min-height: 220px;
        border-radius: 28px;
    }

    .admin-dashboard-card__eyebrow {
        font-size: 64px;
    }

    .admin-dashboard-card__title {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .admin-layout-header__inner {
        flex-wrap: wrap;
    }

    .admin-layout-header__nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .admin-layout-header__logo {
        font-size: 26px;
    }

    .admin-dashboard-card {
        padding: 26px;
        min-height: 190px;
    }

    .admin-dashboard-card__eyebrow {
        font-size: 52px;
        margin-bottom: 18px;
    }

    .admin-dashboard-card__title {
        font-size: 20px;
    }
}

.admin-product-modal__backdrop {
    pointer-events: none !important;
}

.admin-product-form__delete {
    min-height: 58px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(193, 18, 31, 0.10);
    color: #C1121F;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

    .admin-product-form__delete:hover {
        background: #C1121F;
        color: #ffffff;
    }

/* =========================================
   PANDA GRASS CUSTOM CONFIRM MODAL
========================================= */

.pp-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

    .pp-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.pp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none !important;
}

.pp-modal__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 24px 80px rgba(0, 122, 66, 0.16), 0 8px 30px rgba(0, 122, 66, 0.08);
    transform: translateY(18px) scale(0.96);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.pp-modal.is-open .pp-modal__card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.pp-modal__title {
    margin: 0;
    font-family: "Anton SC", sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #007A42;
}

.pp-modal__body {
    margin-top: 22px;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4B5B52;
    white-space: pre-line;
}

.pp-modal__body-text {
    white-space: pre-line;
}

.pp-modal__preview {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.pp-modal__preview-image {
    display: block;
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid rgba(0, 122, 66, 0.16);
    background: repeating-conic-gradient(#eeeeee 0% 25%, #ffffff 0% 50%) 50% / 16px 16px;
    box-shadow: 0 10px 24px rgba(0, 122, 66, 0.10);
}

.pp-modal__actions {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.pp-modal__button {
    min-width: 112px;
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .pp-modal__button:hover {
        transform: translateY(-2px);
    }

.pp-modal__button--primary {
    background: #00A458;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 164, 88, 0.24);
}

    .pp-modal__button--primary:hover {
        background: #007A42;
        box-shadow: 0 14px 28px rgba(0, 122, 66, 0.32);
    }

.pp-modal__button--secondary {
    background: #E8F7EF;
    color: #007A42;
}

    .pp-modal__button--secondary:hover {
        background: #D8F0E3;
    }

@media (max-width: 640px) {
    .pp-modal {
        padding: 18px;
    }

    .pp-modal__card {
        padding: 26px;
        border-radius: 26px;
    }

    .pp-modal__title {
        font-size: 28px;
    }

    .pp-modal__preview-image {
        width: 96px;
        height: 96px;
    }

    .pp-modal__actions {
        flex-direction: column;
    }

    .pp-modal__button {
        width: 100%;
    }
}

/* =========================================
   PANDA GRASS ADMIN REQUIRED / VALIDATION FIXES
========================================= */

.admin-required {
    color: #D91F32;
    font-weight: 900;
    margin-left: 3px;
}

.admin-product-form__required-note {
    margin: 22px 0 0;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: #4B5B52;
}

    .admin-product-form__required-note .admin-required {
        color: #D91F32;
    }

.admin-product-form__limit-error {
    margin-top: 8px;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: #D91F32;
}

    .admin-product-form__limit-error[hidden] {
        display: none !important;
    }

.admin-product-form__validation,
.field-validation-error,
.validation-summary-errors,
.validation-summary-errors li,
.admin-product-form span[data-valmsg-for] {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: #D91F32;
}

.admin-product-form__validation {
    margin: 0 0 24px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(217, 31, 50, 0.08);
    border: 1px solid rgba(217, 31, 50, 0.14);
}

.admin-product-form__success {
    margin: 0 0 24px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(0, 164, 88, 0.10);
    border: 1px solid rgba(0, 164, 88, 0.18);
    color: #007A42;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

/* =========================================
   PANDA GRASS ADMIN FIELD LABEL FIXES
========================================= */

.admin-product-form__field label,
.admin-product-form__checkbox {
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #007A42;
}

    .admin-product-form__checkbox span {
        color: #007A42;
    }

.admin-product-form__section-title {
    color: #007A42;
}

.admin-product-form__input,
.admin-product-form__textarea {
    border-color: rgba(0, 164, 88, 0.22);
}

    .admin-product-form__input:focus,
    .admin-product-form__textarea:focus {
        border-color: #00A458;
        box-shadow: 0 0 0 4px rgba(0, 164, 88, 0.12);
    }

/* =========================================
   PANDA GRASS ADMIN PRICE / CHECKBOX FIXES
========================================= */

.admin-product-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #00A458;
    cursor: pointer;
    flex-shrink: 0;
}

.admin-product-form__price-fields {
    grid-column: 1 / -1;
    width: 100%;
}

.admin-product-form__price-row {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(180px, 260px) 120px;
    gap: 22px;
    align-items: end;
}

.admin-product-form__field--vat {
    max-width: 120px;
}

@media (max-width: 767px) {
    .admin-product-form__price-row {
        grid-template-columns: 1fr;
    }

    .admin-product-form__field--vat {
        max-width: none;
    }
}

/* =========================================
   PANDA GRASS ADMIN SPEC DELETE BUTTON
========================================= */

.admin-product-spec-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-product-spec-card__delete {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #FFE7EA;
    color: #D91F32;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .admin-product-spec-card__delete svg {
        width: 20px;
        height: 20px;
    }

    .admin-product-spec-card__delete:hover {
        background: #D91F32;
        color: #ffffff;
        transform: scale(1.06);
    }

/* =========================================
   PANDA GRASS ADMIN PRICE ROW FIX
========================================= */

.admin-product-form__price-fields {
    grid-column: 1 / -1;
    width: 100%;
}

.admin-product-form__price-row {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(180px, 260px) 120px;
    gap: 22px;
    align-items: start;
}

    .admin-product-form__price-row .admin-product-form__field {
        align-self: start;
    }

.admin-product-form__field--vat {
    max-width: 120px;
    margin-top: 0 !important;
    padding-top: 0 !important;
    align-self: start !important;
}

    .admin-product-form__field--vat label {
        margin-top: 0 !important;
    }

    .admin-product-form__field--vat .admin-product-form__input {
        width: 120px;
    }

@media (max-width: 767px) {
    .admin-product-form__price-row {
        grid-template-columns: 1fr;
    }

    .admin-product-form__field--vat {
        max-width: none;
    }

        .admin-product-form__field--vat .admin-product-form__input {
            width: 100%;
        }
}

/* =========================================
   PANDA GRASS ADMIN WEBSHOP HEADER CENTER
========================================= */

.admin-page-title-row--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    text-align: center;
}

    .admin-page-title-row--centered .pg-webshop-page__lead {
        margin-inline: auto;
    }

    .admin-page-title-row--centered .pg-webshop-admin-actions {
        margin: 28px 0 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }


/* =========================================
   PANDA GRASS PRODUCT DETAIL ADMIN ACTIONS
========================================= */

.pg-product-detail__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.pg-product-detail__title {
    margin-right: auto;
}

.pg-product-detail__edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 164, 88, 0.22));
}

    .pg-product-detail__edit-button:hover {
        transform: scale(1.12);
        filter: drop-shadow(0 10px 24px rgba(0, 122, 66, 0.34));
    }

    .pg-product-detail__edit-button img {
        width: 48px;
        height: 48px;
        display: block;
    }

.pg-product-detail__delete-form {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.pg-product-detail__delete-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #D91F32;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .pg-product-detail__delete-button:hover {
        transform: scale(1.14);
        opacity: 0.82;
    }

    .pg-product-detail__delete-button svg {
        width: 46px;
        height: 46px;
        display: block;
    }

@media (max-width: 767px) {
    .pg-product-detail__title-row {
        align-items: flex-start;
        gap: 10px;
    }

    .pg-product-detail__edit-button img {
        width: 34px;
        height: 34px;
    }

    .pg-product-detail__delete-button {
        width: 34px;
        height: 34px;
    }

        .pg-product-detail__delete-button svg {
            width: 30px;
            height: 30px;
        }
}

.admin-layout-header__link--button {
    border: 0;
    font-family: "Barlow", sans-serif;
    cursor: pointer;
}

    .admin-layout-header__link--button:hover {
        cursor: pointer;
    }

/* =========================================
   PANDA GRASS ADMIN HEADER NAV ALIGNMENT
========================================= */

.admin-layout-header__inner {
    position: relative;
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.admin-layout-header__logo {
    justify-self: start;
}

.admin-layout-header__center {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-layout-header__right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-layout-header__nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-layout-header__logout-form {
    margin: 0;
}

.admin-layout-header__link--button {
    border: 0;
    font-family: "Barlow", sans-serif;
    cursor: pointer;
    white-space: nowrap;
}

    .admin-layout-header__link--button:hover {
        cursor: pointer;
    }

@media (max-width: 768px) {
    .admin-layout-header__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }

    .admin-layout-header__logo {
        flex: 1 1 auto;
    }

    .admin-layout-header__center {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .admin-layout-header__right {
        flex: 0 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
    }

    .admin-layout-header__nav {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .admin-layout-header__right {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-layout-header__center {
        justify-content: flex-start;
    }

    .admin-layout-header__link,
    .admin-layout-header__logout {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}

/* =========================================
   PANDA GRASS ADMIN DRAWER FLOAT HIDE
========================================= */

.admin-layout-body .pg-webshop-drawer-float {
    display: none !important;
}

.admin-product-form__vat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-product-form__vat-control {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
}

    .admin-product-form__vat-control .admin-product-form__input {
        max-width: 100px;
    }

        .admin-product-form__vat-control .admin-product-form__input:disabled {
            background: #f1f1f1;
            color: #777;
            cursor: not-allowed;
        }

.admin-product-form__vat-suffix {
    font-weight: 700;
    color: #555;
}

.admin-product-form__vat-toggle {
    margin-top: 0;
    white-space: nowrap;
}

    .admin-product-form__vat-toggle span {
        line-height: 1.15;
    }

@media (max-width: 640px) {
    .admin-product-form__vat-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
    }
}

.admin-create-success-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-create-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    box-shadow: none;
    backdrop-filter: none;
}

.admin-create-success-modal__panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 36px 42px 32px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: none;
    text-align: center;
}

.admin-create-success-modal__title {
    margin: 0 0 24px;
    color: #122018;
    font-family: "Barlow", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.admin-create-success-modal__button {
    min-height: 44px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    background: #1F7A37;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(31, 122, 55, 0.24);
    transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

    .admin-create-success-modal__button:hover {
        background: #145624;
        color: #ffffff;
        box-shadow: 0 22px 52px rgba(20, 86, 36, 0.30);
        transform: translateY(-1px);
    }