/* ==========================================================
   AURORA PROBLEM GRID v1.0
   gyogytalpbetet.hu
========================================================== */

.aurora-problem-section {
    max-width: 1500px;
    margin: 55px auto 90px;
    padding: 45px;
    background: #F8FBF6;
    border-radius: 34px;
}


/* ---------- FEJLÉC ---------- */

.aurora-problem-header {
    text-align: center;
    margin-bottom: 55px;
}

.aurora-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #EAF4E3;
    color: #5E8E3E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    border-radius: 100px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.aurora-problem-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.2;
}

.aurora-problem-header p {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}


/* ---------- GRID ---------- */

.aurora-problem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}


/* ---------- KÁRTYA ---------- */

.aurora-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    transition: transform .30s ease, box-shadow .30s ease;
}

.aurora-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .35s ease;
}


/* ---------- HOVER ---------- */

.aurora-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(63, 116, 51, .18);
}

.aurora-card:hover img {
    transform: scale(1.03);
}


/* ---------- TABLET ---------- */

@media (max-width: 1400px) {
    .aurora-problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ---------- KISEBB TABLET ---------- */

@media (max-width: 900px) {
    .aurora-problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aurora-problem-header h2 {
        font-size: 34px;
    }
}


/* ---------- MOBIL ---------- */

@media (max-width: 650px) {
    .aurora-problem-section {
        padding: 20px;
        margin: 30px auto 50px;
    }

    .aurora-problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .aurora-problem-header {
        margin-bottom: 35px;
    }

    .aurora-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .aurora-problem-header h2 {
        font-size: 28px;
    }

    .aurora-problem-header p {
        font-size: 16px;
        line-height: 1.6;
    }
}


/* ==========================================================
   ALOLDALI ALKATEGÓRIÁK ELRENDEZÉSE
========================================================== */

/* Asztali nézet: 6 kategória egy sorban */
.subcategory-list {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.subcategory-list > .col-subcategory-item {
    flex: 0 0 16.6667% !important;
    max-width: 16.6667% !important;
    padding: 10px !important;
}


/* Közepes képernyő: 3 kategória egy sorban */

@media (max-width: 1200px) {
    .subcategory-list > .col-subcategory-item {
        flex: 0 0 33.3333% !important;
        max-width: 33.3333% !important;
    }
}


/* Mobil és kisebb tablet: 2 kategória egy sorban */

@media (max-width: 768px) {
    .subcategory-list > .col-subcategory-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}


/* Nagyon keskeny mobil: 1 kategória egy sorban */

@media (max-width: 420px) {
    .subcategory-list > .col-subcategory-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================
   AURORA – MIÉRT MINKET? v1.1
   ShopRenter-kompatibilis változat
   gyogytalpbetet.hu
========================================================== */

.aurora-why {
    position: relative;
    max-width: 1500px;
    margin: 70px auto 90px;
    padding: 72px 54px 54px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 8%,
            rgba(142, 177, 112, 0.14),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #FCFDFB 0%,
            #F8FBF6 100%
        );

    border: 1px solid rgba(94, 142, 62, 0.09);
    border-radius: 38px;
    box-shadow: 0 24px 70px rgba(50, 78, 38, 0.08);
}

.aurora-why *,
.aurora-why *::before,
.aurora-why *::after {
    box-sizing: border-box;
}


/* ---------- TARTALMI RÉTEGEK ---------- */

.aurora-why-header,
.aurora-why-grid,
.aurora-why-statement {
    position: relative;
    z-index: 2;
}


/* ---------- FINOM HÁTTÉRDEKORÁCIÓ ---------- */

.aurora-why-decoration {
    position: absolute;
    z-index: 1;
    top: -250px;
    right: -190px;

    width: 630px;
    height: 630px;

    opacity: 0.46;
    border: 1px solid rgba(94, 142, 62, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.aurora-why-decoration::before,
.aurora-why-decoration::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(94, 142, 62, 0.10);
    border-radius: 50%;
}

.aurora-why-decoration::before {
    top: 74px;
    right: 74px;
    bottom: 74px;
    left: 74px;
}

.aurora-why-decoration::after {
    top: 150px;
    right: 150px;
    bottom: 150px;
    left: 150px;
}


/* ---------- FEJLÉC ---------- */

.aurora-why-header {
    max-width: 1100px;
    margin: 0 auto 52px;
    text-align: center;
}

.aurora-why-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    color: #5E8E3E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.45px;
    line-height: 1;
}

.aurora-why-label-dot {
    display: inline-block;

    width: 9px;
    height: 9px;
    margin-right: 10px;

    background: #5E8E3E;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(94, 142, 62, 0.10);
}

.aurora-why-header h2 {
    margin: 0 0 18px;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.12;
}

.aurora-why-header p {
    max-width: 780px;
    margin: 0 auto;

    color: #666666;
    font-size: 18px;
    line-height: 1.75;
}


/* ---------- KÁRTYARÁCS ---------- */

.aurora-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 22px;
    row-gap: 22px;
}

.aurora-why-card {
    position: relative;
    min-width: 0;
    padding: 34px 28px 32px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(94, 142, 62, 0.14);
    border-radius: 26px;
    box-shadow: 0 12px 34px rgba(39, 63, 29, 0.065);

    transition:
        transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.32s ease,
        border-color 0.32s ease,
        background-color 0.32s ease;
}

.aurora-why-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    background: radial-gradient(
        circle,
        rgba(94, 142, 62, 0.10) 0%,
        transparent 68%
    );

    border-radius: 50%;
    pointer-events: none;
}


/* ---------- IKONOK ---------- */

.aurora-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;
    margin-bottom: 28px;

    color: #5E8E3E;

    background:
        linear-gradient(
            145deg,
            #F3F8EF 0%,
            #EAF4E3 100%
        );

    border: 1px solid rgba(94, 142, 62, 0.12);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(76, 117, 53, 0.09);

    transition:
        transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
        background-color 0.32s ease;
}

.aurora-why-icon svg {
    width: 38px;
    height: 38px;
    overflow: visible;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------- KÁRTYASZÖVEG ---------- */

.aurora-why-card h3 {
    min-height: 58px;
    margin: 0 0 14px;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.38;
}

.aurora-why-card p {
    margin: 0;

    color: #666666;
    font-size: 15px;
    line-height: 1.72;
}


/* ---------- HOVER ---------- */

.aurora-why-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(94, 142, 62, 0.25);
    box-shadow: 0 22px 50px rgba(55, 89, 40, 0.14);
}

.aurora-why-card:hover .aurora-why-icon {
    transform: translateY(-3px) scale(1.035);
}


/* ---------- HITVALLÁS SÁV ---------- */

.aurora-why-statement {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;

    margin-top: 28px;
    padding: 27px 30px;

    color: #FFFFFF;

    background:
        linear-gradient(
            120deg,
            #476F31 0%,
            #5E8E3E 100%
        );

    border-radius: 25px;
    box-shadow: 0 16px 36px rgba(63, 111, 47, 0.20);
}

.aurora-why-statement-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
}

.aurora-why-statement-icon svg {
    width: 31px;
    height: 31px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-why-statement p {
    margin: 0;

    color: #FFFFFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.aurora-why-statement > span {
    white-space: nowrap;

    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.15px;
}


/* ---------- BELÉPŐ ANIMÁCIÓ ---------- */

.aurora-why-visible .aurora-why-card {
    animation: auroraWhyCardReveal 0.62s both;
}

.aurora-why-visible .aurora-why-card:nth-child(1) {
    animation-delay: 0.05s;
}

.aurora-why-visible .aurora-why-card:nth-child(2) {
    animation-delay: 0.14s;
}

.aurora-why-visible .aurora-why-card:nth-child(3) {
    animation-delay: 0.23s;
}

.aurora-why-visible .aurora-why-card:nth-child(4) {
    animation-delay: 0.32s;
}

.aurora-why-visible .aurora-why-statement {
    animation: auroraWhyStatementReveal 0.70s 0.39s both;
}

@keyframes auroraWhyCardReveal {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes auroraWhyStatementReveal {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ---------- LAPTOP ---------- */

@media (max-width: 1200px) {

    .aurora-why {
        padding: 62px 38px 42px;
    }

    .aurora-why-header h2 {
        font-size: 42px;
    }

    .aurora-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-why-card h3 {
        min-height: auto;
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 768px) {

    .aurora-why {
        margin: 45px auto 65px;
        padding: 50px 24px 28px;
        border-radius: 28px;
    }

    .aurora-why-header {
        margin-bottom: 38px;
    }

    .aurora-why-header h2 {
        font-size: 35px;
    }

    .aurora-why-header p {
        font-size: 16px;
        line-height: 1.65;
    }

    .aurora-why-grid {
        column-gap: 16px;
        row-gap: 16px;
    }

    .aurora-why-card {
        padding: 28px 23px;
        border-radius: 22px;
    }

    .aurora-why-statement {
        grid-template-columns: auto 1fr;
        column-gap: 18px;
        row-gap: 8px;
    }

    .aurora-why-statement > span {
        grid-column: 2;
    }

}


/* ---------- MOBIL ---------- */

@media (max-width: 560px) {

    .aurora-why {
        margin: 30px auto 50px;
        padding: 40px 16px 18px;
        border-radius: 24px;
    }

    .aurora-why-decoration {
        top: -320px;
        right: -300px;
    }

    .aurora-why-label {
        font-size: 11px;
    }

    .aurora-why-header h2 {
        font-size: 29px;
        letter-spacing: -0.35px;
    }

    .aurora-why-grid {
        grid-template-columns: 1fr;
    }

    .aurora-why-card {
        padding: 25px 22px;
    }

    .aurora-why-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 22px;
        border-radius: 19px;
    }

    .aurora-why-icon svg {
        width: 34px;
        height: 34px;
    }

    .aurora-why-card h3 {
        font-size: 19px;
    }

    .aurora-why-statement {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .aurora-why-statement > span {
        grid-column: auto;
    }

}

/* ==========================================================
   AURORA – MIÉRT MINKET? v1.3
   Prémium 2 × 2 elrendezés
========================================================== */


/* ---------- TELJES BLOKK ---------- */

.aurora-why {
    padding: 76px 48px 44px;
}


/* ---------- FEJLÉC ---------- */

.aurora-why-header {
    max-width: 1080px;
    margin: 0 auto 54px;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.aurora-why-label {
    margin-bottom: 20px;

    font-size: 13px;
    letter-spacing: 1.7px;
}

.aurora-why-header h2 {
    margin-bottom: 18px;

    font-size: 46px;
    letter-spacing: -1.1px;
    line-height: 1.12;
}

.aurora-why-header p {
    max-width: 850px;

    font-size: 17px;
    line-height: 1.65;
}


/* ---------- 2 × 2 KÁRTYARÁCS ---------- */

.aurora-why-grid {
    max-width: 1160px;
    margin: 0 auto;

    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
}


/* ---------- VÍZSZINTES KÁRTYÁK ---------- */

.aurora-why-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 24px;
    row-gap: 10px;
    align-items: start;

    min-height: 205px;
    padding: 34px 34px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(94, 142, 62, 0.14);
    border-radius: 27px;

    box-shadow: 0 14px 38px rgba(39, 63, 29, 0.075);
}


/* ---------- IKON ---------- */

.aurora-why-icon {
    grid-column: 1;
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;
    margin: 0;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #F4F9F0 0%,
            #EAF4E3 100%
        );

    box-shadow: 0 12px 28px rgba(76, 117, 53, 0.11);
}

.aurora-why-icon svg {
    width: 43px;
    height: 43px;
}


/* ---------- KÁRTYASZÖVEG ---------- */

.aurora-why-card h3 {
    grid-column: 2;
    grid-row: 1;

    min-height: 0;
    margin: 3px 0 4px;

    font-size: 22px;
    line-height: 1.3;
}

.aurora-why-card p {
    grid-column: 2;
    grid-row: 2;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;
}


/* ---------- HOVER ---------- */

.aurora-why-card:hover {
    transform: translateY(-7px);

    background: #FFFFFF;
    border-color: rgba(94, 142, 62, 0.29);

    box-shadow: 0 24px 54px rgba(55, 89, 40, 0.14);
}

.aurora-why-card:hover .aurora-why-icon {
    transform: translateY(-3px) scale(1.04);
}


/* ---------- ALSÓ ZÖLD SÁV ---------- */

.aurora-why-statement {
    max-width: 1160px;
    margin: 28px auto 0;
    padding: 28px 32px;

    border-radius: 25px;
    box-shadow: 0 17px 38px rgba(63, 111, 47, 0.22);
}

.aurora-why-statement p {
    font-size: 16px;
    line-height: 1.55;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .aurora-why {
        padding: 58px 28px 32px;
    }

    .aurora-why-header {
        margin-bottom: 42px;
    }

    .aurora-why-header h2 {
        font-size: 38px;
    }

    .aurora-why-grid {
        grid-template-columns: 1fr;
    }

    .aurora-why-card {
        min-height: 185px;
    }

}


/* ---------- MOBIL ---------- */

@media (max-width: 560px) {

    .aurora-why {
        padding: 40px 16px 20px;
    }

    .aurora-why-header {
        margin-bottom: 32px;
    }

    .aurora-why-header h2 {
        font-size: 29px;
        letter-spacing: -0.45px;
        line-height: 1.18;
    }

    .aurora-why-header p {
        font-size: 15px;
        line-height: 1.6;
    }

    .aurora-why-card {
        display: block;

        min-height: 0;
        padding: 27px 23px;

        border-radius: 23px;
    }

    .aurora-why-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 23px;

        border-radius: 21px;
    }

    .aurora-why-icon svg {
        width: 37px;
        height: 37px;
    }

    .aurora-why-card h3 {
        margin: 0 0 12px;

        font-size: 20px;
    }

    .aurora-why-statement {
        margin-top: 20px;
        padding: 23px;
    }

}

/* ==========================================================
   AURORA – 2 × 2 KÁRTYAELRENDEZÉS – VÉGLEGES FELÜLÍRÁS
========================================================== */

.aurora-why .aurora-why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
}

.aurora-why .aurora-why-card {
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    grid-template-rows: auto 1fr !important;
    column-gap: 24px !important;
    row-gap: 8px !important;
    align-items: start !important;

    min-width: 0 !important;
    min-height: 195px !important;
    padding: 32px !important;
}

.aurora-why .aurora-why-icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;

    width: 82px !important;
    height: 82px !important;
    margin: 0 !important;
}

.aurora-why .aurora-why-card h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;

    min-height: 0 !important;
    margin: 3px 0 5px !important;
    font-size: 22px !important;
}

.aurora-why .aurora-why-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
}

.aurora-why .aurora-why-statement {
    max-width: 1160px !important;
    margin: 28px auto 0 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .aurora-why .aurora-why-grid {
        grid-template-columns: 1fr !important;
    }

}


/* MOBIL */

@media (max-width: 560px) {

    .aurora-why .aurora-why-card {
        display: block !important;
        min-height: 0 !important;
        padding: 25px 22px !important;
    }

    .aurora-why .aurora-why-icon {
        width: 68px !important;
        height: 68px !important;
        margin: 0 0 22px !important;
    }

    .aurora-why .aurora-why-card h3 {
        margin: 0 0 12px !important;
        font-size: 20px !important;
    }

}

/* ==========================================================
   AURORA – MÁRKÁINK BLOKK v2.0
   Letisztult, logóközpontú változat
========================================================== */

.aurora-brands {
    position: relative;
    max-width: 1500px;
    margin: 70px auto 90px;
    padding: 76px 54px 48px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(142, 177, 112, 0.10),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #FCFDFB 0%,
            #F8FBF6 100%
        );

    border: 1px solid rgba(94, 142, 62, 0.10);
    border-radius: 38px;
    box-shadow: 0 24px 70px rgba(50, 78, 38, 0.075);
}

.aurora-brands *,
.aurora-brands *::before,
.aurora-brands *::after {
    box-sizing: border-box;
}


/* ---------- HÁTTÉRDEKORÁCIÓ ---------- */

.aurora-brands-decoration {
    position: absolute;
    top: -280px;
    right: -220px;
    width: 670px;
    height: 670px;

    border: 1px solid rgba(94, 142, 62, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.aurora-brands-decoration::before,
.aurora-brands-decoration::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(94, 142, 62, 0.08);
    border-radius: 50%;
}

.aurora-brands-decoration::before {
    top: 82px;
    right: 82px;
    bottom: 82px;
    left: 82px;
}

.aurora-brands-decoration::after {
    top: 170px;
    right: 170px;
    bottom: 170px;
    left: 170px;
}


/* ---------- FEJLÉC ---------- */

.aurora-brands-header {
    position: relative;
    z-index: 2;

    max-width: 940px;
    margin: 0 auto 56px;
    text-align: center;
}

.aurora-brands-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;

    color: #5E8E3E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    line-height: 1;
}

.aurora-brands-label-dot {
    display: inline-block;

    width: 9px;
    height: 9px;
    margin-right: 10px;

    background: #5E8E3E;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(94, 142, 62, 0.10);
}

.aurora-brands-header h2 {
    margin: 0 0 18px;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.14;
}

.aurora-brands-header p {
    max-width: 760px;
    margin: 0 auto;

    color: #666666;
    font-size: 17px;
    line-height: 1.7;
}


/* ---------- MÁRKACSOPORT ---------- */

.aurora-brand-group {
    position: relative;
    z-index: 2;

    max-width: 1260px;
    margin: 0 auto 30px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(94, 142, 62, 0.12);
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(39, 63, 29, 0.055);
}

.aurora-brand-group-care {
    margin-bottom: 0;
}

.aurora-brand-group-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.aurora-brand-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 62px;
    height: 62px;
    margin-right: 20px;

    color: #5E8E3E;
    background: #EFF7EA;
    border: 1px solid rgba(94, 142, 62, 0.14);
    border-radius: 20px;
}

.aurora-brand-group-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-brand-group-header h3 {
    margin: 0 0 5px;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.aurora-brand-group-header p {
    margin: 0;

    color: #707070;
    font-size: 15px;
    line-height: 1.55;
}


/* ---------- LOGÓRÁCS ---------- */

.aurora-brand-grid {
    display: grid;
    gap: 20px;
}

.aurora-brand-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aurora-brand-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* ---------- LOGÓKÁRTYÁK ---------- */

.aurora-brand-card {
    position: relative;
    min-width: 0;
    min-height: 230px;
    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(94, 142, 62, 0.13);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(39, 63, 29, 0.05);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease,
        background-color 0.30s ease;
}

.aurora-brand-card:hover {
    transform: translateY(-6px);

    background: #FFFFFF;
    border-color: rgba(94, 142, 62, 0.28);
    box-shadow: 0 20px 44px rgba(55, 89, 40, 0.13);
}


/* ---------- LOGÓK ---------- */

.aurora-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 150px;
    margin: 0;
    padding: 12px;
}

.aurora-brand-logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;

    object-fit: contain;
}


/* ---------- ALSÓ MÁRKASZÖVEGEK ELREJTÉSE ---------- */

.aurora-brand-text {
    display: none;
}


/* ---------- EGYEDI LOGÓMÉRETEK ---------- */

.aurora-brand-logo img[alt="Pedibus logó"] {
    max-width: 220px;
}

.aurora-brand-logo img[alt="Corbby logó"] {
    max-width: 230px;
}

.aurora-brand-logo img[alt="Sanusmed logó"] {
    max-width: 220px;
}

.aurora-brand-logo img[alt="Tarrago logó"] {
    max-width: 235px;
}

.aurora-brand-logo img[alt="Briston logó"] {
    max-width: 280px;
}


/* ---------- ALSÓ ÜZENET ---------- */

.aurora-brands-statement {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 22px;

    max-width: 1260px;
    margin: 34px auto 0;
    padding: 22px 28px;

    color: #4D5A46;
    background: transparent;

    border-top: 1px solid rgba(94, 142, 62, 0.15);
    border-bottom: 1px solid rgba(94, 142, 62, 0.15);
    box-shadow: none;
}

.aurora-brands-statement::before,
.aurora-brands-statement::after {
    content: "";
    position: absolute;
    top: 50%;

    width: 7px;
    height: 7px;

    background: #5E8E3E;
    border-radius: 50%;
    transform: translateY(-50%);
}

.aurora-brands-statement::before {
    left: 0;
}

.aurora-brands-statement::after {
    right: 0;
}

.aurora-brands-statement-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    color: #5E8E3E;
    background: #EFF7EA;
    border: 1px solid rgba(94, 142, 62, 0.15);
    border-radius: 18px;
}

.aurora-brands-statement-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-brands-statement p {
    margin: 0;

    color: #4D5A46;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.aurora-brands-statement > span {
    display: none;
}


/* ---------- LAPTOP ---------- */

@media (max-width: 1200px) {

    .aurora-brands {
        padding: 62px 38px 42px;
    }

    .aurora-brands-header h2 {
        font-size: 40px;
    }

    .aurora-brand-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 768px) {

    .aurora-brands {
        margin: 45px auto 65px;
        padding: 50px 24px 28px;
        border-radius: 28px;
    }

    .aurora-brands-header {
        margin-bottom: 40px;
    }

    .aurora-brands-header h2 {
        font-size: 34px;
    }

    .aurora-brand-group {
        padding: 25px 20px;
        border-radius: 23px;
    }

    .aurora-brand-grid-two {
        grid-template-columns: 1fr;
    }

}


/* ---------- MOBIL ---------- */

@media (max-width: 560px) {

    .aurora-brands {
        margin: 30px auto 50px;
        padding: 40px 15px 18px;
        border-radius: 24px;
    }

    .aurora-brands-header {
        margin-bottom: 30px;
    }

    .aurora-brands-label {
        font-size: 11px;
    }

    .aurora-brands-header h2 {
        font-size: 29px;
        letter-spacing: -0.4px;
    }

    .aurora-brand-group {
        padding: 22px 15px;
    }

    .aurora-brand-group-header {
        align-items: flex-start;
    }

    .aurora-brand-group-icon {
        width: 56px;
        height: 56px;
        margin-right: 15px;
        border-radius: 18px;
    }

    .aurora-brand-group-header h3 {
        font-size: 20px;
    }

    .aurora-brand-grid-four,
    .aurora-brand-grid-two {
        grid-template-columns: 1fr;
    }

    .aurora-brand-card {
        min-height: 190px;
    }

    .aurora-brand-logo {
        height: 130px;
    }

    .aurora-brands-statement {
        grid-template-columns: 1fr;
        padding: 22px 18px;
        text-align: center;
    }

    .aurora-brands-statement-icon {
        margin: 0 auto 12px;
    }

}

.aurora-brand-logo img[alt="Pedibus logó"] {
    max-width: 92% !important;
    max-height: 105px !important;
}

.aurora-brand-logo img[alt="Corbby logó"] {
    max-width: 88% !important;
    max-height: 110px !important;
}

.aurora-brand-logo img[alt="Sanusmed logó"] {
    max-width: 84% !important;
    max-height: 125px !important;
}

.aurora-brand-logo img[alt="Tarrago logó"] {
    max-width: 90% !important;
    max-height: 105px !important;
}

.aurora-brand-logo img[alt="Briston logó"] {
    max-width: 88% !important;
    max-height: 95px !important;
}

/* ==========================================================
   AURORA MÁRKÁK – LOGÓMÉRETEK JAVÍTÁSA
========================================================== */

.aurora-brands .aurora-brand-card {
    min-height: 220px !important;
    padding: 18px !important;
    overflow: hidden !important;
}

.aurora-brands .aurora-brand-logo {
    width: 100% !important;
    height: 180px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aurora-brands .aurora-brand-logo img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
}


/* PEDIBUS */

.aurora-brands img[alt="Pedibus logó"] {
    width: 82% !important;
}


/* CORBBY */

.aurora-brands img[alt="Corbby logó"] {
    width: 78% !important;
}


/* SANUSMED
   A fájlban sok az üres fehér terület,
   ezért erősebben kell nagyítani.
*/

.aurora-brands img[alt="Sanusmed logó"] {
    width: 118% !important;
}


/* TARRAGO
   A négyzetes képfájl miatt külön nagyítás szükséges.
*/

.aurora-brands img[alt="Tarrago logó"] {
    width: 125% !important;
}


/* BRISTON */

.aurora-brands img[alt="Briston logó"] {
    width: 72% !important;
}


/* MOBIL */

@media (max-width: 560px) {

    .aurora-brands .aurora-brand-card {
        min-height: 190px !important;
    }

    .aurora-brands .aurora-brand-logo {
        height: 150px !important;
    }

}

/* ==========================================================
   AURORA MÁRKÁK – VÉGSŐ OPTIKAI LOGÓKORREKCIÓ
========================================================== */

/* FELSŐ – TALPBETÉT MÁRKÁK */

.aurora-brand-group:not(.aurora-brand-group-care)
img[alt="Pedibus logó"] {
    width: 96% !important;
}

.aurora-brand-group:not(.aurora-brand-group-care)
img[alt="Corbby logó"] {
    width: 90% !important;
}

.aurora-brand-group:not(.aurora-brand-group-care)
img[alt="Sanusmed logó"] {
    width: 145% !important;
}

.aurora-brand-group:not(.aurora-brand-group-care)
img[alt="Tarrago logó"] {
    width: 122% !important;
}


/* ALSÓ – CIPŐÁPOLÁSI MÁRKÁK */

.aurora-brand-group-care
img[alt="Briston logó"] {
    width: 76% !important;
}

.aurora-brand-group-care
img[alt="Tarrago logó"] {
    width: 76% !important;
}

/* ALSÓ TARRAGO – VÉGSŐ MÉRETKORREKCIÓ */

.aurora-brand-group-care img[alt="Tarrago logó"] {
    width: 62% !important;
    max-width: 360px !important;
}

/* ==========================================================
   AURORA – BEMUTATKOZÁS / MINDEN LÉPÉS SZÁMÍT v1.0
   ShopRenter-kompatibilis változat
========================================================== */

.aurora-about {
    position: relative;
    max-width: 1500px;
    margin: 70px auto 90px;
    padding: 0 0 48px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 94% 7%,
            rgba(142, 177, 112, 0.12),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #FCFDFB 0%,
            #F8FBF6 100%
        );

    border: 1px solid rgba(94, 142, 62, 0.11);
    border-radius: 38px;
    box-shadow: 0 24px 70px rgba(50, 78, 38, 0.08);
}

.aurora-about *,
.aurora-about *::before,
.aurora-about *::after {
    box-sizing: border-box;
}


/* ---------- HÁTTÉRDEKORÁCIÓ ---------- */

.aurora-about-decoration {
    position: absolute;
    top: -260px;
    right: -190px;

    width: 640px;
    height: 640px;

    border: 1px solid rgba(94, 142, 62, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.aurora-about-decoration::before,
.aurora-about-decoration::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(94, 142, 62, 0.08);
    border-radius: 50%;
}

.aurora-about-decoration::before {
    top: 76px;
    right: 76px;
    bottom: 76px;
    left: 76px;
}

.aurora-about-decoration::after {
    top: 155px;
    right: 155px;
    bottom: 155px;
    left: 155px;
}


/* ---------- FELSŐ KÉTOSZLOPOS RÉSZ ---------- */

.aurora-about-main {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;

    min-height: 520px;
}


/* ---------- KÉP ---------- */

.aurora-about-image {
    min-width: 0;
    min-height: 520px;
    overflow: hidden;

    border-radius: 37px 0 0 0;
}

.aurora-about-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 520px;

    object-fit: cover;
    object-position: center;
}


/* ---------- SZÖVEGES RÉSZ ---------- */

.aurora-about-content {
    position: relative;
    z-index: 2;

    padding: 66px 64px 58px;
}

.aurora-about-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 26px;

    color: #5E8E3E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.65px;
    line-height: 1;
}

.aurora-about-label-dot {
    display: inline-block;

    width: 9px;
    height: 9px;
    margin-right: 11px;

    background: #7EAD5B;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(94, 142, 62, 0.10);
}

.aurora-about-content h2 {
    margin: 0;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.12;
}

.aurora-about-line {
    width: 76px;
    height: 4px;
    margin: 28px 0 35px;

    background: #76A653;
    border-radius: 10px;
}

.aurora-about-copy {
    max-width: 680px;
}

.aurora-about-copy p {
    margin: 0 0 23px;

    color: #4F4F4F;
    font-size: 18px;
    line-height: 1.68;
}

.aurora-about-copy p:last-child {
    margin-bottom: 0;
}


/* ---------- ÉRTÉKKÁRTYÁK ---------- */

.aurora-about-values {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    padding: 48px 54px 0;
}

.aurora-about-value {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;

    min-width: 0;
    padding: 28px;

    background: rgba(255, 255, 255, 0.91);
    border: 1px solid rgba(94, 142, 62, 0.13);
    border-radius: 24px;

    box-shadow: 0 12px 34px rgba(39, 63, 29, 0.06);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}

.aurora-about-value:hover {
    transform: translateY(-5px);

    border-color: rgba(94, 142, 62, 0.27);
    box-shadow: 0 20px 44px rgba(55, 89, 40, 0.13);
}

.aurora-about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    color: #5E8E3E;

    background:
        linear-gradient(
            145deg,
            #F3F8EF 0%,
            #EAF4E3 100%
        );

    border: 1px solid rgba(94, 142, 62, 0.13);
    border-radius: 24px;
}

.aurora-about-value-icon svg {
    width: 42px;
    height: 42px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aurora-about-value h3 {
    margin: 0 0 8px;

    color: #222222;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
}

.aurora-about-value p {
    margin: 0;

    color: #666666;
    font-size: 15px;
    line-height: 1.58;
}


/* ---------- IDÉZET ---------- */

.aurora-about-quote {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;

    margin: 42px 54px 0;
    padding: 25px 38px;

    background:
        linear-gradient(
            120deg,
            rgba(239, 247, 234, 0.96),
            rgba(248, 251, 246, 0.98)
        );

    border: 1px solid rgba(94, 142, 62, 0.14);
    border-radius: 23px;
}

.aurora-about-quote p {
    margin: 0;

    color: #5D7F45;
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
    text-align: center;
}

.aurora-about-quote strong {
    display: block;

    color: #4D7434;
    font-weight: 700;
}

.aurora-about-quote-mark {
    color: #82AE61;
    font-family: Georgia, serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}


/* ---------- LAPTOP ---------- */

@media (max-width: 1200px) {

    .aurora-about-main {
        grid-template-columns: 45% 55%;
    }

    .aurora-about-content {
        padding: 55px 45px 48px;
    }

    .aurora-about-content h2 {
        font-size: 44px;
    }

    .aurora-about-copy p {
        font-size: 17px;
    }

    .aurora-about-values {
        padding-right: 38px;
        padding-left: 38px;
    }

    .aurora-about-value {
        grid-template-columns: 68px minmax(0, 1fr);
        padding: 24px;
    }

    .aurora-about-value-icon {
        width: 68px;
        height: 68px;
    }

}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .aurora-about-main {
        grid-template-columns: 1fr;
    }

    .aurora-about-image {
        min-height: 420px;
        border-radius: 37px 37px 0 0;
    }

    .aurora-about-image img {
        min-height: 420px;
    }

    .aurora-about-content {
        padding: 50px 38px 44px;
    }

    .aurora-about-values {
        grid-template-columns: 1fr;
    }

}


/* ---------- MOBIL ---------- */

@media (max-width: 560px) {

    .aurora-about {
        margin: 30px auto 50px;
        padding-bottom: 18px;
        border-radius: 24px;
    }

    .aurora-about-image {
        min-height: 290px;
        border-radius: 23px 23px 0 0;
    }

    .aurora-about-image img {
        min-height: 290px;
    }

    .aurora-about-content {
        padding: 38px 22px 34px;
    }

    .aurora-about-label {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .aurora-about-content h2 {
        font-size: 34px;
        letter-spacing: -0.6px;
    }

    .aurora-about-line {
        margin: 22px 0 28px;
    }

    .aurora-about-copy p {
        margin-bottom: 19px;

        font-size: 15px;
        line-height: 1.62;
    }

    .aurora-about-values {
        gap: 16px;
        padding: 30px 15px 0;
    }

    .aurora-about-value {
        display: block;
        padding: 24px 22px;
    }

    .aurora-about-value-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 20px;
        border-radius: 21px;
    }

    .aurora-about-value-icon svg {
        width: 36px;
        height: 36px;
    }

    .aurora-about-value h3 {
        font-size: 19px;
    }

    .aurora-about-quote {
        grid-template-columns: 1fr;
        row-gap: 8px;

        margin: 25px 15px 0;
        padding: 23px 18px;
    }

    .aurora-about-quote p {
        font-size: 16px;
    }

    .aurora-about-quote-mark {
        font-size: 38px;
        text-align: center;
    }

}

/* ==========================================================
   AURORA BEMUTATKOZÁS – KOMPAKT MÉRETKORREKCIÓ
========================================================== */

.aurora-about {
    max-width: 1320px !important;
    margin: 55px auto 70px !important;
    padding-bottom: 30px !important;
    border-radius: 30px !important;
}

.aurora-about-main {
    grid-template-columns: 47% 53% !important;
    min-height: 410px !important;
}

.aurora-about-image {
    min-height: 410px !important;
    border-radius: 29px 0 0 0 !important;
}

.aurora-about-image img {
    min-height: 410px !important;
}

.aurora-about-content {
    padding: 42px 42px 34px !important;
}

.aurora-about-label {
    margin-bottom: 18px !important;
}

.aurora-about-content h2 {
    font-size: 42px !important;
    line-height: 1.08 !important;
}

.aurora-about-line {
    width: 62px !important;
    height: 3px !important;
    margin: 20px 0 24px !important;
}

.aurora-about-copy p {
    margin-bottom: 15px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}


/* ---------- ALSÓ KÁRTYÁK ---------- */

.aurora-about-values {
    gap: 16px !important;
    padding: 28px 34px 0 !important;
}

.aurora-about-value {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    padding: 18px !important;
    border-radius: 18px !important;
}

.aurora-about-value-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
}

.aurora-about-value-icon svg {
    width: 29px !important;
    height: 29px !important;
}

.aurora-about-value h3 {
    margin-bottom: 5px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
}

.aurora-about-value p {
    font-size: 12px !important;
    line-height: 1.45 !important;
}


/* ---------- IDÉZET ---------- */

.aurora-about-quote {
    column-gap: 18px !important;
    margin: 24px 34px 0 !important;
    padding: 14px 24px !important;
    border-radius: 17px !important;
}

.aurora-about-quote p {
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.aurora-about-quote-mark {
    font-size: 34px !important;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .aurora-about-main {
        grid-template-columns: 1fr !important;
    }

    .aurora-about-image,
    .aurora-about-image img {
        min-height: 340px !important;
    }

    .aurora-about-image {
        border-radius: 29px 29px 0 0 !important;
    }

}


/* ---------- MOBIL ---------- */

@media (max-width: 560px) {

    .aurora-about {
        margin: 30px auto 45px !important;
        border-radius: 23px !important;
    }

    .aurora-about-image,
    .aurora-about-image img {
        min-height: 250px !important;
    }

    .aurora-about-content {
        padding: 30px 20px 26px !important;
    }

    .aurora-about-content h2 {
        font-size: 31px !important;
    }

    .aurora-about-values {
        padding: 22px 14px 0 !important;
    }

    .aurora-about-value {
        display: grid !important;
        grid-template-columns: 54px 1fr !important;
    }

    .aurora-about-value-icon {
        margin-bottom: 0 !important;
    }

    .aurora-about-quote {
        margin: 20px 14px 0 !important;
    }

}

/* =========================================================
   FEJLÉC KIEMELT SÁV
   gyogytalpbetet.hu
   ========================================================= */

/* A sáv középre igazítása */
.header-marketing-section-row{
    justify-content:center !important;
}

.header-marketing-section-col{
    flex:0 0 100% !important;
    max-width:100% !important;
    justify-content:center !important;
}

/* Eltünteti a bal oldali elválasztó vonalat */
.header-marketing-section-row::before,
.header-marketing-section-col::before,
.home-container::before{
    display:none !important;
}

/* A teljes kattintható terület */
.header-marketing-box{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:56px;
    padding:0 15px;
}

/* A link */
.header-marketing-box a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:600;
    line-height:1.2;

    color:#2F5E2E !important;
    text-decoration:none !important;

    transition:all .25s ease;
}

/* Hover */
.header-marketing-box a:hover{
    color:#0F2D52 !important;
    transform:scale(1.03);
}

/* Mobil */
@media(max-width:767px){

    .header-marketing-box{
        min-height:48px;
        padding:0 12px;
    }

    .header-marketing-box a{
        font-size:16px;
    }

}

/* Fejléc kiemelt sáv címe */
.header-marketing-title{
    font-size:18px !important;
    line-height:1.2 !important;
    font-weight:600 !important;
}

/* =========================================================
   TUDÁSTÁR – LETISZTULT, PRÉMIUM TUDÁSKÖZPONT
   ========================================================= */

.aurora-knowledge{
    max-width:1280px;
    margin:0 auto;
    padding:70px 28px 90px;
    color:#202020;
    font-family:Montserrat, Arial, sans-serif;
}

/* Fejléc */

.aurora-knowledge-header{
    max-width:760px;
    margin:0 0 72px;
}

.aurora-knowledge-label{
    display:inline-block;
    margin-bottom:18px;
    color:#4f7f2d;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.aurora-knowledge-header h1{
    margin:0 0 22px;
    color:#202020;
    font-size:58px;
    font-weight:600;
    line-height:1.08;
    letter-spacing:-1.5px;
}

.aurora-knowledge-header p{
    max-width:680px;
    margin:0;
    color:#555;
    font-size:20px;
    line-height:1.75;
}

/* Felső három témakör */

.aurora-knowledge-nav{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    border-top:1px solid #dedede;
    border-bottom:1px solid #dedede;
    margin-bottom:92px;
}

.aurora-knowledge-nav-item{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:250px;
    padding:34px 34px 30px;
    color:#202020 !important;
    text-decoration:none !important;
    border-right:1px solid #e2e2e2;
    transition:background-color .25s ease;
}

.aurora-knowledge-nav-item:last-child{
    border-right:none;
}

.aurora-knowledge-nav-item:hover{
    background:#f7faf5;
}

.aurora-knowledge-number{
    margin-bottom:42px;
    color:#5b9b27;
    font-size:18px;
    font-weight:600;
}

.aurora-knowledge-nav-content{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.aurora-knowledge-nav-content strong{
    font-size:24px;
    font-weight:600;
    line-height:1.3;
}

.aurora-knowledge-nav-content small{
    color:#666;
    font-size:15px;
    line-height:1.65;
}

.aurora-knowledge-arrow{
    position:absolute;
    right:28px;
    bottom:26px;
    color:#5b9b27;
    font-size:24px;
    transition:transform .2s ease;
}

.aurora-knowledge-nav-item:hover .aurora-knowledge-arrow{
    transform:translateX(5px);
}

/* Tartalmi oszlopok */

.aurora-knowledge-content{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    margin-bottom:90px;
}

.aurora-knowledge-section{
    padding:0 34px;
    border-right:1px solid #e2e2e2;
    scroll-margin-top:120px;
}

.aurora-knowledge-section:first-child{
    padding-left:0;
}

.aurora-knowledge-section:last-child{
    padding-right:0;
    border-right:none;
}

.aurora-knowledge-section-heading{
    display:flex;
    flex-direction:column;
    gap:20px;
    min-height:158px;
    margin-bottom:30px;
}

.aurora-knowledge-section-heading > span{
    color:#5b9b27;
    font-size:18px;
    font-weight:600;
}

.aurora-knowledge-section-heading h2{
    margin:0 0 10px;
    color:#202020;
    font-size:26px;
    font-weight:600;
    line-height:1.3;
}

.aurora-knowledge-section-heading p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.65;
}

.aurora-knowledge-list{
    margin:0;
    padding:0;
    list-style:none;
    border-top:1px solid #e2e2e2;
}

.aurora-knowledge-list li{
    position:relative;
    padding:15px 28px 15px 0;
    border-bottom:1px solid #ececec;
    color:#333;
    font-size:15px;
    line-height:1.55;
}

.aurora-knowledge-list li::after{
    content:"›";
    position:absolute;
    top:50%;
    right:2px;
    transform:translateY(-50%);
    color:#888;
    font-size:21px;
}

.aurora-knowledge-coming{
    margin:24px 0 0;
    color:#5b9b27;
    font-size:14px;
    font-weight:600;
    line-height:1.6;
}

/* Hiteles információk */

.aurora-knowledge-source{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:56px;
    padding:46px 0;
    border-top:1px solid #dedede;
    border-bottom:1px solid #dedede;
}

.aurora-knowledge-source h2{
    margin:0;
    color:#202020;
    font-size:25px;
    font-weight:600;
    line-height:1.35;
}

.aurora-knowledge-source p{
    margin:0 0 16px;
    color:#5c5c5c;
    font-size:15px;
    line-height:1.75;
}

.aurora-knowledge-source p:last-child{
    margin-bottom:0;
}

/* Tablet */

@media(max-width:1024px){

    .aurora-knowledge{
        padding:55px 24px 75px;
    }

    .aurora-knowledge-header h1{
        font-size:46px;
    }

    .aurora-knowledge-nav{
        grid-template-columns:1fr;
    }

    .aurora-knowledge-nav-item{
        min-height:auto;
        border-right:none;
        border-bottom:1px solid #e2e2e2;
    }

    .aurora-knowledge-nav-item:last-child{
        border-bottom:none;
    }

    .aurora-knowledge-content{
        grid-template-columns:1fr;
        gap:58px;
    }

    .aurora-knowledge-section,
    .aurora-knowledge-section:first-child,
    .aurora-knowledge-section:last-child{
        padding:0;
        border-right:none;
    }

    .aurora-knowledge-section-heading{
        min-height:auto;
    }

    .aurora-knowledge-source{
        grid-template-columns:1fr;
        gap:22px;
    }
}

/* Mobil */

@media(max-width:767px){

    .aurora-knowledge{
        padding:40px 18px 60px;
    }

    .aurora-knowledge-header{
        margin-bottom:48px;
    }

    .aurora-knowledge-label{
        font-size:11px;
        letter-spacing:1.5px;
    }

    .aurora-knowledge-header h1{
        font-size:38px;
        letter-spacing:-.5px;
    }

    .aurora-knowledge-header p{
        font-size:17px;
        line-height:1.65;
    }

    .aurora-knowledge-nav{
        margin-bottom:62px;
    }

    .aurora-knowledge-nav-item{
        padding:26px 22px 58px;
    }

    .aurora-knowledge-number{
        margin-bottom:22px;
    }

    .aurora-knowledge-nav-content strong{
        font-size:21px;
    }

    .aurora-knowledge-section-heading h2{
        font-size:23px;
    }

    .aurora-knowledge-list li{
        font-size:14px;
    }

    .aurora-knowledge-source{
        padding:34px 0;
    }
}

/* =========================================================
   KEZDJE ITT A KERESÉST – KIEMELT FEJLÉC CTA
   FEHÉREBB HÁTTÉRREL ÉS KÉT BEFELÉ MOZGÓ NYÍLLAL
   ========================================================= */

.header-marketing-box{
    position:relative;
    width:100%;
    min-height:118px;
    padding:24px 230px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    text-align:center;
    cursor:pointer;

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(79,127,45,.055),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 50%,
            rgba(79,127,45,.055),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(79,127,45,.035) 0%,
            #ffffff 20%,
            #ffffff 80%,
            rgba(79,127,45,.035) 100%
        );

    border-top:1px solid rgba(79,127,45,.12);
    border-bottom:1px solid rgba(79,127,45,.16);

    box-shadow:
        0 10px 30px rgba(42,82,34,.055);

    transition:
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

/* Szöveg */
.header-marketing-box,
.header-marketing-box a{
    color:#245d2a !important;
    font-family:Montserrat, Arial, sans-serif;
    font-size:30px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:1px;
    text-transform:uppercase;
    text-decoration:none !important;
}

/* Bal oldali, befelé mozgó nyíl */
.header-marketing-box::before{
    content:"→";

    position:absolute;
    left:calc(50% - 365px);
    top:50%;

    transform:translate(0,-50%);

    color:#4f7f2d;
    font-size:36px;
    font-weight:700;
    line-height:1;
    opacity:.95;

    animation:
        aurora-arrow-left 1.8s ease-in-out infinite;

    pointer-events:none;
}

/* Jobb oldali, befelé mozgó nyíl */
.header-marketing-box::after{
    content:"←";

    position:absolute;
    right:calc(50% - 365px);
    top:50%;

    transform:translate(0,-50%);

    color:#4f7f2d;
    font-size:36px;
    font-weight:700;
    line-height:1;
    opacity:.95;

    animation:
        aurora-arrow-right 1.8s ease-in-out infinite;

    pointer-events:none;
}

/* Hover */
.header-marketing-box:hover{
    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(79,127,45,.085),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 50%,
            rgba(79,127,45,.085),
            transparent 31%
        ),
        linear-gradient(
            90deg,
            rgba(79,127,45,.055) 0%,
            #ffffff 20%,
            #ffffff 80%,
            rgba(79,127,45,.055) 100%
        );

    box-shadow:
        0 14px 36px rgba(42,82,34,.09);
}

/* Bal nyíl mozgása a középpont felé */
@keyframes aurora-arrow-left{
    0%,
    100%{
        transform:translate(0,-50%);
    }

    50%{
        transform:translate(12px,-50%);
    }
}

/* Jobb nyíl mozgása a középpont felé */
@keyframes aurora-arrow-right{
    0%,
    100%{
        transform:translate(0,-50%);
    }

    50%{
        transform:translate(-12px,-50%);
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:991px){

    .header-marketing-box{
        min-height:102px;
        padding:22px 160px;
    }

    .header-marketing-box,
    .header-marketing-box a{
        font-size:24px;
        letter-spacing:.7px;
    }

    .header-marketing-box::before{
        left:calc(50% - 285px);
        font-size:32px;
    }

    .header-marketing-box::after{
        right:calc(50% - 285px);
        font-size:32px;
    }
}

/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width:576px){

    .header-marketing-box{
        min-height:88px;
        padding:18px 48px;
    }

    .header-marketing-box,
    .header-marketing-box a{
        font-size:18px;
        line-height:1.25;
        letter-spacing:.35px;
    }

    .header-marketing-box::before{
        left:14px;
        font-size:25px;
    }

    .header-marketing-box::after{
        right:14px;
        font-size:25px;
    }
}

/* =========================================================
   CSÖKKENTETT ANIMÁCIÓ
   ========================================================= */

@media (prefers-reduced-motion:reduce){

    .header-marketing-box::before,
    .header-marketing-box::after{
        animation:none;
    }
}

/* =========================================================
   CTA – VÉGSŐ FINOMHANGOLÁS
   ========================================================= */

.header-marketing-box{
    min-height:104px;
    padding-top:20px;
    padding-bottom:20px;
}

/* A felirat mögötti halvány háttér eltávolítása */
.header-marketing-box a,
.header-marketing-box span,
.header-marketing-box strong{
    background:transparent !important;
    box-shadow:none !important;
}

/* Nyilak még közelebb a felirathoz */
.header-marketing-box::before{
    left:calc(50% - 300px);
}

.header-marketing-box::after{
    right:calc(50% - 300px);
}

/* Tablet */
@media (max-width:991px){
    .header-marketing-box{
        min-height:94px;
    }

    .header-marketing-box::before{
        left:calc(50% - 245px);
    }

    .header-marketing-box::after{
        right:calc(50% - 245px);
    }
}

/* Mobil */
@media (max-width:576px){
    .header-marketing-box{
        min-height:82px;
        padding-top:16px;
        padding-bottom:16px;
    }

    .header-marketing-box::before{
        left:12px;
    }

    .header-marketing-box::after{
        right:12px;
    }
}

/* =========================================================
   TUDÁSTÁR – AKTÍV, KATTINTHATÓ ÚTMUTATÓ
   ========================================================= */

.aurora-knowledge-list-active{
    padding:0 !important;
}

.aurora-knowledge-list-active a{
    width:100%;
    min-height:52px;
    padding:14px 16px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    color:#202020;
    text-decoration:none !important;

    border-radius:10px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.aurora-knowledge-list-active a:hover{
    color:#4f7f2d;
    background:rgba(79,127,45,.07);
    transform:translateX(3px);
}

.aurora-knowledge-list-arrow{
    flex:0 0 auto;

    color:#4f7f2d;
    font-size:20px;
    font-weight:700;

    transition:transform .2s ease;
}

.aurora-knowledge-list-active a:hover
.aurora-knowledge-list-arrow{
    transform:translateX(4px);
}

/* Mérettáblázat kép */

.aurora-knowledge-size-image{
    max-width:900px;
    margin:40px auto;
    text-align:center;
}

.aurora-knowledge-size-image img{
    width:100%;
    max-width:900px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.aurora-knowledge-size-caption{
    margin-top:14px;
    font-size:14px;
    color:#777;
    line-height:1.5;
}

/* Aurora Medical Series képek */

.aurora-article-image{
    max-width:980px;
    margin:48px auto 56px;
    text-align:center;
}

.aurora-article-image img{
    display:block;
    width:100%;
    max-width:980px;
    height:auto;
    margin:0 auto;
    border-radius:22px;
    box-shadow:0 18px 50px rgba(0,0,0,.10);
}

.aurora-article-image figcaption{
    margin-top:18px;
    color:#7b7b7b;
    font-size:14px;
    line-height:1.5;
}

/* =========================================================
   AURORA KAPCSOLAT OLDAL
   ========================================================= */

.aurora-contact {
    max-width: 1280px;
    margin: 0 auto;
    padding: 35px 28px 90px;
    color: #202020;
    font-family: Montserrat, Arial, sans-serif;
}

.aurora-contact *,
.aurora-contact *::before,
.aurora-contact *::after {
    box-sizing: border-box;
}

.aurora-contact a {
    text-decoration: none;
}

.aurora-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 70px 76px;
    background:
        radial-gradient(circle at 92% 12%, rgba(79,127,45,.12), transparent 34%),
        linear-gradient(135deg, #f7faf4 0%, #ffffff 65%);
    border: 1px solid #dfe7da;
    border-radius: 30px;
}

.aurora-contact-hero::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -105px;
    width: 270px;
    height: 270px;
    border: 42px solid rgba(79,127,45,.06);
    border-radius: 50%;
}

.aurora-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.aurora-contact-brand {
    margin-bottom: 38px;
}

.aurora-contact-logo-placeholder {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.aurora-contact-logo-main {
    color: #202020;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.aurora-contact-logo-slogan {
    color: #4f7f2d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.aurora-contact-eyebrow,
.aurora-contact-section-label,
.aurora-contact-card-label {
    display: inline-block;
    color: #4f7f2d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.aurora-contact-hero h1 {
    max-width: 760px;
    margin: 16px 0 22px;
    color: #202020;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.aurora-contact-lead {
    max-width: 760px;
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.75;
}

.aurora-contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.aurora-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.aurora-contact-button:hover {
    transform: translateY(-2px);
}

.aurora-contact-button-primary {
    color: #fff;
    background: #4f7f2d;
    box-shadow: 0 10px 28px rgba(79,127,45,.19);
}

.aurora-contact-button-primary:hover {
    color: #fff;
    background: #426c26;
}

.aurora-contact-button-secondary {
    color: #202020;
    background: #fff;
    border: 1px solid #d8ded4;
}

.aurora-contact-button-secondary:hover {
    color: #4f7f2d;
    border-color: #4f7f2d;
}

.aurora-contact-section {
    padding: 82px 0;
}

.aurora-contact-section + .aurora-contact-section {
    border-top: 1px solid #ececec;
}

.aurora-contact-section-soft {
    margin: 0 -28px;
    padding-right: 28px;
    padding-left: 28px;
    background: #f8f9f7;
    border-top: 0;
}

.aurora-contact-section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.aurora-contact-section h2,
.aurora-contact-owner h2,
.aurora-contact-final h2 {
    margin: 14px 0 20px;
    color: #202020;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.8px;
}

.aurora-contact-section-heading p,
.aurora-contact-help-content p {
    margin: 0 0 16px;
    color: #5c5c5c;
    font-size: 17px;
    line-height: 1.75;
}

.aurora-contact-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.aurora-contact-benefit {
    padding: 30px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 18px;
}

.aurora-contact-benefit-number {
    display: block;
    margin-bottom: 26px;
    color: #f97316;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.aurora-contact-benefit h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
}

.aurora-contact-benefit p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.aurora-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.aurora-contact-card {
    display: flex;
    flex-direction: column;
    min-height: 310px;
    padding: 36px;
    color: #202020;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 22px;
    box-shadow: 0 12px 38px rgba(0,0,0,.045);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.aurora-contact-card:hover {
    color: #202020;
    transform: translateY(-5px);
    border-color: #a8bd99;
    box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

.aurora-contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    color: #4f7f2d;
    background: #edf4e8;
    border-radius: 50%;
    font-size: 24px;
}

.aurora-contact-card strong {
    display: block;
    margin: 12px 0 14px;
    color: #202020;
    font-size: clamp(19px, 2.5vw, 26px);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.aurora-contact-card p {
    margin: 0 0 22px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.aurora-contact-card-link {
    margin-top: auto;
    color: #4f7f2d;
    font-size: 14px;
    font-weight: 800;
}

.aurora-contact-help-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.aurora-contact-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aurora-contact-checklist li {
    position: relative;
    padding: 17px 18px 17px 48px;
    color: #333;
    background: #f8f9f7;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.aurora-contact-checklist li::before {
    content: "✓";
    position: absolute;
    top: 16px;
    left: 18px;
    color: #4f7f2d;
    font-weight: 900;
}

.aurora-contact-owner {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 44px;
    align-items: center;
    margin: 10px 0;
    padding: 52px;
    color: #fff;
    background: #202020;
    border-radius: 26px;
}

.aurora-contact-owner .aurora-contact-section-label {
    color: #a9ce8d;
}

.aurora-contact-owner h2 {
    margin-bottom: 8px;
    color: #fff;
}

.aurora-contact-owner-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    color: #fff;
    background: #4f7f2d;
    border: 8px solid rgba(255,255,255,.09);
    border-radius: 50%;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
}

.aurora-contact-owner-role {
    margin: 0 0 24px;
    color: #a9ce8d;
    font-size: 15px;
    font-weight: 700;
}

.aurora-contact-owner-content > p:not(.aurora-contact-owner-role) {
    max-width: 750px;
    margin: 0 0 13px;
    color: #dedede;
    font-size: 16px;
    line-height: 1.75;
}

.aurora-contact-company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;
}

.aurora-contact-company-grid > div {
    padding: 28px;
}

.aurora-contact-company-grid > div + div {
    border-left: 1px solid #e2e2e2;
}

.aurora-contact-company-grid span {
    display: block;
    margin-bottom: 9px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aurora-contact-company-grid strong {
    color: #202020;
    font-size: 16px;
    font-weight: 700;
}

.aurora-contact-notice {
    margin-top: 20px;
    padding: 18px 21px;
    color: #5c554e;
    background: #fff8f1;
    border-left: 4px solid #f97316;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.65;
}

.aurora-contact-final {
    padding: 72px 40px;
    text-align: center;
    background: #f2f6ef;
    border: 1px solid #dfe8d9;
    border-radius: 26px;
}

.aurora-contact-final p {
    max-width: 670px;
    margin: 0 auto;
    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.7;
}

.aurora-contact-final .aurora-contact-hero-actions {
    justify-content: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .aurora-contact-hero {
        padding: 54px 42px 60px;
    }

    .aurora-contact-benefits {
        grid-template-columns: 1fr;
    }

    .aurora-contact-help-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .aurora-contact-owner {
        grid-template-columns: 110px 1fr;
        padding: 40px;
    }

    .aurora-contact-owner-mark {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 680px) {

    .aurora-contact {
        padding: 18px 16px 60px;
    }

    .aurora-contact-hero {
        padding: 38px 24px 42px;
        border-radius: 20px;
    }

    .aurora-contact-hero h1 {
        letter-spacing: -1px;
    }

    .aurora-contact-lead {
        font-size: 16px;
    }

    .aurora-contact-hero-actions {
        flex-direction: column;
    }

    .aurora-contact-button {
        width: 100%;
    }

    .aurora-contact-section {
        padding: 58px 0;
    }

    .aurora-contact-section-soft {
        margin: 0 -16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .aurora-contact-cards {
        grid-template-columns: 1fr;
    }

    .aurora-contact-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .aurora-contact-checklist {
        grid-template-columns: 1fr;
    }

    .aurora-contact-owner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: left;
        border-radius: 20px;
    }

    .aurora-contact-owner-mark {
        width: 82px;
        height: 82px;
        font-size: 25px;
    }

    .aurora-contact-company-grid {
        grid-template-columns: 1fr;
    }

    .aurora-contact-company-grid > div + div {
        border-top: 1px solid #e2e2e2;
        border-left: 0;
    }

    .aurora-contact-final {
        padding: 50px 24px;
        border-radius: 20px;
    }
	
	.aurora-contact-owner-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    padding: 8px;
    background: #ffffff;
    border: 8px solid rgba(255,255,255,.09);
    border-radius: 50%;
    overflow: hidden;
}

.aurora-contact-owner-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

	/* =========================================================
   KAPCSOLAT OLDAL – KOMPAKT FELÜLÍRÁS
   Ezt az Egyedi CSS legvégére másold
   ========================================================= */

/* Kevesebb függőleges üres tér a blokkok között */
.aurora-contact .aurora-contact-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
}

/* A világos elérhetőségi blokk is legyen tömörebb */
.aurora-contact .aurora-contact-section-soft {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
}

/* Telefonszám és e-mail kártyák */
.aurora-contact .aurora-contact-cards {
    gap: 18px !important;
}

.aurora-contact .aurora-contact-card {
    min-height: 0 !important;
    height: auto !important;
    padding: 26px 28px !important;
}

/* Kisebb ikon és kisebb térköz */
.aurora-contact .aurora-contact-card-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 18px !important;
    font-size: 20px !important;
}

/* Telefonszám és e-mail ne legyen túl nagy */
.aurora-contact .aurora-contact-card strong {
    margin-top: 9px !important;
    margin-bottom: 10px !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
}

/* A kártyák szövege legyen tömörebb */
.aurora-contact .aurora-contact-card p {
    margin-bottom: 15px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* A három felső bizalmi doboz kisebb legyen */
.aurora-contact .aurora-contact-benefits {
    gap: 16px !important;
    margin-top: 34px !important;
}

.aurora-contact .aurora-contact-benefit {
    padding: 22px !important;
}

.aurora-contact .aurora-contact-benefit-number {
    margin-bottom: 14px !important;
}

.aurora-contact .aurora-contact-benefit h3 {
    margin-bottom: 8px !important;
    font-size: 17px !important;
}

.aurora-contact .aurora-contact-benefit p {
    font-size: 13px !important;
    line-height: 1.55 !important;
}

/* A Tamás bemutatkozó blokk legyen kevésbé magas */
.aurora-contact .aurora-contact-owner {
    grid-template-columns: 94px 1fr !important;
    gap: 28px !important;
    padding: 34px 38px !important;
}

/* Logókör kisebb méretben */
.aurora-contact .aurora-contact-owner-mark {
    width: 86px !important;
    height: 86px !important;
    padding: 10px !important;
    background: #ffffff !important;
    border-width: 5px !important;
}

/* A logó ne töltse ki az egész fehér kört */
.aurora-contact .aurora-contact-owner-mark img {
    width: 62% !important;
    height: 62% !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

/* Bemutatkozó szövegek tömörebben */
.aurora-contact .aurora-contact-owner h2 {
    margin-top: 8px !important;
    margin-bottom: 5px !important;
    font-size: 31px !important;
}

.aurora-contact .aurora-contact-owner-role {
    margin-bottom: 14px !important;
}

.aurora-contact .aurora-contact-owner-content > p:not(.aurora-contact-owner-role) {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* Mobilon se legyenek túl magasak a dobozok */
}@media (max-width: 680px) {

    .aurora-contact .aurora-contact-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .aurora-contact .aurora-contact-card {
        padding: 23px 21px !important;
    }

    .aurora-contact .aurora-contact-owner {
        grid-template-columns: 72px 1fr !important;
        gap: 18px !important;
        padding: 27px 22px !important;
    }

    .aurora-contact .aurora-contact-owner-mark {
        width: 68px !important;
        height: 68px !important;
        padding: 8px !important;
    }

    .aurora-contact .aurora-contact-owner h2 {
        font-size: 25px !important;
    }
}

/* =========================================================
   KAPCSOLAT OLDAL – LOGÓ ÉS ELÉRHETŐSÉGI KÁRTYÁK JAVÍTÁSA
   ========================================================= */

/* Felső logó normális méretben */
.aurora-contact .aurora-contact-brand {
    margin-bottom: 28px !important;
}

.aurora-contact .aurora-contact-brand img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 190px !important;
    max-height: 90px !important;
    object-fit: contain !important;
}

/* A hero ne legyen képméretű */
.aurora-contact .aurora-contact-hero {
    min-height: 0 !important;
}

.aurora-contact .aurora-contact-hero-content {
    max-width: 820px !important;
}

/* Elérhetőségi kártyák helyreállítása */
.aurora-contact .aurora-contact-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.aurora-contact .aurora-contact-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 210px !important;
    padding: 26px 28px !important;
}

.aurora-contact .aurora-contact-card p {
    margin: 10px 0 16px !important;
}

.aurora-contact .aurora-contact-card-link {
    margin-top: auto !important;
}

@media (max-width: 680px) {
    .aurora-contact .aurora-contact-brand img {
        max-width: 155px !important;
        max-height: 72px !important;
    }

    .aurora-contact .aurora-contact-cards {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   KAPCSOLAT OLDAL – FELSŐ LOGÓ KÉNYSZERÍTETT MÉRETE
   ========================================================= */

.aurora-contact img[src*="/logo/logo.png"] {
    display: block !important;
    width: 150px !important;
    min-width: 0 !important;
    max-width: 150px !important;

    height: 90px !important;
    min-height: 0 !important;
    max-height: 90px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    transform: none !important;
}

/* A logót tartó rész se tudjon nagyra nyúlni */
.aurora-contact .aurora-contact-brand {
    display: block !important;
    width: 150px !important;
    height: 90px !important;
    min-height: 0 !important;
    max-height: 90px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Ha a kép a placeholder elemben maradt */
.aurora-contact .aurora-contact-logo-placeholder {
    display: block !important;
    width: 150px !important;
    height: 90px !important;
    min-height: 0 !important;
    max-height: 90px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 680px) {

    .aurora-contact img[src*="/logo/logo.png"],
    .aurora-contact .aurora-contact-brand,
    .aurora-contact .aurora-contact-logo-placeholder {
        width: 125px !important;
        max-width: 125px !important;
        height: 75px !important;
        max-height: 75px !important;
    }
}

/* =========================================================
   KAPCSOLAT OLDAL – HERO LOGÓ LETISZTULT JAVÍTÁS
   ========================================================= */

/* A teljes felső márkablokk legyen egyszerű */
.aurora-contact .aurora-contact-brand {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 0 30px !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* A régi szöveges logórész eltüntetése */
.aurora-contact .aurora-contact-logo-main,
.aurora-contact .aurora-contact-logo-slogan {
    display: none !important;
}

/* A logót tartó elem */
.aurora-contact .aurora-contact-logo-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 92px !important;
    height: 92px !important;
    max-width: 92px !important;
    max-height: 92px !important;
    margin: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;

    background: #ffffff !important;
    border: 1px solid rgba(79, 127, 45, .18) !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 28px rgba(43, 75, 30, .10) !important;
}

/* Maga a logó */
.aurora-contact .aurora-contact-logo-placeholder img,
.aurora-contact .aurora-contact-brand img[src*="/logo/logo.png"] {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
    border-radius: 50% !important;
}

/* A címke közelebb kerüljön a logóhoz */
.aurora-contact .aurora-contact-eyebrow {
    margin-top: 0 !important;
}

/* Mobil */
@media (max-width: 680px) {

    .aurora-contact .aurora-contact-logo-placeholder {
        width: 76px !important;
        height: 76px !important;
        max-width: 76px !important;
        max-height: 76px !important;
        padding: 8px !important;
    }

    .aurora-contact .aurora-contact-brand {
        margin-bottom: 24px !important;
    }
}

/* =========================================================
   AURORA GYIK – GYÓGYTALPBETÉT.HU
   ========================================================= */

.aurora-gyik-page{
    background:#ffffff;
}

.aurora-faq{
    width:100%;
    color:#202020;
    font-family:Montserrat, Arial, sans-serif;
}

.aurora-faq *,
.aurora-faq *::before,
.aurora-faq *::after{
    box-sizing:border-box;
}

.aurora-faq a{
    color:inherit;
    text-decoration:none;
}

.aurora-faq p{
    margin-top:0;
}

.aurora-faq h1,
.aurora-faq h2,
.aurora-faq h3{
    font-family:Montserrat, Arial, sans-serif;
}


/* =========================================================
   FEJLÉC / HERO
   ========================================================= */

.aurora-faq-hero{
    position:relative;
    overflow:hidden;
    padding:96px 28px 102px;
    background:
        radial-gradient(circle at 12% 20%, rgba(121,153,92,.13), transparent 34%),
        radial-gradient(circle at 88% 80%, rgba(239,244,234,.95), transparent 34%),
        linear-gradient(135deg, #f8faf6 0%, #ffffff 55%, #f1f6ed 100%);
    border-bottom:1px solid #e3e9df;
}

.aurora-faq-hero::before{
    content:"";
    position:absolute;
    top:-130px;
    right:-100px;
    width:420px;
    height:420px;
    border:1px solid rgba(79,127,45,.12);
    border-radius:50%;
}

.aurora-faq-hero::after{
    content:"?";
    position:absolute;
    right:8%;
    bottom:-95px;
    color:rgba(79,127,45,.045);
    font-size:330px;
    font-weight:700;
    line-height:1;
    pointer-events:none;
}

.aurora-faq-hero-content{
    position:relative;
    z-index:2;
    max-width:920px;
    margin:0 auto;
    text-align:center;
}

.aurora-faq-eyebrow,
.aurora-faq-section-label{
    display:inline-block;
    color:#4f7f2d;
    font-size:12px;
    font-weight:700;
    line-height:1.4;
    letter-spacing:2.2px;
    text-transform:uppercase;
}

.aurora-faq-eyebrow{
    margin-bottom:22px;
    padding:9px 16px;
    background:rgba(79,127,45,.08);
    border:1px solid rgba(79,127,45,.13);
    border-radius:999px;
}

.aurora-faq-hero h1{
    max-width:800px;
    margin:0 auto 24px;
    color:#202020;
    font-size:58px;
    font-weight:600;
    line-height:1.08;
    letter-spacing:-1.8px;
}

.aurora-faq-lead{
    max-width:760px;
    margin:0 auto;
    color:#5b6257;
    font-size:18px;
    font-weight:400;
    line-height:1.8;
}

.aurora-faq-hero-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-top:36px;
}

.aurora-faq-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:14px 24px;
    border:1px solid transparent;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    line-height:1.3;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.aurora-faq-button:hover{
    transform:translateY(-2px);
}

.aurora-faq-button-primary{
    color:#ffffff !important;
    background:#4f7f2d;
    box-shadow:0 12px 28px rgba(79,127,45,.2);
}

.aurora-faq-button-primary:hover{
    background:#416c23;
    box-shadow:0 16px 34px rgba(79,127,45,.27);
}

.aurora-faq-button-secondary{
    color:#2d3827 !important;
    background:#ffffff;
    border-color:#cfd9c8;
    box-shadow:0 8px 24px rgba(31,41,55,.06);
}

.aurora-faq-button-secondary:hover{
    border-color:#4f7f2d;
    box-shadow:0 14px 30px rgba(31,41,55,.1);
}


/* =========================================================
   BEVEZETŐ KÁRTYÁK
   ========================================================= */

.aurora-faq-intro{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
    max-width:1180px;
    margin:-44px auto 0;
    padding:0 28px;
    position:relative;
    z-index:5;
}

.aurora-faq-intro-card{
    position:relative;
    min-height:230px;
    padding:34px 36px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #dde4d8;
    border-radius:18px;
    box-shadow:0 18px 48px rgba(31,41,55,.09);
}

.aurora-faq-intro-card::after{
    content:"";
    position:absolute;
    right:-48px;
    bottom:-48px;
    width:150px;
    height:150px;
    background:rgba(79,127,45,.055);
    border-radius:50%;
}

.aurora-faq-intro-card-highlight{
    background:#253127;
    border-color:#253127;
}

.aurora-faq-intro-card h2{
    margin:12px 0 14px;
    color:#202020;
    font-size:28px;
    font-weight:600;
    line-height:1.25;
    letter-spacing:-.5px;
}

.aurora-faq-intro-card p{
    position:relative;
    z-index:2;
    margin-bottom:0;
    color:#646b61;
    font-size:15px;
    line-height:1.75;
}

.aurora-faq-intro-card-highlight h2{
    color:#ffffff;
}

.aurora-faq-intro-card-highlight p{
    color:#d5ddd2;
}

.aurora-faq-intro-card-highlight .aurora-faq-section-label{
    color:#a8ca8d;
}


/* =========================================================
   ÁLTALÁNOS SZEKCIÓK
   ========================================================= */

.aurora-faq-section{
    max-width:1180px;
    margin:0 auto;
    padding:92px 28px;
}

.aurora-faq-section-soft{
    max-width:1180px;
    margin:0 auto;
    padding:92px 28px;
    background:#f7f9f5;
    border-top:1px solid #e8ece5;
    border-bottom:1px solid #e8ece5;
}

.aurora-faq-section-heading{
    display:grid;
    grid-template-columns:80px minmax(0, 1fr);
    gap:28px;
    align-items:start;
    margin-bottom:38px;
}

.aurora-faq-section-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:66px;
    height:66px;
    color:#4f7f2d;
    background:#eef4e9;
    border:1px solid #d7e2cf;
    border-radius:50%;
    font-size:17px;
    font-weight:700;
    letter-spacing:1px;
}

.aurora-faq-section-heading h2{
    max-width:760px;
    margin:10px 0 0;
    color:#202020;
    font-size:38px;
    font-weight:600;
    line-height:1.18;
    letter-spacing:-1px;
}


/* =========================================================
   LENYÍLÓ GYIK ELEMEK
   ========================================================= */

.aurora-faq-list{
    display:grid;
    gap:14px;
    margin-left:108px;
}

.aurora-faq-item{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #dfe5dc;
    border-radius:12px;
    box-shadow:0 7px 22px rgba(31,41,55,.04);
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.aurora-faq-item:hover{
    border-color:#bacbb0;
    box-shadow:0 12px 30px rgba(31,41,55,.075);
    transform:translateY(-1px);
}

.aurora-faq-item[open]{
    border-color:#a8bd9c;
    box-shadow:0 16px 38px rgba(52,78,40,.1);
}

.aurora-faq-item[open]::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    width:4px;
    background:#4f7f2d;
}

.aurora-faq-item summary{
    position:relative;
    display:flex;
    align-items:center;
    min-height:72px;
    padding:20px 72px 20px 26px;
    color:#202020;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    cursor:pointer;
    list-style:none;
    outline:none;
    user-select:none;
}

.aurora-faq-item summary::-webkit-details-marker{
    display:none;
}

.aurora-faq-item summary::before,
.aurora-faq-item summary::after{
    content:"";
    position:absolute;
    top:50%;
    right:27px;
    width:16px;
    height:2px;
    background:#4f7f2d;
    border-radius:99px;
    transform:translateY(-50%);
    transition:transform .22s ease;
}

.aurora-faq-item summary::after{
    transform:translateY(-50%) rotate(90deg);
}

.aurora-faq-item[open] summary::after{
    transform:translateY(-50%) rotate(0deg);
}

.aurora-faq-item[open] summary{
    color:#3f6728;
    background:#fbfcfa;
}

.aurora-faq-answer{
    padding:0 72px 26px 26px;
    color:#596057;
    font-size:15px;
    line-height:1.78;
    animation:auroraFaqOpen .25s ease;
}

.aurora-faq-answer p{
    margin-bottom:13px;
}

.aurora-faq-answer p:last-child{
    margin-bottom:0;
}

.aurora-faq-answer a{
    color:#4f7f2d;
    font-weight:600;
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:3px;
}

@keyframes auroraFaqOpen{
    from{
        opacity:0;
        transform:translateY(-5px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* =========================================================
   EGÉSZSÉGÜGYI TÁJÉKOZTATÓ
   ========================================================= */

.aurora-faq-health-notice{
    position:relative;
    margin:32px 0 0 108px;
    padding:24px 28px 24px 62px;
    color:#655b49;
    background:#fffaf1;
    border:1px solid #eadfc9;
    border-radius:12px;
}

.aurora-faq-health-notice::before{
    content:"!";
    position:absolute;
    top:24px;
    left:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    color:#8d6a2e;
    background:#f2e4c8;
    border-radius:50%;
    font-size:14px;
    font-weight:700;
}

.aurora-faq-health-notice strong{
    display:block;
    margin-bottom:7px;
    color:#6e552e;
    font-size:14px;
}

.aurora-faq-health-notice p{
    margin-bottom:0;
    font-size:14px;
    line-height:1.72;
}


/* =========================================================
   ZÁRÓ BLOKK
   ========================================================= */

.aurora-faq-final{
    padding:96px 28px;
    background:
        radial-gradient(circle at 85% 20%, rgba(151,187,122,.15), transparent 30%),
        #243027;
}

.aurora-faq-final-content{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.aurora-faq-final .aurora-faq-section-label{
    color:#a8ca8d;
}

.aurora-faq-final h2{
    margin:16px 0 20px;
    color:#ffffff;
    font-size:46px;
    font-weight:600;
    line-height:1.15;
    letter-spacing:-1.2px;
}

.aurora-faq-final p{
    max-width:720px;
    margin:0 auto;
    color:#d4ddd2;
    font-size:16px;
    line-height:1.8;
}

.aurora-faq-owner{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-top:30px;
    padding:12px 18px 12px 12px;
    text-align:left;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.11);
    border-radius:999px;
}

.aurora-faq-owner-mark{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    color:#ffffff;
    background:#4f7f2d;
    border-radius:50%;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.aurora-faq-owner strong,
.aurora-faq-owner span{
    display:block;
}

.aurora-faq-owner strong{
    color:#ffffff;
    font-size:14px;
    line-height:1.4;
}

.aurora-faq-owner span{
    margin-top:2px;
    color:#b9c5b7;
    font-size:12px;
}

.aurora-faq-final .aurora-faq-button-secondary{
    color:#ffffff !important;
    background:transparent;
    border-color:rgba(255,255,255,.3);
    box-shadow:none;
}

.aurora-faq-final .aurora-faq-button-secondary:hover{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.55);
}


/* =========================================================
   SHOPRENTER ALAPSTÍLUSOK FELÜLÍRÁSA
   ========================================================= */

.aurora-gyik-page .page-head-center,
.aurora-gyik-page .page-head-title,
.aurora-gyik-page .page-title,
.aurora-gyik-page .content-title{
    display:none !important;
}

.aurora-gyik-page .content-body,
.aurora-gyik-page .content-page-body,
.aurora-gyik-page .page-body{
    margin:0 !important;
    padding:0 !important;
}

.aurora-gyik-page .container,
.aurora-gyik-page .container-fluid{
    max-width:none;
}

.aurora-gyik-page main .container,
.aurora-gyik-page #content .container{
    width:100%;
    max-width:none;
    padding-left:0;
    padding-right:0;
}

.aurora-gyik-page .aurora-faq ul,
.aurora-gyik-page .aurora-faq ol{
    margin-top:0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:992px){

    .aurora-faq-hero{
        padding:78px 24px 88px;
    }

    .aurora-faq-hero h1{
        font-size:48px;
    }

    .aurora-faq-intro{
        padding:0 24px;
    }

    .aurora-faq-section{
        padding:78px 24px;
    }

    .aurora-faq-section-soft{
        padding-left:24px;
        padding-right:24px;
    }

    .aurora-faq-list{
        margin-left:0;
    }

    .aurora-faq-health-notice{
        margin-left:0;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width:767px){

    .aurora-faq-hero{
        padding:58px 18px 72px;
    }

    .aurora-faq-hero::before{
        width:250px;
        height:250px;
    }

    .aurora-faq-hero::after{
        right:-18px;
        bottom:-45px;
        font-size:190px;
    }

    .aurora-faq-eyebrow,
    .aurora-faq-section-label{
        font-size:10px;
        letter-spacing:1.7px;
    }

    .aurora-faq-hero h1{
        margin-bottom:18px;
        font-size:37px;
        line-height:1.12;
        letter-spacing:-1px;
    }

    .aurora-faq-lead{
        font-size:15px;
        line-height:1.7;
    }

    .aurora-faq-hero-actions{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        margin-top:28px;
    }

    .aurora-faq-button{
        width:100%;
        min-height:50px;
        padding:13px 18px;
    }

    .aurora-faq-intro{
        grid-template-columns:1fr;
        gap:14px;
        margin-top:-34px;
        padding:0 18px;
    }

    .aurora-faq-intro-card{
        min-height:auto;
        padding:27px 24px;
        border-radius:14px;
    }

    .aurora-faq-intro-card h2{
        margin-top:10px;
        font-size:23px;
    }

    .aurora-faq-section,
    .aurora-faq-section-soft{
        padding:62px 18px;
    }

    .aurora-faq-section-heading{
        grid-template-columns:50px minmax(0, 1fr);
        gap:16px;
        margin-bottom:27px;
    }

    .aurora-faq-section-number{
        width:48px;
        height:48px;
        font-size:13px;
    }

    .aurora-faq-section-heading h2{
        margin-top:8px;
        font-size:27px;
        line-height:1.23;
        letter-spacing:-.6px;
    }

    .aurora-faq-list{
        gap:10px;
    }

    .aurora-faq-item{
        border-radius:10px;
    }

    .aurora-faq-item summary{
        min-height:64px;
        padding:17px 58px 17px 18px;
        font-size:14px;
        line-height:1.45;
    }

    .aurora-faq-item summary::before,
    .aurora-faq-item summary::after{
        right:20px;
        width:14px;
    }

    .aurora-faq-answer{
        padding:0 18px 21px;
        font-size:14px;
        line-height:1.7;
    }

    .aurora-faq-item[open]::before{
        width:3px;
    }

    .aurora-faq-health-notice{
        margin-top:22px;
        padding:21px 18px 21px 54px;
    }

    .aurora-faq-health-notice::before{
        top:20px;
        left:17px;
    }

    .aurora-faq-final{
        padding:72px 18px;
    }

    .aurora-faq-final h2{
        font-size:35px;
    }

    .aurora-faq-final p{
        font-size:15px;
        line-height:1.72;
    }

    .aurora-faq-owner{
        margin-top:25px;
    }
}


/* =========================================================
   KIS MOBIL
   ========================================================= */

@media (max-width:420px){

    .aurora-faq-hero h1{
        font-size:32px;
    }

    .aurora-faq-section-heading{
        grid-template-columns:1fr;
        gap:14px;
    }

    .aurora-faq-section-number{
        width:44px;
        height:44px;
    }

    .aurora-faq-section-heading h2{
        font-size:25px;
    }

    .aurora-faq-owner{
        width:100%;
        max-width:285px;
        border-radius:14px;
    }
}

/* =========================================================
   AURORA – FIZETÉS ÉS SZÁLLÍTÁS OLDAL
   ========================================================= */

.aurora-shipping-payment {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 20px 90px;
    color: #202020;
    font-family: Montserrat, Arial, sans-serif;
    box-sizing: border-box;
}

.aurora-shipping-payment *,
.aurora-shipping-payment *::before,
.aurora-shipping-payment *::after {
    box-sizing: border-box;
}

/* Bevezető */

.aurora-sp-intro {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.aurora-sp-label,
.aurora-sp-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #4f7f2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
}

.aurora-sp-intro h2 {
    margin: 0 0 20px;
    color: #202020;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.aurora-sp-intro p {
    margin: 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.8;
}

/* Ingyenes szállítás kiemelése */

.aurora-sp-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 72px;
    padding: 26px 30px;
    border: 1px solid #d6e4cd;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f8ef 0%, #ffffff 100%);
    box-shadow: 0 12px 35px rgba(42, 67, 26, 0.08);
}

.aurora-sp-highlight-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #4f7f2d;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.aurora-sp-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: #284819;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.aurora-sp-highlight span {
    display: block;
    color: #566250;
    font-size: 14px;
    line-height: 1.7;
}

/* Szakaszok */

.aurora-sp-section {
    margin: 0 0 76px;
}

.aurora-sp-section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.aurora-sp-number {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #cadabb;
    border-radius: 50%;
    background: #f5f9f2;
    color: #4f7f2d;
    font-size: 14px;
    font-weight: 700;
}

.aurora-sp-section-heading .aurora-sp-eyebrow {
    margin-bottom: 5px;
}

.aurora-sp-section-heading h3 {
    margin: 0;
    color: #202020;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

/* Kártyarendszer */

.aurora-sp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.aurora-sp-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
    padding: 30px;
    border: 1px solid #e3e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.07);
}

.aurora-sp-card-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eef5e9;
    color: #4f7f2d;
    font-size: 18px;
    font-weight: 700;
}

.aurora-sp-card-content {
    flex: 1 1 auto;
    min-width: 0;
}

.aurora-sp-card h4 {
    margin: 0 0 12px;
    color: #202020;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
}

.aurora-sp-card p {
    margin: 0;
    color: #626262;
    font-size: 14px;
    line-height: 1.75;
}

/* Banki adatok */

.aurora-sp-bank-details {
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid #e0e8da;
    border-radius: 13px;
    background: #f7faf5;
}

.aurora-sp-bank-details > div {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 16px;
    border-bottom: 1px solid #e0e8da;
}

.aurora-sp-bank-details > div:last-child {
    border-bottom: 0;
}

.aurora-sp-bank-details span {
    color: #6b7565;
    font-size: 12px;
    line-height: 1.5;
}

.aurora-sp-bank-details strong {
    overflow-wrap: anywhere;
    color: #263221;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

/* Utánvétlista */

.aurora-sp-checklist {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.aurora-sp-checklist li {
    position: relative;
    margin: 0 0 11px;
    padding-left: 27px;
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.6;
}

.aurora-sp-checklist li:last-child {
    margin-bottom: 0;
}

.aurora-sp-checklist li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: #4f7f2d;
    font-size: 16px;
    font-weight: 700;
    content: "✓";
}

/* Szállítási díj */

.aurora-sp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e5e5e1;
}

.aurora-sp-price-row span {
    color: #666666;
    font-size: 13px;
}

.aurora-sp-price-row strong {
    color: #3f6f24;
    font-size: 20px;
    font-weight: 700;
}

.aurora-sp-tax-note {
    margin: 15px 2px 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
}

/* Feladási idő */

.aurora-sp-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.aurora-sp-time-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e2e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.06);
}

.aurora-sp-time-card::after {
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #f1f6ed;
    content: "";
}

.aurora-sp-status {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.aurora-sp-status-stock {
    background: #eaf4e4;
    color: #3f6f24;
}

.aurora-sp-status-order {
    background: #fdf4ee;
    color: #b85a28;
}

.aurora-sp-time-card > strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.aurora-sp-time-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #626262;
    font-size: 14px;
    line-height: 1.75;
}

/* Fontos tudnivaló */

.aurora-sp-notice {
    padding: 25px 28px;
    border-left: 4px solid #4f7f2d;
    border-radius: 0 14px 14px 0;
    background: #f6f7f4;
}

.aurora-sp-notice strong {
    display: block;
    margin-bottom: 7px;
    color: #30382b;
    font-size: 16px;
    font-weight: 700;
}

.aurora-sp-notice p {
    margin: 0;
    color: #626762;
    font-size: 14px;
    line-height: 1.7;
}

/* Mobilnézet */

@media (max-width: 767px) {

    .aurora-shipping-payment {
        padding: 15px 15px 60px;
    }

    .aurora-sp-intro {
        margin-bottom: 32px;
        text-align: left;
    }

    .aurora-sp-intro h2 {
        font-size: 30px;
        line-height: 1.22;
    }

    .aurora-sp-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .aurora-sp-highlight {
        align-items: flex-start;
        margin-bottom: 55px;
        padding: 22px 20px;
    }

    .aurora-sp-highlight-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .aurora-sp-highlight strong {
        font-size: 17px;
    }

    .aurora-sp-section {
        margin-bottom: 56px;
    }

    .aurora-sp-section-heading {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 22px;
    }

    .aurora-sp-number {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
        font-size: 12px;
    }

    .aurora-sp-section-heading h3 {
        font-size: 22px;
    }

    .aurora-sp-grid,
    .aurora-sp-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .aurora-sp-card {
        display: block;
        padding: 23px 20px;
    }

    .aurora-sp-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .aurora-sp-bank-details > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .aurora-sp-time-card {
        padding: 24px 21px;
    }

    .aurora-sp-notice {
        padding: 21px 20px;
    }
}

/* =========================================================
   AURORA – GARANCIA, ELÁLLÁS ÉS VISSZAKÜLDÉS
   ========================================================= */

.aurora-guarantee {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 20px 90px;
    color: #202020;
    font-family: Montserrat, Arial, sans-serif;
    box-sizing: border-box;
}

.aurora-guarantee *,
.aurora-guarantee *::before,
.aurora-guarantee *::after {
    box-sizing: border-box;
}

.aurora-guarantee a {
    text-decoration: none;
}

/* =========================================================
   BEVEZETŐ
   ========================================================= */

.aurora-guarantee-intro {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.aurora-guarantee-label,
.aurora-guarantee-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #4f7f2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
}

.aurora-guarantee-intro h2 {
    margin: 0 0 20px;
    color: #202020;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.aurora-guarantee-intro p {
    margin: 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   SEGÍTSÉG KIEMELÉS
   ========================================================= */

.aurora-guarantee-help {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 72px;
    padding: 26px 30px;
    border: 1px solid #d6e4cd;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f8ef 0%, #ffffff 100%);
    box-shadow: 0 12px 35px rgba(42, 67, 26, 0.08);
}

.aurora-guarantee-help-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #4f7f2d;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.aurora-guarantee-help strong {
    display: block;
    margin-bottom: 6px;
    color: #284819;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.aurora-guarantee-help span {
    display: block;
    color: #566250;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   SZAKASZCÍMEK
   ========================================================= */

.aurora-guarantee-section {
    margin: 0 0 76px;
}

.aurora-guarantee-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.aurora-guarantee-number {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #cadabb;
    border-radius: 50%;
    background: #f5f9f2;
    color: #4f7f2d;
    font-size: 14px;
    font-weight: 700;
}

.aurora-guarantee-heading .aurora-guarantee-eyebrow {
    margin-bottom: 5px;
}

.aurora-guarantee-heading h3 {
    margin: 0;
    color: #202020;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

/* =========================================================
   ÁLTALÁNOS KÁRTYÁK
   ========================================================= */

.aurora-guarantee-card,
.aurora-guarantee-text-card,
.aurora-guarantee-withdrawal,
.aurora-guarantee-refund-card,
.aurora-guarantee-damage-card {
    border: 1px solid #e3e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.07);
}

.aurora-guarantee-card p,
.aurora-guarantee-text-card p,
.aurora-guarantee-withdrawal p,
.aurora-guarantee-refund-card p,
.aurora-guarantee-damage-card p {
    color: #626262;
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   HIBABEJELENTÉS
   ========================================================= */

.aurora-guarantee-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
}

.aurora-guarantee-card-icon {
    display: flex;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fdf4ee;
    color: #c36733;
    font-size: 22px;
    font-weight: 700;
}

.aurora-guarantee-card-content {
    flex: 1 1 auto;
    min-width: 0;
}

.aurora-guarantee-card-content > p:first-child {
    margin: 0 0 22px;
}

.aurora-guarantee-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 25px;
}

.aurora-guarantee-contact a {
    display: block;
    min-width: 0;
    padding: 17px 18px;
    border: 1px solid #dfe8d9;
    border-radius: 12px;
    background: #f7faf5;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.aurora-guarantee-contact a:hover {
    border-color: #9dbb89;
    background: #f1f7ed;
}

.aurora-guarantee-contact span {
    display: block;
    margin-bottom: 5px;
    color: #747b70;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.aurora-guarantee-contact strong {
    display: block;
    overflow-wrap: anywhere;
    color: #355522;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.aurora-guarantee-request {
    padding: 21px 22px;
    border-radius: 14px;
    background: #f7f7f5;
}

.aurora-guarantee-request > strong,
.aurora-guarantee-list-title {
    display: block;
    margin-bottom: 13px;
    color: #303030;
    font-size: 14px;
    font-weight: 700;
}

/* =========================================================
   ELLENŐRZŐ LISTÁK
   ========================================================= */

.aurora-guarantee-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aurora-guarantee-checklist li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 27px;
    color: #505050;
    font-size: 14px;
    line-height: 1.65;
}

.aurora-guarantee-checklist li:last-child {
    margin-bottom: 0;
}

.aurora-guarantee-checklist li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: #4f7f2d;
    font-size: 16px;
    font-weight: 700;
    content: "✓";
}

.aurora-guarantee-small-note {
    margin: 20px 0 0 !important;
    padding-top: 18px;
    border-top: 1px solid #e5e5e1;
    color: #6d716a !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
}

/* =========================================================
   KELLÉKSZAVATOSSÁG
   ========================================================= */

.aurora-guarantee-text-card {
    padding: 32px;
}

.aurora-guarantee-text-card > p {
    margin: 0 0 17px;
}

.aurora-guarantee-fact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 25px;
}

.aurora-guarantee-fact {
    padding: 20px;
    border: 1px solid #dfe8d9;
    border-radius: 14px;
    background: #f7faf5;
}

.aurora-guarantee-fact span {
    display: block;
    margin-bottom: 7px;
    color: #737b6e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.aurora-guarantee-fact strong {
    display: block;
    color: #355522;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================================
   14 NAPOS ELÁLLÁS
   ========================================================= */

.aurora-guarantee-withdrawal {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px;
}

.aurora-guarantee-days {
    display: flex;
    flex: 0 0 105px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #4f7f2d;
    color: #ffffff;
}

.aurora-guarantee-days strong {
    display: block;
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
}

.aurora-guarantee-days span {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aurora-guarantee-withdrawal-content {
    flex: 1 1 auto;
    min-width: 0;
}

.aurora-guarantee-withdrawal-content > p {
    margin: 0 0 16px;
}

.aurora-guarantee-email-button {
    display: inline-block;
    margin: 2px 0 24px;
    padding: 13px 19px;
    border-radius: 8px;
    background: #eef5e9;
    color: #3f6f24;
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
    transition: background 0.2s ease;
}

.aurora-guarantee-email-button:hover {
    background: #e2eedb;
    color: #31591c;
}

/* =========================================================
   TERMÉKKÁRTYÁK
   ========================================================= */

.aurora-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.aurora-guarantee-product-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e2e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.06);
}

.aurora-guarantee-product-card::after {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    content: "";
}

.aurora-guarantee-accepted::after {
    background: #f0f6ec;
}

.aurora-guarantee-not-accepted::after {
    background: #fdf4ee;
}

.aurora-guarantee-status {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.aurora-guarantee-accepted .aurora-guarantee-status {
    background: #eaf4e4;
    color: #3f6f24;
}

.aurora-guarantee-not-accepted .aurora-guarantee-status {
    background: #fdf0e9;
    color: #b85a28;
}

.aurora-guarantee-product-card h4 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #202020;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.aurora-guarantee-product-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #626262;
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   FONTOS KIEMELÉS
   ========================================================= */

.aurora-guarantee-notice {
    margin-top: 22px;
    padding: 23px 26px;
    border-left: 4px solid #4f7f2d;
    border-radius: 0 14px 14px 0;
    background: #f6f7f4;
}

.aurora-guarantee-notice strong {
    display: block;
    margin-bottom: 7px;
    color: #30382b;
    font-size: 15px;
    font-weight: 700;
}

.aurora-guarantee-notice p {
    margin: 0;
    color: #626762;
    font-size: 13px;
    line-height: 1.7;
}

.aurora-guarantee-under-note {
    margin: 16px 2px 0;
    color: #717171;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   VISSZAKÜLDÉSI CÍM
   ========================================================= */

.aurora-guarantee-return-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #e3e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.07);
}

.aurora-guarantee-address {
    padding: 34px;
    background: linear-gradient(145deg, #456e2d 0%, #31521f 100%);
    color: #ffffff;
}

.aurora-guarantee-address-label {
    display: block;
    margin-bottom: 28px;
    color: #dbe9d2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.aurora-guarantee-address strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
}

.aurora-guarantee-address p {
    margin: 0;
    color: #f3f7f0;
    font-size: 15px;
    line-height: 1.75;
}

.aurora-guarantee-return-info {
    padding: 32px;
}

/* =========================================================
   VISSZATÉRÍTÉS
   ========================================================= */

.aurora-guarantee-refund-card {
    padding: 32px;
}

.aurora-guarantee-refund-card > p {
    margin: 0 0 17px;
}

.aurora-guarantee-bank-request {
    margin-top: 24px;
    padding: 23px;
    border: 1px solid #dfe8d9;
    border-radius: 14px;
    background: #f7faf5;
}

.aurora-guarantee-bank-request > strong {
    display: block;
    margin-bottom: 15px;
    color: #30382b;
    font-size: 14px;
    font-weight: 700;
}

.aurora-guarantee-bank-request > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.aurora-guarantee-bank-request span {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    background: #ffffff;
    color: #596253;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================================================
   SÉRÜLT CSOMAG
   ========================================================= */

.aurora-guarantee-damage-card {
    padding: 32px;
}

.aurora-guarantee-damage-card > p:first-child {
    margin: 0 0 24px;
}

.aurora-guarantee-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aurora-guarantee-steps li {
    padding: 20px 17px;
    border: 1px solid #e2e8de;
    border-radius: 14px;
    background: #f8faf6;
}

.aurora-guarantee-steps li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #4f7f2d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.aurora-guarantee-steps p {
    margin: 0;
    color: #4f554c;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   OLDALVÉGI KAPCSOLAT
   ========================================================= */

.aurora-guarantee-footer {
    padding: 30px;
    border: 1px solid #d6e4cd;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f8ef 0%, #ffffff 100%);
    text-align: center;
}

.aurora-guarantee-footer > strong {
    display: block;
    margin-bottom: 8px;
    color: #284819;
    font-size: 20px;
    font-weight: 700;
}

.aurora-guarantee-footer p {
    margin: 0;
    color: #596255;
    font-size: 14px;
    line-height: 1.75;
}

.aurora-guarantee-footer a {
    color: #3f6f24;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.aurora-guarantee-footer a:hover {
    color: #294d17;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .aurora-guarantee-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aurora-guarantee-return-grid {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

/* =========================================================
   MOBILNÉZET
   ========================================================= */

@media (max-width: 767px) {

    .aurora-guarantee {
        padding: 15px 15px 60px;
    }

    .aurora-guarantee-intro {
        margin-bottom: 32px;
        text-align: left;
    }

    .aurora-guarantee-intro h2 {
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.4px;
    }

    .aurora-guarantee-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .aurora-guarantee-help {
        align-items: flex-start;
        margin-bottom: 55px;
        padding: 22px 20px;
    }

    .aurora-guarantee-help-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .aurora-guarantee-help strong {
        font-size: 17px;
    }

    .aurora-guarantee-section {
        margin-bottom: 56px;
    }

    .aurora-guarantee-heading {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 22px;
    }

    .aurora-guarantee-number {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
        font-size: 12px;
    }

    .aurora-guarantee-heading h3 {
        font-size: 22px;
    }

    .aurora-guarantee-contact-card {
        display: block;
        padding: 23px 20px;
    }

    .aurora-guarantee-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .aurora-guarantee-contact {
        grid-template-columns: 1fr;
    }

    .aurora-guarantee-request {
        padding: 19px 18px;
    }

    .aurora-guarantee-text-card,
    .aurora-guarantee-refund-card,
    .aurora-guarantee-damage-card {
        padding: 23px 20px;
    }

    .aurora-guarantee-fact-row,
    .aurora-guarantee-grid,
    .aurora-guarantee-bank-request > div {
        grid-template-columns: 1fr;
    }

    .aurora-guarantee-withdrawal {
        display: block;
        padding: 23px 20px;
    }

    .aurora-guarantee-days {
        width: 82px;
        height: 82px;
        margin-bottom: 22px;
    }

    .aurora-guarantee-days strong {
        font-size: 31px;
    }

    .aurora-guarantee-product-card {
        padding: 24px 21px;
    }

    .aurora-guarantee-return-grid {
        grid-template-columns: 1fr;
    }

    .aurora-guarantee-address,
    .aurora-guarantee-return-info {
        padding: 25px 22px;
    }

    .aurora-guarantee-address-label {
        margin-bottom: 20px;
    }

    .aurora-guarantee-steps {
        grid-template-columns: 1fr;
    }

    .aurora-guarantee-steps li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
    }

    .aurora-guarantee-steps li > span {
        flex: 0 0 34px;
        margin-bottom: 0;
    }

    .aurora-guarantee-footer {
        padding: 24px 20px;
        text-align: left;
    }
}

/* =========================================================
   AURORA – SEGÍTSÉGKÖZPONT
   ========================================================= */

.aurora-help-center {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 20px 90px;
    color: #202020;
    font-family: Montserrat, Arial, sans-serif;
    box-sizing: border-box;
}

.aurora-help-center *,
.aurora-help-center *::before,
.aurora-help-center *::after {
    box-sizing: border-box;
}

.aurora-help-center a {
    text-decoration: none;
}

/* =========================================================
   BEVEZETŐ
   ========================================================= */

.aurora-help-intro {
    max-width: 790px;
    margin: 0 auto 52px;
    text-align: center;
}

.aurora-help-label {
    display: block;
    margin-bottom: 14px;
    color: #4f7f2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
}

.aurora-help-intro h2 {
    margin: 0 0 20px;
    color: #202020;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.aurora-help-intro p {
    margin: 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   KÁRTYARENDSZER
   ========================================================= */

.aurora-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.aurora-help-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-width: 0;
    min-height: 275px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid #e3e3df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(25, 35, 20, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.aurora-help-card::after {
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #f1f6ed;
    content: "";
    transition: transform 0.3s ease;
}

.aurora-help-card:hover {
    transform: translateY(-5px);
    border-color: #b7cda8;
    box-shadow: 0 18px 42px rgba(42, 67, 26, 0.12);
}

.aurora-help-card:hover::after {
    transform: scale(1.15);
}

.aurora-help-icon {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef5e9;
    color: #4f7f2d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.aurora-help-card:hover .aurora-help-icon {
    background: #4f7f2d;
    color: #ffffff;
}

.aurora-help-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    min-height: 211px;
}

.aurora-help-card-label {
    display: block;
    margin-bottom: 8px;
    color: #708167;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.3px;
}

.aurora-help-card h3 {
    margin: 0 0 13px;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.aurora-help-card p {
    margin: 0 0 22px;
    color: #626262;
    font-size: 14px;
    line-height: 1.75;
}

.aurora-help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: #3f6f24;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.aurora-help-arrow {
    display: inline-block;
    font-size: 19px;
    font-weight: 400;
    transition: transform 0.25s ease;
}

.aurora-help-card:hover .aurora-help-arrow {
    transform: translateX(6px);
}

/* =========================================================
   KAPCSOLATI KIEMELÉS
   ========================================================= */

.aurora-help-contact {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    border: 1px solid #d6e4cd;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f8ef 0%, #ffffff 100%);
    box-shadow: 0 12px 35px rgba(42, 67, 26, 0.08);
}

.aurora-help-contact-icon {
    display: flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #4f7f2d;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 700;
    font-style: italic;
}

.aurora-help-contact-content {
    flex: 1 1 auto;
    min-width: 0;
}

.aurora-help-contact-content > strong {
    display: block;
    margin-bottom: 7px;
    color: #284819;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.aurora-help-contact-content > p {
    margin: 0 0 20px;
    color: #596255;
    font-size: 14px;
    line-height: 1.7;
}

.aurora-help-contact-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.aurora-help-contact-links a {
    display: block;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid #dbe6d4;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.aurora-help-contact-links a:hover {
    border-color: #9dbb89;
    background: #ffffff;
}

.aurora-help-contact-links span {
    display: block;
    margin-bottom: 5px;
    color: #747b70;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aurora-help-contact-links strong {
    display: block;
    overflow-wrap: anywhere;
    color: #355522;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .aurora-help-card {
        display: block;
        min-height: 315px;
        padding: 27px;
    }

    .aurora-help-icon {
        margin-bottom: 20px;
    }

    .aurora-help-card-content {
        min-height: 206px;
    }
}

/* =========================================================
   MOBILNÉZET
   ========================================================= */

@media (max-width: 767px) {

    .aurora-help-center {
        padding: 15px 15px 60px;
    }

    .aurora-help-intro {
        margin-bottom: 34px;
        text-align: left;
    }

    .aurora-help-intro h2 {
        font-size: 30px;
        line-height: 1.22;
        letter-spacing: -0.4px;
    }

    .aurora-help-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .aurora-help-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 42px;
    }

    .aurora-help-card {
        display: flex;
        min-height: 0;
        padding: 24px 21px;
    }

    .aurora-help-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        font-size: 16px;
    }

    .aurora-help-card-content {
        min-height: 0;
    }

    .aurora-help-card h3 {
        font-size: 20px;
    }

    .aurora-help-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .aurora-help-link {
        margin-top: 0;
    }

    .aurora-help-contact {
        display: block;
        padding: 24px 21px;
    }

    .aurora-help-contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 18px;
        font-size: 20px;
    }

    .aurora-help-contact-content > strong {
        font-size: 18px;
    }

    .aurora-help-contact-links {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   KISEBB MOBILOK
   ========================================================= */

@media (max-width: 430px) {

    .aurora-help-card {
        display: block;
    }

    .aurora-help-icon {
        margin-bottom: 18px;
    }

    .aurora-help-card p {
        margin-bottom: 18px;
    }
}

/* =========================================================
   AURORA TERMÉKOLDAL – MILANO JAVÍTOTT SZELEKTOROK
   ========================================================= */

/* TERMÉKNÉV */
.flypage h1.page-head-title {
    margin: 0 0 18px !important;
}

.flypage .product-page-product-name {
    color: #202020 !important;
    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
}

/* VÁLTOZATVÁLASZTÓ */
.flypage .product-page-right select {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 14px !important;

    color: #30352f !important;
    background: #ffffff !important;
    border: 1px solid #dfe4dc !important;
    border-radius: 9px !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 13px !important;

    box-shadow: none !important;
}

.flypage .product-page-right select:focus {
    border-color: #8eaf78 !important;
    outline: 0 !important;
    box-shadow: 0 0 0 3px rgba(79, 127, 45, 0.12) !important;
}

/* ÉRTESÍTÉS / KOSÁR GOMB */
.flypage a.button-add-to-cart {
    min-height: 48px !important;
    padding: 14px 28px !important;

    color: #ffffff !important;
    background: #4f7f2d !important;
    border: 1px solid #4f7f2d !important;
    border-radius: 9px !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;

    box-shadow: 0 10px 24px rgba(79, 127, 45, 0.19) !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease !important;
}

.flypage a.button-add-to-cart:hover {
    transform: translateY(-1px) !important;
    color: #ffffff !important;
    background: #35581e !important;
    border-color: #35581e !important;
    box-shadow: 0 14px 30px rgba(53, 88, 30, 0.23) !important;
}

/* LEÍRÁS ÉS VÉLEMÉNYEK FÜLEK */
.flypage .product-page-middle-3 .nav-tabs {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;

    margin: 38px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-bottom: 1px solid #dfe4dc !important;
}

.flypage .product-page-middle-3 .nav-tabs a {
    display: block !important;
    padding: 15px 20px 13px !important;

    color: #8a9088 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

.flypage .product-page-middle-3 .nav-tabs li.active a,
.flypage .product-page-middle-3 .nav-tabs a.active {
    color: #202020 !important;
    border-bottom-color: #4f7f2d !important;
}

/* LEÍRÁS TARTALMA */
.flypage .product-page-middle-3 .tab-content {
    padding: 34px 0 10px !important;

    color: #555d54 !important;
    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

/* =========================================================
   TERMÉKKÉP – AURORA KÁRTYA
   ========================================================= */

.flypage a.product-image-link.fancybox-product {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 34px;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 24px;

    box-shadow: 0 12px 38px rgba(31, 41, 55, 0.07);

    cursor: zoom-in;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.flypage a.product-image-link.fancybox-product:hover {
    transform: translateY(-3px);

    border-color: #b9cdae;
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.11);
}

.flypage img.product-image.product-image-item {
    display: block;

    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 auto;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.flypage a.product-image-link.fancybox-product:hover
img.product-image.product-image-item {
    transform: scale(1.035);
}


/* =========================================================
   MÉRETVÁLASZTÓ – AURORA
   ========================================================= */

.flypage select[id^="product-option-selector-"] {
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 46px 0 16px !important;

    color: #30352f !important;
    background-color: #ffffff !important;
    border: 1px solid #dce3d8 !important;
    border-radius: 10px !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;

    box-shadow: 0 5px 15px rgba(31, 41, 55, 0.035) !important;

    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}

.flypage select[id^="product-option-selector-"]:hover {
    border-color: #a9c297 !important;
}

.flypage select[id^="product-option-selector-"]:focus {
    border-color: #6f994f !important;
    outline: 0 !important;
    box-shadow: 0 0 0 3px rgba(79, 127, 45, 0.13) !important;
}


/* MOBIL */
@media (max-width: 767px) {
    .flypage a.product-image-link.fancybox-product {
        padding: 24px;
        border-radius: 18px;
    }

    .flypage select[id^="product-option-selector-"] {
        min-height: 46px !important;
    }
}

/* =========================================================
   TERMÉKOLDAL FELSŐ ELRENDEZÉS
   ========================================================= */

@media (min-width: 768px) {

    .flypage form#product > .row {
        display: grid !important;
        grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.35fr);
        align-items: start;
        gap: clamp(34px, 5vw, 72px);

        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .flypage form#product > .row > .product-page-left,
    .flypage form#product > .row > .product-page-right {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}


/* JOBB OLDALI INFORMÁCIÓS KÁRTYA */

.flypage form#product .product-page-right {
    padding: clamp(28px, 3vw, 42px) !important;

    background: #fbfcfa;
    border: 1px solid #e3e8df;
    border-radius: 24px;

    box-shadow: 0 12px 38px rgba(31, 41, 55, 0.055);
}


/* TERMÉKNÉV A KÁRTYÁBAN */

.flypage .product-page-right h1.page-head-title {
    margin: 0 0 16px !important;
}

.flypage .product-page-right .product-page-product-name {
    color: #202020 !important;
    font-family: Montserrat, Arial, sans-serif !important;
    font-size: clamp(25px, 2.2vw, 34px) !important;
    font-weight: 600 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.5px !important;
}


/* INFORMÁCIÓS SOROK */

.flypage .product-page-right .product-parameter-row,
.flypage .product-page-right .product-data-row {
    border-color: #e2e7df !important;
}


/* MOBILNÉZET */

@media (max-width: 767px) {

    .flypage form#product > .row {
        display: block !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .flypage form#product .product-page-left,
    .flypage form#product .product-page-right {
        width: 100% !important;
        max-width: 100% !important;
    }

    .flypage form#product .product-page-left {
        margin-bottom: 24px;
        padding: 0 !important;
    }

    .flypage form#product .product-page-right {
        padding: 24px 20px !important;
        border-radius: 18px;
    }

    .flypage .product-page-right .product-page-product-name {
        font-size: 25px !important;
    }
}

/* JOBB OLDALI KÁRTYA – BELSŐ TÉRKÖZ JAVÍTÁSA */

@media (min-width: 768px) {
    .flypage form#product > .row > .product-page-right {
        padding: 38px 42px 40px !important;
    }
}

@media (max-width: 767px) {
    .flypage form#product > .row > .product-page-right {
        padding: 26px 20px !important;
    }
}

/* FELSŐ KÁRTYÁK MAGASSÁGA ÉS TERMÉKKÉP MÉRETE */

@media (min-width: 992px) {
    .flypage form#product > .row {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
        align-items: stretch !important;
        gap: 44px;
    }

    .flypage form#product > .row > .product-page-left {
        display: flex !important;
    }

    .flypage .product-page-left
    a.product-image-link.fancybox-product {
        width: 100%;
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto !important;
    }

    .flypage .product-page-left
    img.product-image.product-image-item {
        transform: scale(1.1);
    }

    .flypage .product-page-left
    a.product-image-link.fancybox-product:hover
    img.product-image.product-image-item {
        transform: scale(1.15);
    }
}

/* =========================================================
   TERMÉKOLDALI FÜLEK ÉS LEÍRÁS
   ========================================================= */

/* TELJES FÜLES SZAKASZ */

.flypage .product-page-middle-3 {
    margin-top: 70px;
}


/* LEÍRÁS / VÉLEMÉNYEK FÜLSOR */

.flypage ul#flypage-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-bottom: 1px solid #dfe5dc !important;
}

.flypage ul#flypage-nav > li {
    margin: 0 !important;
    padding: 0 !important;
}

.flypage ul#flypage-nav > li > a {
    display: block !important;
    padding: 16px 24px 14px !important;

    color: #92988f !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.7px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    transition:
        color 0.2s ease,
        border-color 0.2s ease !important;
}

.flypage ul#flypage-nav > li > a:hover {
    color: #4f7f2d !important;
}

.flypage ul#flypage-nav > li.active > a,
.flypage ul#flypage-nav > li > a.active {
    color: #202020 !important;
    border-bottom-color: #4f7f2d !important;
}


/* FÜLEK TARTALMI TERÜLETE */

.flypage .product-page-middle-3 .tab-content {
    width: 100%;
    margin: 0 auto !important;
    padding: 46px 24px 70px !important;

    color: #555d54 !important;
    font-family: Montserrat, Arial, sans-serif !important;
}


/* TERMÉKLEÍRÁS OLVASHATÓ SZÉLESSÉGE */

.flypage .aurora-product-description {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;

    color: #555d54;
}


/* BEVEZETŐ */

.flypage .aurora-product-description
.aurora-product-intro {
    margin: 0 0 28px !important;

    color: #4f554e !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}


/* CÍMSOROK */

.flypage .aurora-product-description h2 {
    margin: 30px 0 12px !important;

    color: #202020 !important;
    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
}

.flypage .aurora-product-description h2:first-of-type {
    margin-top: 0 !important;
}

.flypage .aurora-product-description h3 {
    margin: 25px 0 10px !important;

    color: #202020 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}


/* BEKEZDÉSEK */

.flypage .aurora-product-description p {
    margin: 0 0 17px !important;

    color: #555d54 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}


/* FELSOROLÁSOK */

.flypage .aurora-product-description ul,
.flypage .aurora-product-description ol {
    margin: 12px 0 23px !important;
    padding-left: 22px !important;
}

.flypage .aurora-product-description li {
    margin-bottom: 7px !important;

    color: #555d54 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.flypage .aurora-product-description li::marker {
    color: #4f7f2d;
}


/* MOBIL */

@media (max-width: 767px) {
    .flypage .product-page-middle-3 {
        margin-top: 46px;
    }

    .flypage ul#flypage-nav > li > a {
        padding: 14px 15px 12px !important;
        font-size: 11px !important;
    }

    .flypage .product-page-middle-3 .tab-content {
        padding: 32px 4px 50px !important;
    }

    .flypage .aurora-product-description h2 {
        font-size: 24px !important;
    }

    .flypage .aurora-product-description p,
    .flypage .aurora-product-description li {
        font-size: 14px !important;
    }
}

/* =========================================================
   TAMÁS TIPPJE
   ========================================================= */

.flypage .aurora-product-description .aurora-product-tip {
    position: relative;
    margin: 34px 0 16px;
    padding: 22px 26px;

    overflow: hidden;

    color: #ffffff;
    background: linear-gradient(135deg, #35581e, #4f7f2d);
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(53, 88, 30, 0.18);
}

.flypage .aurora-product-description .aurora-product-tip::before {
    position: absolute;
    right: -45px;
    bottom: -70px;

    width: 180px;
    height: 180px;

    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;

    content: "";
}

.flypage .aurora-product-description .aurora-product-tip::after {
    position: absolute;
    right: 18px;
    bottom: 4px;

    color: rgba(255, 255, 255, 0.09);

    content: "”";
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
}

.flypage .aurora-product-tip-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.flypage .aurora-product-description .aurora-product-tip h3 {
    margin: 0 !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.flypage .aurora-product-description .aurora-product-tip p {
    margin: 0 !important;

    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   EGÉSZSÉGÜGYI TÁJÉKOZTATÓ
   ========================================================= */

.flypage .aurora-product-description .aurora-product-health {
    display: flex;
    align-items: flex-start;

    margin: 0;
    padding: 18px 24px;

    background: #fbfaf7;
    border: 1px solid #e8e2d8;
    border-radius: 16px;
}

.flypage .aurora-product-health-icon {
    display: none !important;
}

.flypage .aurora-product-health-content {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: start;
    gap: 22px;

    width: 100%;
}

.flypage .aurora-product-health-content strong {
    display: block;

    color: #57452f !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

.flypage .aurora-product-description
.aurora-product-health-content p {
    margin: 0 !important;

    color: #756853 !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
}


/* MOBIL */

@media (max-width: 767px) {
    .flypage .aurora-product-description .aurora-product-tip {
        padding: 21px 19px;
    }

    .flypage .aurora-product-tip-content,
    .flypage .aurora-product-health-content {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .flypage .aurora-product-description .aurora-product-health {
        padding: 18px;
    }
}

/* TERMÉKKÉP – FINOMAN KIEMELT KERET */

@keyframes aurora-frame-glow{
 0%,100%{
  border-color:#e3e8df;
  box-shadow:0 12px 32px rgba(31,41,55,.07)
 }
 50%{
  border-color:#9fbd8b;
  box-shadow:0 15px 40px rgba(79,127,45,.18),
             inset 0 0 0 1px rgba(79,127,45,.08)
 }
}

.product-page-left a.product-image-link{
 background:linear-gradient(145deg,#fff,#f8fbf6)!important;
 animation:aurora-frame-glow 8s ease-in-out infinite
}

.product-page-left img.product-image{
 animation:none!important;
 transform:scale(1.35)!important;
 filter:drop-shadow(0 12px 14px rgba(31,41,55,.12))
}

.product-page-left a.product-image-link:hover{
 border-color:#7fa465!important;
 box-shadow:0 18px 45px rgba(79,127,45,.22)!important
}

@media(prefers-reduced-motion:reduce){
 .product-page-left a.product-image-link{
  animation:none!important
 }
}



/* 3. LÉPÉS – KÜLÖNÁLLÓ LEÍRÁSDOBOZOK */

.flypage .aurora-product-info-box {
    margin: 0 0 18px;
    padding: 26px 28px;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.055);
}

.flypage .aurora-product-info-label {
    display: block;
    margin-bottom: 9px;

    color: #4f7f2d;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.3px;
}

.flypage .aurora-product-info-box h3 {
    margin: 0 0 13px !important;

    color: #202020 !important;
    font-size: 21px !important;
    font-weight: 600 !important;
}

.flypage .aurora-product-info-box p:last-child,
.flypage .aurora-product-info-box ul:last-child,
.flypage .aurora-product-info-box ol:last-child {
    margin-bottom: 0 !important;
}

/* 4. LÉPÉS – LEÍRÁSDOBOZOK KÉT OSZLOPBAN */

@media (min-width: 900px) {
    .flypage .aurora-product-info-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 18px;
    }

    .flypage .aurora-product-info-box {
        height: 100%;
        margin: 0;
    }

    .flypage .aurora-product-info-box-care {
        grid-column: 1 / -1;
    }
}

/* 5. LÉPÉS – GYORS ELŐNYÖK KÁRTYASORA */

.flypage .aurora-product-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;

    margin: 0 0 38px;
}

.flypage .aurora-product-benefit {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 92px;
    padding: 17px;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 16px;

    box-shadow: 0 7px 20px rgba(31, 41, 55, 0.05);
}

.flypage .aurora-product-benefit-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;
}

.flypage .aurora-product-benefit-content strong,
.flypage .aurora-product-benefit-content span {
    display: block;
}

.flypage .aurora-product-benefit-content strong {
    margin-bottom: 4px;

    color: #202020;
    font-size: 13px;
    font-weight: 700;
}

.flypage .aurora-product-benefit-content span {
    color: #747b72;
    font-size: 11px;
    line-height: 1.5;
}

@media (max-width: 899px) {
    .flypage .aurora-product-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .flypage .aurora-product-benefits {
        grid-template-columns: 1fr;
    }
}

/* 6. LÉPÉS – TAMÁS TIPPJE RENDEZÉSE */

.flypage .aurora-product-description .aurora-product-tip {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 20px;

    margin: 22px 0;
    padding: 26px 28px;

    color: #ffffff;
    background: linear-gradient(135deg, #35581e, #4f7f2d);
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(53, 88, 30, 0.18);
}

.flypage .aurora-product-tip-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;
    margin: 0;

    color: #35581e;
    background: #ffffff;
    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}

.flypage .aurora-product-tip-content {
    display: block !important;
}

.flypage .aurora-product-tip .aurora-product-label {
    display: block;
    margin-bottom: 7px;

    color: #dcebd3 !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.flypage .aurora-product-description .aurora-product-tip h3 {
    margin: 0 0 10px !important;

    color: #ffffff !important;
    font-size: 20px !important;
}

.flypage .aurora-product-description .aurora-product-tip p {
    margin: 0 0 9px !important;

    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}

.flypage .aurora-product-tip-signature {
    display: block;
    margin-top: 14px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.flypage .aurora-product-tip-role {
    display: block;
    margin-top: 2px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

@media (max-width: 600px) {
    .flypage .aurora-product-description .aurora-product-tip {
        grid-template-columns: 1fr;
        padding: 23px 20px;
    }
}

/* VIDEÓ + HÁROM SEGÍTSÉGKÁRTYA */

.aurora-product-video{
 margin:22px 0!important;padding:28px 30px!important;background:#fff!important;
 border:1px solid #e3e8df!important;border-radius:18px!important;
 box-shadow:0 8px 24px rgba(31,41,55,.055)!important
}

@media(min-width:850px){
 .aurora-product-video{
  display:grid!important;grid-template-columns:1fr 360px!important;
  align-items:center!important;gap:34px!important
 }
}

.aurora-product-video-placeholder{
 display:flex!important;flex-direction:column;align-items:center;justify-content:center;
 min-height:190px;padding:24px;color:#fff;
 background:linear-gradient(135deg,#30382c,#4f7f2d);
 border-radius:14px;text-align:center
}

.aurora-product-video-play{
 display:flex;align-items:center;justify-content:center;
 width:58px;height:58px;margin-bottom:13px;
 color:#35581e;background:#fff;border-radius:50%;font-size:19px
}

.aurora-product-video-placeholder span{
 display:block;margin-top:4px;color:rgba(255,255,255,.72);font-size:11px
}

.aurora-product-guides{
 display:grid!important;grid-template-columns:repeat(3,1fr);
 gap:18px;margin:22px 0!important
}

.aurora-product-guide-card{
 display:flex;flex-direction:column;padding:25px;
 background:#fff;border:1px solid #e3e8df;border-radius:18px;
 box-shadow:0 8px 24px rgba(31,41,55,.055)
}

.aurora-product-guide-icon{
 color:#4f7f2d;font-size:18px
}

.aurora-product-guide-card h3{
 font-size:19px!important
}

.aurora-product-guide-card p{
 flex:1;font-size:13px!important;line-height:1.65!important
}

.aurora-product-guide-card a{
 color:#4f7f2d!important;font-weight:700
}

@media(max-width:899px){
 .aurora-product-guides{grid-template-columns:1fr}
}

/* Probléma szerint kategória elrejtése a menüből */
#cat_292 {
    display: none !important;
}

/* PARTNERKÖZPONT – BEVEZETŐ ÉS KERESŐ */

.aurora-partner-page .page-head-title {
    display: none !important;
}

.aurora-partner-page .aurora-partner-center,
.aurora-partner-page .aurora-partner-center * {
    box-sizing: border-box;
}

.aurora-partner-page .aurora-partner-center {
    width: 100%;
    max-width: 1180px;
    margin: 28px auto 70px;
}

.aurora-partner-page .aurora-partner-intro {
    padding: 42px 44px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(111, 162, 75, 0.14),
            transparent 34%
        ),
        linear-gradient(135deg, #f4f8f1, #ffffff);

    border: 1px solid #dfe8da;
    border-radius: 22px;

    box-shadow: 0 12px 34px rgba(45, 73, 31, 0.07);
}

.aurora-partner-page .aurora-partner-label {
    display: block;
    margin-bottom: 9px;

    color: #4f7f2d;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.aurora-partner-page .aurora-partner-intro h1 {
    margin: 0 0 14px;

    color: #202020;

    font-size: 40px;
    line-height: 1.15;
}

.aurora-partner-page .aurora-partner-intro p {
    max-width: 760px;
    margin: 0;

    color: #626961;

    font-size: 15px;
    line-height: 1.7;
}

.aurora-partner-page .aurora-partner-search {
    margin-top: 24px;
    padding: 32px 34px;

    background: #ffffff;
    border: 1px solid #e1e7dd;
    border-radius: 20px;

    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.055);
}

.aurora-partner-page .aurora-partner-search h2 {
    margin: 0 0 8px;

    color: #202020;

    font-size: 27px;
    line-height: 1.25;
}

.aurora-partner-page .aurora-partner-search > p {
    margin: 0 0 22px;

    color: #6b726a;

    font-size: 14px;
    line-height: 1.6;
}

.aurora-partner-page .aurora-partner-search-form label {
    display: block;
    margin-bottom: 8px;

    color: #30352f;

    font-size: 12px;
    font-weight: 600;
}

.aurora-partner-page .aurora-partner-search-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.aurora-partner-page .aurora-partner-search-row input {
    flex: 1;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;

    color: #202020;
    background: #ffffff;

    border: 1px solid #d8e0d4;
    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aurora-partner-page .aurora-partner-search-row input:focus {
    border-color: #5b8d39;
    box-shadow: 0 0 0 4px rgba(79, 127, 45, 0.11);
}

.aurora-partner-page .aurora-partner-search-row button {
    min-width: 140px;
    min-height: 54px;
    padding: 0 24px;

    color: #ffffff;
    background: linear-gradient(135deg, #3b6725, #5b9138);

    border: 0;
    border-radius: 12px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 9px 22px rgba(63, 108, 39, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.aurora-partner-page .aurora-partner-search-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(63, 108, 39, 0.27);
}

@media (max-width: 700px) {
    .aurora-partner-page .aurora-partner-center {
        margin-top: 16px;
    }

    .aurora-partner-page .aurora-partner-intro,
    .aurora-partner-page .aurora-partner-search {
        padding: 25px 21px;
        border-radius: 16px;
    }

    .aurora-partner-page .aurora-partner-intro h1 {
        font-size: 31px;
    }

    .aurora-partner-page .aurora-partner-search h2 {
        font-size: 23px;
    }

    .aurora-partner-page .aurora-partner-search-row {
        flex-direction: column;
    }

    .aurora-partner-page .aurora-partner-search-row button {
        width: 100%;
    }
}

/* PARTNERKÖZPONT – MÁRKAKÁRTYÁK */

.aurora-partner-page .aurora-partner-brands {
    margin-top: 24px;
    padding: 32px 34px;

    background: #ffffff;
    border: 1px solid #e1e7dd;
    border-radius: 20px;

    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.055);
}

.aurora-partner-page .aurora-partner-section-heading {
    margin-bottom: 24px;
}

.aurora-partner-page .aurora-partner-section-heading h2 {
    margin: 0 0 8px;

    color: #202020;

    font-size: 27px;
    line-height: 1.25;
}

.aurora-partner-page .aurora-partner-section-heading p {
    max-width: 700px;
    margin: 0;

    color: #6b726a;

    font-size: 14px;
    line-height: 1.65;
}

.aurora-partner-page .aurora-partner-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 15px;
}

.aurora-partner-page .aurora-partner-brand-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 195px;
    padding: 25px 23px;

    color: #202020 !important;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(112, 160, 79, 0.13),
            transparent 42%
        ),
        #ffffff;

    border: 1px solid #dfe7da;
    border-radius: 16px;

    text-decoration: none !important;

    box-shadow: 0 7px 20px rgba(41, 61, 31, 0.055);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.aurora-partner-page .aurora-partner-brand-card::before {
    content: "";

    display: block;

    width: 38px;
    height: 4px;
    margin-bottom: 21px;

    background: linear-gradient(90deg, #3d6927, #78a85a);
    border-radius: 999px;
}

.aurora-partner-page .aurora-partner-brand-name {
    display: block;
    margin-bottom: 12px;

    color: #263521;

    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.aurora-partner-page .aurora-partner-brand-description {
    display: block;
    flex-grow: 1;

    margin-bottom: 20px;

    color: #697067;

    font-size: 13px;
    line-height: 1.6;
}

.aurora-partner-page .aurora-partner-brand-card strong {
    display: block;

    color: #4f7f2d;

    font-size: 12px;
    font-weight: 700;
}

.aurora-partner-page .aurora-partner-brand-card:hover {
    transform: translateY(-4px);

    border-color: #93b77b;

    box-shadow: 0 14px 30px rgba(57, 91, 37, 0.13);
}

@media (max-width: 1000px) {
    .aurora-partner-page .aurora-partner-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .aurora-partner-page .aurora-partner-brands {
        padding: 25px 21px;
        border-radius: 16px;
    }

    .aurora-partner-page .aurora-partner-section-heading h2 {
        font-size: 23px;
    }

    .aurora-partner-page .aurora-partner-brand-grid {
        grid-template-columns: 1fr;
    }

    .aurora-partner-page .aurora-partner-brand-card {
        min-height: 170px;
    }
}

/* PARTNERKÖZPONT – LETÖLTHETŐ ANYAGOK */

.aurora-partner-center .aurora-partner-downloads {
    margin-top: 20px;
    padding: 28px;

    background: #ffffff;
    border: 1px solid #dfe7da;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
}

.aurora-partner-center .aurora-partner-download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    margin-top: 22px;
}

.aurora-partner-center .aurora-partner-download-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 210px;
    padding: 22px 20px;

    background: linear-gradient(145deg, #ffffff, #f5f8f2);
    border: 1px solid #dfe7da;
    border-radius: 14px;
}

.aurora-partner-center .aurora-partner-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    margin-bottom: 17px;

    color: #ffffff;
    background: #4f872f;
    border-radius: 50%;

    font-size: 0;
}

.aurora-partner-center .aurora-partner-download-icon::before {
    content: "↓";
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.aurora-partner-center .aurora-partner-download-card h3 {
    margin: 0 0 10px !important;

    color: #202020 !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
}

.aurora-partner-center .aurora-partner-download-card p {
    flex-grow: 1;
    margin: 0 0 18px !important;

    color: #687066 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}

.aurora-partner-center .aurora-partner-download-status {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;

    padding: 7px 11px;

    color: #657060;
    background: #eef3eb;
    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
}

/* Mobilos nézet */

@media (max-width: 760px) {
    .aurora-partner-center .aurora-partner-downloads {
        padding: 22px 18px;
    }

    .aurora-partner-center .aurora-partner-download-grid {
        grid-template-columns: 1fr;
    }

    .aurora-partner-center .aurora-partner-download-card {
        min-height: 0;
    }
}

/* PARTNERKÖZPONT – LETÖLTÉSI HIVATKOZÁS */

.aurora-partner-center .aurora-partner-download-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;

    padding: 8px 13px;

    color: #ffffff !important;
    background: #4f872f;
    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.aurora-partner-center .aurora-partner-download-link:hover {
    color: #ffffff !important;
    background: #355f20;

    box-shadow: 0 6px 16px rgba(53, 95, 32, 0.2);
    transform: translateY(-1px);
}

/* FIÓKOM OLDAL – KÜLSŐ AURORA PANEL */

body.account_page_body .page-body {
    position: relative;
    overflow: hidden;

    margin: 28px 0 46px;
    padding: 34px 36px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 72%,
            #f4f8f1 100%
        );

    border: 1px solid #dfe7da;
    border-radius: 20px;

    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);
}

body.account_page_body .page-body::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #355f20,
        #69a545
    );
}

@media (max-width: 760px) {
    body.account_page_body .page-body {
        margin-top: 20px;
        padding: 28px 20px;
        border-radius: 16px;
    }
}

/* FIÓKOM OLDAL – ADATKEZELÉSI GOMBOK */

body.account_page_body
.account-account-menu
.btn-custom-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 26px;
}

body.account_page_body
.account-account-menu
.btn-custom-group > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 15px;

    border-radius: 10px;

    font-family: Montserrat, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

/* Személyes adatok törlése */

body.account_page_body
.account-account-menu
.btn-custom-group > *:first-child {
    color: #87483f !important;
    background: #fff8f6 !important;
    border: 1px solid #ead7d2 !important;
}

body.account_page_body
.account-account-menu
.btn-custom-group > *:first-child:hover {
    color: #71372f !important;
    background: #fbeeea !important;
    border-color: #dcbeb6 !important;
}

/* Személyes adatok letöltése */

body.account_page_body
.account-account-menu
.btn-custom-group > *:last-child {
    color: #ffffff !important;
    background: #4f872f !important;
    border: 1px solid #4f872f !important;

    box-shadow: 0 6px 16px rgba(53, 95, 32, 0.14);
}

body.account_page_body
.account-account-menu
.btn-custom-group > *:last-child:hover {
    color: #ffffff !important;
    background: #355f20 !important;
    border-color: #355f20 !important;

    box-shadow: 0 8px 20px rgba(53, 95, 32, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 520px) {
    body.account_page_body
    .account-account-menu
    .btn-custom-group {
        flex-direction: column;
    }

    body.account_page_body
    .account-account-menu
    .btn-custom-group > * {
        width: 100%;
    }
}

/* FIÓKOM OLDAL – MENÜCSOPORTOK */

body.account_page_body .page-body h4 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 24px 0 10px !important;

    color: #202020 !important;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 1.35;
}

body.account_page_body .page-body h4::before {
    content: "";

    flex: 0 0 auto;
    width: 9px;
    height: 9px;

    background: #4f872f;
    border-radius: 50%;

    box-shadow: 0 0 0 5px #eef5e9;
}

body.account_page_body .page-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;

    max-width: 760px;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

body.account_page_body .page-body ul li {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

body.account_page_body .page-body ul li::marker {
    content: "";
}

body.account_page_body .page-body ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    min-height: 44px;
    padding: 10px 13px;

    color: #394137 !important;
    background: #f6f9f4;
    border: 1px solid #e1e9dc;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none !important;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

body.account_page_body .page-body ul li a::after {
    content: "→";

    flex: 0 0 auto;
    color: #4f872f;
    font-weight: 700;
}

body.account_page_body .page-body ul li a:hover {
    color: #355f20 !important;
    background: #eef5e9;
    border-color: #bcd0ae;

    transform: translateX(2px);
}

@media (max-width: 680px) {
    body.account_page_body .page-body ul {
        grid-template-columns: 1fr;
    }
}

/* MÁRKÁINK OLDAL – AURORA MÁRKAKÁRTYÁK */

body.aurora-brands-page .col-subcategory-item .card {
    position: relative;
    overflow: hidden;

    height: 100%;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 66%,
            #f3f7f0 100%
        ) !important;

    border: 1px solid #dfe7da !important;
    border-radius: 18px !important;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.055);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

body.aurora-brands-page .col-subcategory-item .card::before {
    content: "";

    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 2;

    width: 32px;
    height: 3px;

    background: #4f872f;
    border-radius: 10px;
}

/* Logóterület */

body.aurora-brands-page .category-card-image {
    display: block !important;

    width: 100% !important;
    height: 155px !important;
    padding: 30px 18px 18px;

    object-fit: contain !important;
    object-position: center !important;

    background: transparent;
}

/* Márkanév */

body.aurora-brands-page .category-card-body {
    padding: 12px 20px 22px !important;
}

body.aurora-brands-page .category-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: #202020 !important;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none !important;
}

body.aurora-brands-page .category-card-link::before {
    content: "Márka megtekintése";

    color: #4f872f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

/* A stretched-link kattintható felülete megmarad */

body.aurora-brands-page .category-card-link::after {
    border-radius: 18px;
}

/* Lebegési effekt */

body.aurora-brands-page .col-subcategory-item .card:hover {
    border-color: #b9cdae !important;

    box-shadow: 0 14px 32px rgba(53, 95, 32, 0.13);

    transform: translateY(-5px);
}

body.aurora-brands-page
.col-subcategory-item
.card:hover
.category-card-link {
    color: #355f20 !important;
}

/* Mobil */

@media (max-width: 575px) {
    body.aurora-brands-page .category-card-image {
        height: 135px !important;
        padding: 28px 20px 14px;
    }

    body.aurora-brands-page .category-card-body {
        padding: 10px 18px 20px !important;
    }
}

/* MÁRKAKÁRTYA – FELIRAT JAVÍTÁSA */

body.aurora-brands-page
.category-card-link::before {
    content: none !important;
    display: none !important;
}

body.aurora-brands-page
.category-card-link {
    display: block !important;

    width: 100%;
    min-height: 24px;

    color: #202020 !important;

    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.4 !important;

    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

/* MÁRKAKÁRTYA – HOVER SZÍN JAVÍTÁSA */

body.aurora-brands-page
.category-card-link:hover,
body.aurora-brands-page
.category-card-link:focus,
body.aurora-brands-page
.category-card-link:active {
    color: #4f872f !important;
    background: transparent !important;
    border-color: transparent !important;

    box-shadow: none !important;
    text-decoration: none !important;
}

body.aurora-brands-page
.col-subcategory-item
.card:hover
.category-card-body {
    background: transparent !important;
}

/* KOSÁR OLDAL – KÜLSŐ AURORA PANEL */

body.sr-cart-page-body
main > .container > .row {
    position: relative;
    overflow: hidden;

    margin: 28px 0 46px !important;
    padding: 34px 36px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 74%,
            #f4f8f1 100%
        );

    border: 1px solid #dfe7da;
    border-radius: 20px;

    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);
}

body.sr-cart-page-body
main > .container > .row::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #355f20,
        #69a545
    );
}

@media (max-width: 760px) {
    body.sr-cart-page-body
    main > .container > .row {
        margin: 20px 0 34px !important;
        padding: 28px 18px;

        border-radius: 16px;
    }
}

/* KOSÁR – TOVÁBB A PÉNZTÁRBA GOMB */

body.sr-cart-page-body
main .btn-primary {
    color: #ffffff !important;
    background: #4f872f !important;
    border-color: #4f872f !important;
    border-radius: 12px !important;

    box-shadow: 0 8px 20px rgba(53, 95, 32, 0.18);

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

body.sr-cart-page-body
main .btn-primary:hover,
body.sr-cart-page-body
main .btn-primary:focus {
    color: #ffffff !important;
    background: #355f20 !important;
    border-color: #355f20 !important;

    box-shadow: 0 11px 24px rgba(53, 95, 32, 0.24);
    transform: translateY(-1px);
}

/* AJÁNLATKÉRÉS – KÜLSŐ AURORA PANEL */

body.sr-cart-page-body
.fancybox-type-ajax
.fancybox-skin {
    position: relative;
    overflow: hidden;

    padding: 30px 30px 28px !important;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 76%,
            #f3f7f0 100%
        ) !important;

    border: 1px solid #dfe7da !important;
    border-radius: 20px !important;

    box-shadow:
        0 22px 60px rgba(20, 35, 17, 0.22) !important;
}

body.sr-cart-page-body
.fancybox-type-ajax
.fancybox-skin::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #355f20,
        #69a545
    );
}

/* Sötét háttér finomítása */

body.sr-cart-page-body
.fancybox-overlay {
    background: rgba(23, 31, 20, 0.68) !important;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

@media (max-width: 760px) {
    body.sr-cart-page-body
    .fancybox-type-ajax
    .fancybox-skin {
        padding: 26px 18px 22px !important;
        border-radius: 16px !important;
    }
}

/* AJÁNLATKÉRÉS – ŰRLAPMEZŐK */

body.sr-cart-page-body
.fancybox-type-ajax
input[type="text"],

body.sr-cart-page-body
.fancybox-type-ajax
input[type="email"],

body.sr-cart-page-body
.fancybox-type-ajax
input[type="tel"],

body.sr-cart-page-body
.fancybox-type-ajax
textarea {
    width: 100%;

    padding: 12px 14px;

    color: #30352e;
    background: #ffffff;

    border: 1px solid #d7e1d2 !important;
    border-radius: 10px !important;

    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;

    box-shadow: inset 0 1px 2px rgba(31, 41, 55, 0.025);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.sr-cart-page-body
.fancybox-type-ajax
textarea {
    min-height: 175px !important;
    height: 175px !important;

    resize: vertical;
}

body.sr-cart-page-body
.fancybox-type-ajax
input[type="text"]:focus,

body.sr-cart-page-body
.fancybox-type-ajax
input[type="email"]:focus,

body.sr-cart-page-body
.fancybox-type-ajax
input[type="tel"]:focus,

body.sr-cart-page-body
.fancybox-type-ajax
textarea:focus {
    outline: none;

    background: #fbfdf9;
    border-color: #79a861 !important;

    box-shadow: 0 0 0 4px rgba(79, 135, 47, 0.11);
}

body.sr-cart-page-body
.fancybox-type-ajax
label {
    color: #343a32;

    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 760px) {
    body.sr-cart-page-body
    .fancybox-type-ajax
    textarea {
        min-height: 140px !important;
        height: 140px !important;
    }
}

/* =========================================================
   SNEAKER ART – FESTIVAL / PAINT WORLD
   ========================================================= */

.sneaker-art-hub{
    position:relative;
    overflow:hidden;
    background:#101014;
    color:#f8f6ef;
    font-family:Montserrat,Arial,sans-serif;
}

.sneaker-art-hub *,
.sneaker-art-hub *:before,
.sneaker-art-hub *:after{
    box-sizing:border-box;
}

/* DEKORATÍV FESTÉKFOLTOK */

.sneaker-paint{
    position:absolute;
    z-index:1;
    display:block;
    pointer-events:auto;
    cursor:default;
    transition:
        background-color .28s ease,
        transform .4s cubic-bezier(.2,.85,.25,1);
}

.sneaker-paint:before,
.sneaker-paint:after{
    position:absolute;
    content:"";
    display:block;
    background:inherit;
    border-radius:50%;
}

.sneaker-paint--blue{
    top:90px;
    right:-88px;
    width:250px;
    height:205px;
    background:#085dd8;
    border-radius:48% 52% 41% 59% / 42% 44% 56% 58%;
    transform:rotate(-13deg);
}

.sneaker-paint--blue:before{
    top:142px;
    left:36px;
    width:46px;
    height:105px;
    border-radius:48% 52% 58% 42%;
}

.sneaker-paint--blue:after{
    top:162px;
    left:145px;
    width:29px;
    height:72px;
}

.sneaker-paint--pink{
    top:390px;
    left:-74px;
    width:188px;
    height:145px;
    background:#ff3d7f;
    border-radius:57% 43% 58% 42% / 38% 58% 42% 62%;
    transform:rotate(25deg);
}

.sneaker-paint--pink:before{
    top:85px;
    left:115px;
    width:33px;
    height:86px;
}

.sneaker-paint--lime{
    top:780px;
    right:4%;
    width:96px;
    height:96px;
    background:#c9ff00;
    border-radius:48% 52% 46% 54%;
    transform:rotate(22deg);
}

.sneaker-paint--lime:before{
    top:-34px;
    left:88px;
    width:24px;
    height:24px;
}

.sneaker-paint--lime:after{
    top:83px;
    left:112px;
    width:14px;
    height:14px;
}

.sneaker-paint--orange{
    bottom:310px;
    left:6%;
    width:125px;
    height:90px;
    background:#ff7a22;
    border-radius:61% 39% 49% 51% / 51% 56% 44% 49%;
    transform:rotate(-18deg);
}

.sneaker-paint--orange:before{
    top:57px;
    left:23px;
    width:27px;
    height:66px;
}

.sneaker-paint--orange:after{
    top:76px;
    left:90px;
    width:15px;
    height:38px;
}

.sneaker-paint:hover{
    background:#a855f7;
    transform:scale(1.14) rotate(12deg);
}

/* HERO */

.sneaker-art-hero{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    min-height:640px;
    max-width:1400px;
    margin:0 auto;
    padding:110px 9% 120px;
}

.sneaker-art-hero__content{
    position:relative;
    z-index:3;
    max-width:720px;
}

.sneaker-art-eyebrow{
    display:inline-block;
    margin-bottom:20px;
    color:#c9ff00;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}

.sneaker-art-hero h1{
    margin:0;
    color:#f8f6ef;
    font-size:clamp(54px,7vw,104px);
    font-weight:800;
    line-height:.91;
    letter-spacing:-4px;
    text-transform:uppercase;
}

.sneaker-art-hero h1 strong{
    color:#c9ff00;
    font-weight:800;
}

.sneaker-art-hero p{
    max-width:560px;
    margin:30px 0 36px;
    color:#e6e3de;
    font-size:18px;
    line-height:1.65;
}

/* SZABÁLYTALAN, FOLYÓ FESTÉKGOMB */

.sneaker-art-main-cta{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:244px;
    min-height:72px;
    padding:18px 30px 24px;
    overflow:visible;
    background:#075bd4;
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-decoration:none !important;
    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s cubic-bezier(.2,.85,.25,1);
    clip-path:polygon(
        3% 24%, 9% 9%, 24% 15%, 37% 5%, 52% 14%,
        66% 7%, 81% 17%, 95% 8%, 100% 30%, 96% 57%,
        100% 77%, 85% 88%, 69% 82%, 53% 92%, 36% 84%,
        19% 91%, 4% 78%, 7% 56%, 0 39%
    );
}

.sneaker-art-main-cta:before,
.sneaker-art-main-cta:after{
    position:absolute;
    z-index:-1;
    content:"";
    display:block;
    background:inherit;
    transition:background-color .3s ease, transform .3s ease;
}

.sneaker-art-main-cta:before{
    bottom:-26px;
    left:31px;
    width:21px;
    height:44px;
    border-radius:0 0 50% 50%;
    transform:rotate(4deg);
}

.sneaker-art-main-cta:after{
    right:34px;
    bottom:-17px;
    width:14px;
    height:31px;
    border-radius:0 0 50% 50%;
    transform:rotate(-3deg);
}

.sneaker-art-main-cta:hover{
    background:#ff3d7f;
    color:#fff;
    transform:translateY(-5px) rotate(-1deg);
}

.sneaker-art-main-cta:hover:before{
    transform:translateY(8px) rotate(7deg);
}

.sneaker-art-main-cta:hover:after{
    transform:translateY(5px) rotate(-7deg);
}

/* HERO HÁTTÉRSZÖVEG */

.sneaker-art-hero__statement{
    position:absolute;
    z-index:1;
    right:7%;
    bottom:9%;
    display:flex;
    flex-direction:column;
    color:rgba(255,255,255,.05);
    font-size:clamp(55px,9vw,145px);
    font-weight:800;
    line-height:.76;
    letter-spacing:-8px;
    text-align:right;
    text-transform:uppercase;
    pointer-events:none;
}

/* KATEGÓRIÁK */

.sneaker-art-start{
    position:relative;
    z-index:2;
    padding:110px 7% 130px;
    background:#f8f6ef;
    color:#15151a;
}

.sneaker-art-section-heading{
    max-width:650px;
    margin:0 auto 52px;
    text-align:center;
}

.sneaker-art-section-heading > span{
    display:block;
    margin-bottom:15px;
    color:#ea2867;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
}

.sneaker-art-section-heading h2{
    margin:0;
    color:#15151a;
    font-size:clamp(34px,4vw,55px);
    font-weight:800;
    line-height:1;
    letter-spacing:-2px;
}

.sneaker-art-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    max-width:1260px;
    margin:0 auto;
}

.sneaker-art-card{
    position:relative;
    min-height:385px;
    padding:34px 32px 35px;
    overflow:hidden;
    color:#fff;
    transition:transform .35s cubic-bezier(.2,.85,.25,1);
}

.sneaker-art-card:before{
    position:absolute;
    z-index:0;
    content:"";
    width:190px;
    height:190px;
    right:-52px;
    bottom:-64px;
    background:rgba(255,255,255,.16);
    border-radius:45% 55% 39% 61%;
    transition:transform .4s ease;
}

.sneaker-art-card:hover{
    transform:translateY(-10px) rotate(-1deg);
}

.sneaker-art-card:hover:before{
    transform:scale(1.35) rotate(20deg);
}

.sneaker-art-card--paint{
    background:#075bd4;
    clip-path:polygon(2% 4%, 12% 0, 28% 4%, 46% 0, 61% 5%, 79% 1%, 98% 5%, 94% 30%, 100% 51%, 96% 76%, 100% 96%, 75% 93%, 56% 100%, 35% 94%, 13% 100%, 3% 89%, 7% 66%, 0 44%, 5% 22%);
}

.sneaker-art-card--clean{
    background:#ff3d7f;
    clip-path:polygon(5% 0, 27% 5%, 47% 0, 72% 5%, 100% 1%, 95% 24%, 100% 48%, 94% 70%, 98% 95%, 75% 91%, 52% 98%, 25% 92%, 3% 97%, 7% 71%, 0 49%, 6% 25%);
}

.sneaker-art-card--prepare{
    background:#18181e;
    clip-path:polygon(3% 6%, 22% 1%, 44% 5%, 62% 0, 83% 5%, 99% 1%, 94% 28%, 100% 48%, 95% 76%, 99% 95%, 75% 91%, 54% 99%, 29% 94%, 5% 100%, 8% 74%, 1% 51%, 6% 26%);
}

.sneaker-art-card--prepare:before{
    background:#c9ff00;
    opacity:.9;
}

.sneaker-art-card > *{
    position:relative;
    z-index:1;
}

.sneaker-art-card__number{
    display:block;
    margin-bottom:55px;
    color:rgba(255,255,255,.65);
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.sneaker-art-card__label{
    display:block;
    margin-bottom:13px;
    color:#c9ff00;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.7px;
}

.sneaker-art-card--clean .sneaker-art-card__label{
    color:#101014;
}

.sneaker-art-card h3{
    margin:0 0 18px;
    color:#fff;
    font-size:34px;
    font-weight:800;
    line-height:.99;
    letter-spacing:-1.6px;
}

.sneaker-art-card p{
    margin:0;
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.6;
}

.sneaker-art-card__action{
    position:absolute !important;
    bottom:35px;
    left:32px;
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
}

.sneaker-art-card__action:after{
    content:" →";
    color:#c9ff00;
    font-size:16px;
}

/* 3 LÉPÉSES SZAKASZ */

.sneaker-art-process{
    position:relative;
    z-index:2;
    padding:115px 7%;
    background:#101014;
}

.sneaker-art-section-heading--light h2{
    color:#f8f6ef;
}

.sneaker-art-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    max-width:1200px;
    margin:0 auto;
    background:rgba(255,255,255,.16);
}

.sneaker-art-step{
    min-height:235px;
    padding:34px;
    background:#101014;
    transition:background-color .3s ease;
}

.sneaker-art-step:hover{
    background:#24242b;
}

.sneaker-art-step > span{
    display:block;
    margin-bottom:34px;
    color:#c9ff00;
    font-size:40px;
    font-weight:800;
    line-height:1;
}

.sneaker-art-step h3{
    margin:0 0 12px;
    color:#f8f6ef;
    font-size:22px;
    font-weight:700;
}

.sneaker-art-step p{
    margin:0;
    color:#c7c5c0;
    font-size:14px;
    line-height:1.6;
}

/* INSPIRÁCIÓ */

.sneaker-art-inspiration{
    position:relative;
    z-index:2;
    overflow:hidden;
    padding:120px 9%;
    background:#c9ff00;
    color:#15151a;
}

.sneaker-art-inspiration__content{
    position:relative;
    z-index:2;
    max-width:670px;
}

.sneaker-art-inspiration .sneaker-art-eyebrow{
    color:#15151a;
}

.sneaker-art-inspiration h2{
    margin:0 0 22px;
    color:#15151a;
    font-size:clamp(40px,5vw,70px);
    font-weight:800;
    line-height:.94;
    letter-spacing:-3px;
}

.sneaker-art-inspiration p{
    max-width:560px;
    margin:0 0 30px;
    color:#242426;
    font-size:17px;
    line-height:1.65;
}

.sneaker-art-text-link{
    display:inline-block;
    color:#15151a;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-decoration:none !important;
}

.sneaker-art-text-link:after{
    content:" →";
    margin-left:7px;
    font-size:18px;
}

.sneaker-art-text-link:hover{
    color:#075bd4;
}

.sneaker-art-inspiration__paint{
    position:absolute;
    right:8%;
    bottom:-25px;
    width:320px;
    height:250px;
    background:#ff3d7f;
    border-radius:43% 57% 51% 49% / 44% 40% 60% 56%;
    transform:rotate(-16deg);
}

.sneaker-art-inspiration__paint:before,
.sneaker-art-inspiration__paint:after{
    position:absolute;
    content:"";
    display:block;
    background:#ff3d7f;
    border-radius:50%;
}

.sneaker-art-inspiration__paint:before{
    top:-41px;
    left:58px;
    width:43px;
    height:43px;
}

.sneaker-art-inspiration__paint:after{
    top:74px;
    right:-55px;
    width:25px;
    height:25px;
}

/* MOBIL */

@media (max-width:900px){

    .sneaker-art-hero{
        min-height:auto;
        padding:95px 8% 115px;
    }

    .sneaker-art-grid,
    .sneaker-art-steps{
        grid-template-columns:1fr;
        max-width:560px;
    }

    .sneaker-art-card{
        min-height:330px;
    }

    .sneaker-art-hero__statement{
        right:4%;
        bottom:6%;
        font-size:90px;
    }
}

@media (max-width:600px){

    .sneaker-art-hero{
        padding:78px 28px 100px;
    }

    .sneaker-art-hero h1{
        font-size:53px;
        letter-spacing:-2.7px;
    }

    .sneaker-art-hero p{
        font-size:16px;
    }

    .sneaker-art-start,
    .sneaker-art-process,
    .sneaker-art-inspiration{
        padding:80px 24px;
    }

    .sneaker-art-section-heading{
        margin-bottom:38px;
        text-align:left;
    }

    .sneaker-art-section-heading h2{
        font-size:39px;
    }

    .sneaker-art-card{
        min-height:320px;
        padding:30px 27px;
    }

    .sneaker-art-card__number{
        margin-bottom:43px;
    }

    .sneaker-art-card__action{
        bottom:29px;
        left:27px;
    }

    .sneaker-art-step{
        min-height:auto;
        padding:30px 27px;
    }

    .sneaker-art-inspiration h2{
        font-size:48px;
        letter-spacing:-2px;
    }

    .sneaker-art-inspiration__paint{
        right:-105px;
        bottom:-75px;
        width:265px;
        height:205px;
    }

    .sneaker-art-hero__statement{
        display:none;
    }

    .sneaker-paint--blue{
        top:24px;
        right:-123px;
        transform:scale(.72) rotate(-13deg);
    }

    .sneaker-paint--pink{
        top:490px;
        left:-105px;
        transform:scale(.65) rotate(25deg);
    }

    .sneaker-paint--orange{
        display:none;
    }
}

/* SNEAKER ART – HERO JAVÍTÁS */

.sneaker-art-hub,
.sneaker-art-hero{
    background:#101014 !important;
}

.sneaker-art-hero{
    min-height:560px;
}

.sneaker-art-hero h1{
    color:#f8f6ef !important;
    text-shadow:0 8px 30px rgba(0,0,0,.28);
}

.sneaker-art-hero p{
    color:#e6e3de !important;
}

@media (max-width:600px){

    .sneaker-art-hero{
        min-height:500px;
    }
}

/* =========================================================
   SNEAKER ART – GÖRGETÉSRE LEFOLYÓ FESTÉK
   ========================================================= */

.sneaker-art-hub{


}

/* A jobb oldalon futó festékfolyam */

.sneaker-scroll-paint{
    position:absolute;
    z-index:8;
    top:0;
    right:clamp(8px,3vw,52px);
    width:78px;
    height:calc(var(--sneaker-flow) * 1px);
    min-height:70px;
    pointer-events:none;
    transition:height .08s linear;
}

.sneaker-scroll-paint__stream{
    position:absolute;
    inset:0;
    display:block;
    overflow:hidden;
    background:#075bd4;
    border-radius:43% 57% 49% 51% / 13% 12% 8% 8%;
    clip-path:polygon(
        17% 0, 39% 0, 59% 0, 81% 0,
        91% 7%, 78% 18%, 88% 31%, 73% 46%,
        86% 62%, 72% 77%, 83% 90%, 66% 100%,
        38% 100%, 17% 93%, 27% 78%, 10% 61%,
        23% 45%, 8% 30%, 21% 15%, 9% 6%
    );
    box-shadow:0 0 24px rgba(0,80,210,.28);
}

.sneaker-scroll-paint:before,
.sneaker-scroll-paint:after{
    position:absolute;
    z-index:2;
    content:"";
    display:block;
    background:#075bd4;
    border-radius:0 0 50% 50%;
}

.sneaker-scroll-paint:before{
    bottom:-32px;
    left:18px;
    width:18px;
    height:46px;
    transform:rotate(5deg);
}

.sneaker-scroll-paint:after{
    right:14px;
    bottom:-18px;
    width:11px;
    height:28px;
    transform:rotate(-4deg);
}

/* A festékfolyás közben megjelenő fröccsenések */

.sneaker-scroll-splash{
    position:absolute;
    z-index:7;
    display:block;
    width:95px;
    height:74px;
    opacity:0;
    pointer-events:none;
    border-radius:46% 54% 41% 59% / 38% 57% 43% 62%;
    transform:scale(.35) rotate(-18deg);
    transition:
        opacity .35s ease,
        transform .55s cubic-bezier(.2,.9,.25,1);
}

.sneaker-scroll-splash:before,
.sneaker-scroll-splash:after{
    position:absolute;
    content:"";
    display:block;
    background:inherit;
    border-radius:50%;
}

.sneaker-scroll-splash--one{
    top:30%;
    right:7%;
    background:#ff3d7f;
}

.sneaker-scroll-splash--one:before{
    top:-20px;
    left:67px;
    width:20px;
    height:20px;
}

.sneaker-scroll-splash--one:after{
    top:60px;
    left:-25px;
    width:13px;
    height:13px;
}

.sneaker-scroll-splash--two{
    top:56%;
    left:5%;
    background:#c9ff00;
}

.sneaker-scroll-splash--two:before{
    top:-28px;
    left:10px;
    width:18px;
    height:18px;
}

.sneaker-scroll-splash--two:after{
    top:54px;
    right:-27px;
    width:14px;
    height:14px;
}

.sneaker-scroll-splash--three{
    top:79%;
    right:9%;
    background:#ff7a22;
}

.sneaker-scroll-splash--three:before{
    top:-23px;
    left:70px;
    width:18px;
    height:18px;
}

.sneaker-scroll-splash--three:after{
    top:65px;
    left:13px;
    width:12px;
    height:12px;
}

.sneaker-art-hub.sneaker-flow-stage-one .sneaker-scroll-splash--one,
.sneaker-art-hub.sneaker-flow-stage-two .sneaker-scroll-splash--two,
.sneaker-art-hub.sneaker-flow-stage-three .sneaker-scroll-splash--three{
    opacity:1;
    transform:scale(1) rotate(13deg);
}

.sneaker-art-hub.sneaker-flow-stage-two .sneaker-scroll-paint__stream,
.sneaker-art-hub.sneaker-flow-stage-two .sneaker-scroll-paint:before,
.sneaker-art-hub.sneaker-flow-stage-two .sneaker-scroll-paint:after{
    background:#ff3d7f;
}

.sneaker-art-hub.sneaker-flow-stage-three .sneaker-scroll-paint__stream,
.sneaker-art-hub.sneaker-flow-stage-three .sneaker-scroll-paint:before,
.sneaker-art-hub.sneaker-flow-stage-three .sneaker-scroll-paint:after{
    background:#c9ff00;
}

@media (max-width:600px){

    .sneaker-scroll-paint{
        right:5px;
        width:47px;
    }

    .sneaker-scroll-splash--one{
        right:5px;
        transform:scale(.55) rotate(-18deg);
    }

    .sneaker-scroll-splash--two{
        left:-18px;
        transform:scale(.5) rotate(-18deg);
    }

    .sneaker-scroll-splash--three{
        right:-18px;
        transform:scale(.5) rotate(-18deg);
    }

    .sneaker-art-hub.sneaker-flow-stage-one .sneaker-scroll-splash--one,
    .sneaker-art-hub.sneaker-flow-stage-two .sneaker-scroll-splash--two,
    .sneaker-art-hub.sneaker-flow-stage-three .sneaker-scroll-splash--three{
        transform:scale(.72) rotate(13deg);
    }
}

/* SNEAKER ART – TERMÉKEK ELŐREHOZÁSA, TESZT */

.sneaker-art-process,
.sneaker-art-inspiration{
    display:none !important;
}

.sneaker-art-mixer-link{
    display:inline-flex;
    flex-direction:column;
    gap:5px;
    margin-left:24px;
    color:#f8f6ef;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-decoration:none !important;
    vertical-align:middle;
    transition:color .25s ease, transform .25s ease;
}

.sneaker-art-mixer-link small{
    color:#c9ff00;
    font-size:9px;
    font-weight:700;
    letter-spacing:.7px;
}

.sneaker-art-mixer-link:hover{
    color:#ff3d7f;
    transform:translateX(5px);
}

@media (max-width:600px){

    .sneaker-art-mixer-link{
        display:flex;
        width:max-content;
        margin:28px 0 0;
    }
}

/* =========================================================
   AURORA TERMÉKLEÍRÁS – ÚJ EGYSÉGES KOMPONENSEK
   Minden .aurora-product-description leírásra
   ========================================================= */

.flypage .aurora-product-description,
.flypage .aurora-product-description * {
    box-sizing: border-box;
}

.flypage .aurora-product-description {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    color: #555d54;
    font-family: Montserrat, Arial, sans-serif;
}


/* =========================================================
   HERO / BEVEZETŐ
   ========================================================= */

.flypage .aurora-product-description .aurora-product-hero {
    margin: 0 0 28px;
    padding: 30px 32px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(79, 127, 45, 0.12),
            transparent 34%
        ),
        linear-gradient(135deg, #f5f8f2, #ffffff);

    border: 1px solid #dfe8da;
    border-radius: 20px;

    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.055);
}

.flypage .aurora-product-description .aurora-product-label {
    display: block;
    margin: 0 0 10px;

    color: #4f7f2d !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    letter-spacing: 1.35px !important;
    text-transform: uppercase;
}

.flypage .aurora-product-description .aurora-product-hero h2 {
    margin: 0 0 13px !important;

    color: #202020 !important;
    font-size: 29px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
}

.flypage .aurora-product-description .aurora-product-lead {
    max-width: 900px;
    margin: 0 !important;

    color: #596158 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   KIEMELT BLOKK
   ========================================================= */

.flypage .aurora-product-description .aurora-product-highlight {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 20px;

    margin: 0 0 28px;
    padding: 23px 26px;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.055);
}

.flypage .aurora-product-description
.aurora-product-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.flypage .aurora-product-description
.aurora-product-highlight h3 {
    margin: 0 0 7px !important;

    color: #202020 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.flypage .aurora-product-description
.aurora-product-highlight p {
    margin: 0 !important;

    color: #626961 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   FŐ SZAKASZOK
   ========================================================= */

.flypage .aurora-product-description .aurora-product-section {
    margin: 0 0 28px;
}

.flypage .aurora-product-description
.aurora-product-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 15px;
}

.flypage .aurora-product-description
.aurora-product-section-heading > span {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}

.flypage .aurora-product-description
.aurora-product-section-heading h3 {
    margin: 0 !important;

    color: #202020 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}


/* =========================================================
   TERMÉKKÁRTYÁK
   ========================================================= */

.flypage .aurora-product-description .aurora-product-grid {
    display: grid;
    gap: 16px;
}

.flypage .aurora-product-description
.aurora-product-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flypage .aurora-product-description .aurora-product-card,
.flypage .aurora-product-description .aurora-product-mini-card {
    min-width: 0;
    padding: 23px 23px 21px;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
}

.flypage .aurora-product-description
.aurora-product-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    margin: 0 0 15px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.flypage .aurora-product-description .aurora-product-card h4,
.flypage .aurora-product-description .aurora-product-mini-card h4 {
    margin: 0 0 9px !important;

    color: #202020 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.flypage .aurora-product-description .aurora-product-card p,
.flypage .aurora-product-description .aurora-product-mini-card p {
    margin: 0 !important;

    color: #686f67 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   ELŐNYLISTA
   ========================================================= */

.flypage .aurora-product-description .aurora-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.flypage .aurora-product-description .aurora-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    min-width: 0;
    padding: 17px 19px;

    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 15px;
}

.flypage .aurora-product-description .aurora-benefit-check {
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #ffffff;
    background: #4f7f2d;
    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.flypage .aurora-product-description .aurora-benefit-item p {
    margin: 2px 0 0 !important;

    color: #555d54 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}


/* =========================================================
   HASZNÁLATI LÉPÉSEK
   ========================================================= */

.flypage .aurora-product-description .aurora-product-steps {
    counter-reset: aurora-step;

    display: grid;
    gap: 10px;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.flypage .aurora-product-description
.aurora-product-steps li {
    counter-increment: aurora-step;

    position: relative;
    margin: 0 !important;
    padding: 15px 18px 15px 53px !important;

    color: #555d54 !important;
    background: #ffffff;
    border: 1px solid #e3e8df;
    border-radius: 14px;

    font-size: 13px !important;
    line-height: 1.6 !important;
}

.flypage .aurora-product-description
.aurora-product-steps li::before {
    position: absolute;
    top: 13px;
    left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    content: counter(aurora-step);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   MEGJEGYZÉSEK
   ========================================================= */

.flypage .aurora-product-description .aurora-product-note {
    margin: 15px 0 0;
    padding: 16px 19px;

    color: #5f675e;
    background: #f7faf5;
    border: 1px solid #dfe8da;
    border-left: 4px solid #4f7f2d;
    border-radius: 12px;

    font-size: 12px;
    line-height: 1.65;
}

.flypage .aurora-product-description
.aurora-product-note strong {
    color: #35581e;
}


/* =========================================================
   ÖSSZEFOGLALÓ
   ========================================================= */

.flypage .aurora-product-description .aurora-product-summary {
    margin: 30px 0 18px;
    padding: 27px 29px;

    background:
        linear-gradient(
            135deg,
            rgba(238, 245, 233, 0.9),
            rgba(255, 255, 255, 0.96)
        );

    border: 1px solid #dce7d6;
    border-radius: 18px;
}

.flypage .aurora-product-description
.aurora-product-summary h3 {
    margin: 0 0 10px !important;

    color: #202020 !important;
    font-size: 21px !important;
    font-weight: 600 !important;
}

.flypage .aurora-product-description
.aurora-product-summary p {
    margin: 0 !important;

    color: #596158 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   EGÉSZSÉGÜGYI / SZAKMAI TÁJÉKOZTATÓ
   ========================================================= */

.flypage .aurora-product-description
.aurora-medical-notice {
    display: block;

    margin: 0;
    padding: 18px 21px;

    color: #756853;
    background: #fbfaf7;
    border: 1px solid #e8e2d8;
    border-radius: 15px;

    font-size: 11px;
    line-height: 1.65;
}

.flypage .aurora-product-description
.aurora-medical-notice strong {
    color: #57452f;
}


/* =========================================================
   FINOM MOZGÁS
   ========================================================= */

.flypage .aurora-product-description .aurora-product-card,
.flypage .aurora-product-description .aurora-product-mini-card,
.flypage .aurora-product-description .aurora-benefit-item {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.flypage .aurora-product-description .aurora-product-card:hover,
.flypage .aurora-product-description .aurora-product-mini-card:hover,
.flypage .aurora-product-description .aurora-benefit-item:hover {
    transform: translateY(-2px);
    border-color: #bdd1af;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.075);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 899px) {
    .flypage .aurora-product-description
    .aurora-product-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

    .flypage .aurora-product-description .aurora-product-hero {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .flypage .aurora-product-description
    .aurora-product-hero h2 {
        font-size: 23px !important;
    }

    .flypage .aurora-product-description
    .aurora-product-lead {
        font-size: 14px !important;
    }

    .flypage .aurora-product-description
    .aurora-product-highlight {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 21px 19px;
    }

    .flypage .aurora-product-description
    .aurora-product-grid-three,
    .flypage .aurora-product-description
    .aurora-benefit-list {
        grid-template-columns: 1fr;
    }

    .flypage .aurora-product-description
    .aurora-product-section-heading h3 {
        font-size: 19px !important;
    }

    .flypage .aurora-product-description .aurora-product-card,
    .flypage .aurora-product-description .aurora-product-mini-card {
        padding: 20px;
    }

    .flypage .aurora-product-description
    .aurora-product-summary {
        padding: 23px 20px;
    }
}


/* =========================================================
   MOZGÁSCSÖKKENTÉS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .flypage .aurora-product-description .aurora-product-card,
    .flypage .aurora-product-description .aurora-product-mini-card,
    .flypage .aurora-product-description .aurora-benefit-item {
        transition: none;
    }
}

/* =========================================================
   AURORA LEGACY TERMÉKLEÍRÁS
   Régebbi, egyszerű HTML-leírások automatikus formázása
   Csak a közvetlen h2/h3/p/ul/ol elemekre hat
   ========================================================= */

/* Alap térköz a régi leírásoknál */

.flypage .aurora-product-description > p,
.flypage .aurora-product-description > ul,
.flypage .aurora-product-description > ol,
.flypage .aurora-product-description > h2,
.flypage .aurora-product-description > h3 {
    box-sizing: border-box;
}


/* Első, közvetlen bevezető bekezdés */

.flypage .aurora-product-description > p:first-child {
    margin: 0 0 28px !important;
    padding: 25px 28px !important;

    color: #596158 !important;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(79, 127, 45, 0.11),
            transparent 35%
        ),
        linear-gradient(135deg, #f5f8f2, #ffffff);

    border: 1px solid #dfe8da;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);

    font-size: 15px !important;
    line-height: 1.75 !important;
}


/* Fejezetcímek */

.flypage .aurora-product-description > h2,
.flypage .aurora-product-description > h3 {
    position: relative;

    margin: 20px 0 0 !important;
    padding: 21px 24px 12px 58px !important;

    color: #202020 !important;
    background: #ffffff;

    border: 1px solid #e3e8df;
    border-bottom: 0;
    border-radius: 17px 17px 0 0;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
}


/* Zöld Aurora jelölő a címek előtt */

.flypage .aurora-product-description > h2::before,
.flypage .aurora-product-description > h3::before {
    position: absolute;
    top: 18px;
    left: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    color: #4f7f2d;
    background: #eef5e9;
    border-radius: 50%;

    content: "✓";
    font-size: 11px;
    font-weight: 800;
}


/* A cím után következő szöveg vagy lista */

.flypage .aurora-product-description > h2 + p,
.flypage .aurora-product-description > h3 + p,
.flypage .aurora-product-description > h2 + ul,
.flypage .aurora-product-description > h3 + ul,
.flypage .aurora-product-description > h2 + ol,
.flypage .aurora-product-description > h3 + ol {
    margin: 0 0 18px !important;
    padding: 4px 24px 22px 58px !important;

    color: #626961 !important;
    background: #ffffff;

    border: 1px solid #e3e8df;
    border-top: 0;
    border-radius: 0 0 17px 17px;

    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);

    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* Listák rendezése */

.flypage .aurora-product-description > h2 + ul,
.flypage .aurora-product-description > h3 + ul,
.flypage .aurora-product-description > h2 + ol,
.flypage .aurora-product-description > h3 + ol {
    padding-left: 74px !important;
}

.flypage .aurora-product-description > h2 + ul li,
.flypage .aurora-product-description > h3 + ul li,
.flypage .aurora-product-description > h2 + ol li,
.flypage .aurora-product-description > h3 + ol li {
    margin: 0 0 7px !important;

    color: #596158 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.flypage .aurora-product-description > h2 + ul li::marker,
.flypage .aurora-product-description > h3 + ul li::marker,
.flypage .aurora-product-description > h2 + ol li::marker,
.flypage .aurora-product-description > h3 + ol li::marker {
    color: #4f7f2d;
}


/* Több bekezdés egy fejezeten belül */

.flypage .aurora-product-description > h2 + p + p,
.flypage .aurora-product-description > h3 + p + p {
    margin-top: -19px !important;
    padding: 0 24px 22px 58px !important;

    background: #ffffff;
    border-right: 1px solid #e3e8df;
    border-bottom: 1px solid #e3e8df;
    border-left: 1px solid #e3e8df;
    border-radius: 0 0 17px 17px;

    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* Közvetlen, önálló szövegek */

.flypage .aurora-product-description > p:not(:first-child) {
    color: #626961 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* Hover csak asztali eszközön */

@media (hover: hover) {
    .flypage .aurora-product-description > h2,
    .flypage .aurora-product-description > h3 {
        transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .flypage .aurora-product-description > h2:hover,
    .flypage .aurora-product-description > h3:hover {
        border-color: #bdd1af;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

    .flypage .aurora-product-description > p:first-child {
        padding: 21px 19px !important;
        border-radius: 15px;
        font-size: 14px !important;
    }

    .flypage .aurora-product-description > h2,
    .flypage .aurora-product-description > h3 {
        padding: 19px 18px 10px 52px !important;
        border-radius: 15px 15px 0 0;

        font-size: 18px !important;
    }

    .flypage .aurora-product-description > h2::before,
    .flypage .aurora-product-description > h3::before {
        top: 16px;
        left: 17px;

        width: 25px;
        height: 25px;
    }

    .flypage .aurora-product-description > h2 + p,
    .flypage .aurora-product-description > h3 + p,
    .flypage .aurora-product-description > h2 + ul,
    .flypage .aurora-product-description > h3 + ul,
    .flypage .aurora-product-description > h2 + ol,
    .flypage .aurora-product-description > h3 + ol {
        padding: 4px 18px 20px 52px !important;
        border-radius: 0 0 15px 15px;

        font-size: 13px !important;
    }

    .flypage .aurora-product-description > h2 + ul,
    .flypage .aurora-product-description > h3 + ul,
    .flypage .aurora-product-description > h2 + ol,
    .flypage .aurora-product-description > h3 + ol {
        padding-left: 68px !important;
    }
}

.flypage .aurora-product-description > h2 {
    color: red !important;
}

/* =========================================================
   AURORA LEGACY v2 – VÉGLEGES SHOPRENTER VERZIÓ
   Egyszerű, régebbi termékleírások automatikus formázása
   CSS-változók nélkül
   ========================================================= */


/* =========================================================
   ALAPBEÁLLÍTÁSOK
   ========================================================= */

.flypage .aurora-product-description > p,
.flypage .aurora-product-description > h2,
.flypage .aurora-product-description > h3,
.flypage .aurora-product-description > ul,
.flypage .aurora-product-description > ol {
    box-sizing: border-box;
}


/* =========================================================
   BEVEZETŐ SZÖVEG
   ========================================================= */

.flypage .aurora-product-description > p:first-child,
.flypage .aurora-product-description > p.aurora-product-lead:first-child {
    position: relative;

    width: 100%;
    margin: 0 0 36px !important;
    padding: 24px 28px 24px 31px !important;

    color: #4f594e !important;

    background:
        linear-gradient(
            90deg,
            rgba(238, 245, 233, 0.94),
            rgba(255, 255, 255, 0.99)
        );

    border: 1px solid #dfe7da;
    border-left: 4px solid #4f7f2d;
    border-radius: 14px;

    box-shadow: 0 7px 22px rgba(31, 41, 55, 0.045);

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.flypage .aurora-product-description > p:first-child::after,
.flypage .aurora-product-description > p.aurora-product-lead:first-child::after {
    position: absolute;
    right: 22px;
    bottom: -9px;

    width: 42px;
    height: 18px;

    background:
        radial-gradient(
            circle,
            rgba(79, 127, 45, 0.14) 1.5px,
            transparent 1.7px
        );

    background-size: 8px 8px;

    content: "";
}


/* =========================================================
   FEJEZETCÍMEK
   ========================================================= */

.flypage .aurora-product-description > h2,
.flypage .aurora-product-description > h3 {
    position: relative;

    margin: 34px 0 13px !important;
    padding: 0 0 11px 45px !important;

    color: #202020 !important;
    background: transparent !important;

    border: 0 !important;
    border-bottom: 1px solid #dfe7da !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.15px !important;
}


/* Zöld kör alakú jelölő */

.flypage .aurora-product-description > h2::before,
.flypage .aurora-product-description > h3::before {
    position: absolute;
    top: -4px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    color: #4f7f2d;
    background: #eef5e9;

    border: 1px solid #d9e7d0;
    border-radius: 50%;

    content: "✓";

    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}


/* Rövid zöld alsó vonal */

.flypage .aurora-product-description > h2::after,
.flypage .aurora-product-description > h3::after {
    position: absolute;
    bottom: -1px;
    left: 45px;

    width: 54px;
    height: 2px;

    background: #4f7f2d;
    border-radius: 3px;

    content: "";
}


/* =========================================================
   FEJEZETEK UTÁNI SZÖVEGEK
   ========================================================= */

.flypage .aurora-product-description > h2 + p,
.flypage .aurora-product-description > h3 + p {
    position: relative;

    margin: 0 0 18px !important;
    padding: 2px 4px 0 45px !important;

    color: #555d54 !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}


/* Második és harmadik bekezdés ugyanazon fejezetben */

.flypage .aurora-product-description > h2 + p + p,
.flypage .aurora-product-description > h3 + p + p,
.flypage .aurora-product-description > h2 + p + p + p,
.flypage .aurora-product-description > h3 + p + p + p {
    margin: -6px 0 18px !important;
    padding: 0 4px 0 45px !important;

    color: #555d54 !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   FELSOROLÁSOK
   ========================================================= */

.flypage .aurora-product-description > h2 + ul,
.flypage .aurora-product-description > h3 + ul,
.flypage .aurora-product-description > h2 + ol,
.flypage .aurora-product-description > h3 + ol {
    position: relative;

    display: grid;
    gap: 8px;

    margin: 2px 0 23px 45px !important;
    padding: 0 !important;

    list-style: none !important;
}


/* Listaelemek */

.flypage .aurora-product-description > h2 + ul li,
.flypage .aurora-product-description > h3 + ul li,
.flypage .aurora-product-description > h2 + ol li,
.flypage .aurora-product-description > h3 + ol li {
    position: relative;

    margin: 0 !important;
    padding: 11px 14px 11px 39px !important;

    color: #596158 !important;
    background: #f7faf5;

    border: 1px solid #e4ebe0;
    border-radius: 10px;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.55 !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}


/* Pontozott lista zöld pipája */

.flypage .aurora-product-description > h2 + ul li::before,
.flypage .aurora-product-description > h3 + ul li::before {
    position: absolute;
    top: 12px;
    left: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: #ffffff;
    background: #4f7f2d;
    border-radius: 50%;

    content: "✓";

    font-size: 9px;
    font-weight: 800;
}


/* Számozott lista */

.flypage .aurora-product-description > h2 + ol,
.flypage .aurora-product-description > h3 + ol {
    counter-reset: aurora-legacy-step;
}

.flypage .aurora-product-description > h2 + ol li,
.flypage .aurora-product-description > h3 + ol li {
    counter-increment: aurora-legacy-step;
}

.flypage .aurora-product-description > h2 + ol li::before,
.flypage .aurora-product-description > h3 + ol li::before {
    position: absolute;
    top: 10px;
    left: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    color: #35581e;
    background: #eef5e9;
    border-radius: 50%;

    content: counter(aurora-legacy-step);

    font-size: 10px;
    font-weight: 800;
}


/* Eredeti lista marker eltüntetése */

.flypage .aurora-product-description > h2 + ul li::marker,
.flypage .aurora-product-description > h3 + ul li::marker,
.flypage .aurora-product-description > h2 + ol li::marker,
.flypage .aurora-product-description > h3 + ol li::marker {
    content: "";
}


/* =========================================================
   FINOM FÜGGŐLEGES VONAL
   ========================================================= */

.flypage .aurora-product-description > h2 + p::before,
.flypage .aurora-product-description > h3 + p::before,
.flypage .aurora-product-description > h2 + ul::before,
.flypage .aurora-product-description > h3 + ul::before,
.flypage .aurora-product-description > h2 + ol::before,
.flypage .aurora-product-description > h3 + ol::before {
    position: absolute;
    top: 0;
    bottom: -18px;
    left: 15px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            #d9e6d2,
            rgba(217, 230, 210, 0)
        );

    content: "";
}


/* =========================================================
   ÖNÁLLÓ BEKEZDÉSEK
   ========================================================= */

.flypage .aurora-product-description > p:not(:first-child) {
    color: #555d54 !important;

    font-family: Montserrat, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   ERŐS KIEMELÉSEK
   ========================================================= */

.flypage .aurora-product-description > p strong,
.flypage .aurora-product-description > ul strong,
.flypage .aurora-product-description > ol strong {
    color: #30382c !important;
    font-weight: 700 !important;
}


/* =========================================================
   LINK MEGJELENÉS
   ========================================================= */

.flypage .aurora-product-description > p a,
.flypage .aurora-product-description > ul a,
.flypage .aurora-product-description > ol a {
    color: #4f7f2d !important;

    font-weight: 700 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
}


/* =========================================================
   HOVER – CSAK ASZTALI ESZKÖZÖN
   ========================================================= */

@media (hover: hover) {

    .flypage .aurora-product-description > h2 + ul li:hover,
    .flypage .aurora-product-description > h3 + ul li:hover,
    .flypage .aurora-product-description > h2 + ol li:hover,
    .flypage .aurora-product-description > h3 + ol li:hover {
        transform: translateX(3px);

        background: #ffffff;
        border-color: #bfd2b2;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 899px) {

    .flypage .aurora-product-description > p:first-child,
    .flypage .aurora-product-description > p.aurora-product-lead:first-child {
        padding-right: 24px !important;
        padding-left: 27px !important;
    }
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

    .flypage .aurora-product-description > p:first-child,
    .flypage .aurora-product-description > p.aurora-product-lead:first-child {
        margin-bottom: 31px !important;
        padding: 20px 19px 20px 22px !important;

        border-radius: 12px;

        font-size: 14px !important;
        line-height: 1.72 !important;
    }

    .flypage .aurora-product-description > p:first-child::after,
    .flypage .aurora-product-description > p.aurora-product-lead:first-child::after {
        right: 14px;
    }


    /* Címsorok mobilon */

    .flypage .aurora-product-description > h2,
    .flypage .aurora-product-description > h3 {
        margin-top: 29px !important;
        padding: 0 0 10px 39px !important;

        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .flypage .aurora-product-description > h2::before,
    .flypage .aurora-product-description > h3::before {
        top: -3px;

        width: 27px;
        height: 27px;

        font-size: 10px;
    }

    .flypage .aurora-product-description > h2::after,
    .flypage .aurora-product-description > h3::after {
        left: 39px;

        width: 45px;
    }


    /* Bekezdések mobilon */

    .flypage .aurora-product-description > h2 + p,
    .flypage .aurora-product-description > h3 + p,
    .flypage .aurora-product-description > h2 + p + p,
    .flypage .aurora-product-description > h3 + p + p,
    .flypage .aurora-product-description > h2 + p + p + p,
    .flypage .aurora-product-description > h3 + p + p + p {
        padding-left: 39px !important;

        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* Listák mobilon */

    .flypage .aurora-product-description > h2 + ul,
    .flypage .aurora-product-description > h3 + ul,
    .flypage .aurora-product-description > h2 + ol,
    .flypage .aurora-product-description > h3 + ol {
        margin-left: 39px !important;
    }

    .flypage .aurora-product-description > h2 + ul li,
    .flypage .aurora-product-description > h3 + ul li,
    .flypage .aurora-product-description > h2 + ol li,
    .flypage .aurora-product-description > h3 + ol li {
        padding: 10px 12px 10px 37px !important;

        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    .flypage .aurora-product-description > h2 + ul li::before,
    .flypage .aurora-product-description > h3 + ul li::before {
        top: 10px;
        left: 11px;
    }

    .flypage .aurora-product-description > h2 + ol li::before,
    .flypage .aurora-product-description > h3 + ol li::before {
        top: 9px;
        left: 9px;
    }


    /* Függőleges vonal mobilon */

    .flypage .aurora-product-description > h2 + p::before,
    .flypage .aurora-product-description > h3 + p::before,
    .flypage .aurora-product-description > h2 + ul::before,
    .flypage .aurora-product-description > h3 + ul::before,
    .flypage .aurora-product-description > h2 + ol::before,
    .flypage .aurora-product-description > h3 + ol::before {
        left: 13px;
    }
}


/* =========================================================
   MOZGÁSCSÖKKENTÉS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .flypage .aurora-product-description > h2 + ul li,
    .flypage .aurora-product-description > h3 + ul li,
    .flypage .aurora-product-description > h2 + ol li,
    .flypage .aurora-product-description > h3 + ol li {
        transition: none;
    }
}

/* =========================================================
   AURORA – REGISZTRÁCIÓS OLDAL
   ========================================================= */

/* Oldal szélesség és alap elrendezés */
body.account-register .page-body,
body.register-body .page-body,
body[class*="register"] .page-body {
    max-width: 860px;
    margin: 36px auto 80px;
    padding: 0 22px;
    font-family: Montserrat, Arial, sans-serif;
}

/* Gyári oldal cím */
body.account-register .page-head,
body.register-body .page-head,
body[class*="register"] .page-head {
    margin: 0 0 24px;
    text-align: center;
}

body.account-register .page-head h1,
body.register-body .page-head h1,
body[class*="register"] .page-head h1,
body.account-register .page-head-title,
body.register-body .page-head-title,
body[class*="register"] .page-head-title {
    margin: 0;
    color: #202020;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* A teljes regisztrációs űrlap kártya */
body.account-register form,
body.register-body form,
body[class*="register"] form {
    padding: 38px 42px 42px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(111, 162, 75, 0.08),
            transparent 34%
        ),
        #ffffff;
    border: 1px solid #dfe7da;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(45, 73, 31, 0.08);
}

/* Mezőcsoportok */
body.account-register .form-group,
body.register-body .form-group,
body[class*="register"] .form-group {
    margin-bottom: 20px;
}

/* Címkék */
body.account-register label,
body.register-body label,
body[class*="register"] label {
    margin-bottom: 7px;
    color: #343a32;
    font-size: 12px;
    font-weight: 600;
}

/* Inputok / selectek */
body.account-register input[type="text"],
body.account-register input[type="email"],
body.account-register input[type="password"],
body.account-register input[type="tel"],
body.account-register select,
body.register-body input[type="text"],
body.register-body input[type="email"],
body.register-body input[type="password"],
body.register-body input[type="tel"],
body.register-body select,
body[class*="register"] input[type="text"],
body[class*="register"] input[type="email"],
body[class*="register"] input[type="password"],
body[class*="register"] input[type="tel"],
body[class*="register"] select {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;

    color: #202020;
    background: #ffffff;

    border: 1px solid #d8e0d4;
    border-radius: 10px;

    font-family: inherit;
    font-size: 14px;

    box-shadow: none;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.account-register input:focus,
body.account-register select:focus,
body.register-body input:focus,
body.register-body select:focus,
body[class*="register"] input:focus,
body[class*="register"] select:focus {
    border-color: #5b8d39;
    box-shadow: 0 0 0 4px rgba(79, 127, 45, 0.11);
}

/* Számlázási cím címsor */
body.account-register legend,
body.register-body legend,
body[class*="register"] legend,
body.account-register h2,
body.register-body h2,
body[class*="register"] form h2 {
    margin: 32px 0 18px;
    padding: 0 0 12px;

    color: #263521;

    border-bottom: 1px solid #dfe7da;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

/* Céges / számlázási rész finom elkülönítése */
body.account-register fieldset,
body.register-body fieldset,
body[class*="register"] fieldset {
    margin: 22px 0;
    padding: 24px 24px 8px;

    background: #f8faf6;
    border: 1px solid #dfe7da;
    border-radius: 14px;
}

/* Checkbox */
body.account-register .custom-checkbox,
body.register-body .custom-checkbox,
body[class*="register"] .custom-checkbox {
    margin-top: 12px;
}

body.account-register input[type="checkbox"],
body.register-body input[type="checkbox"],
body[class*="register"] input[type="checkbox"] {
    accent-color: #4f7f2d;
}

/* Hozzájárulás szöveg */
body.account-register .custom-control-label,
body.register-body .custom-control-label,
body[class*="register"] .custom-control-label {
    color: #5f675d;
    font-size: 12px;
    line-height: 1.55;
}

/* Hibás mezők */
body.account-register .has-error input,
body.account-register input.is-invalid,
body.register-body .has-error input,
body.register-body input.is-invalid,
body[class*="register"] .has-error input,
body[class*="register"] input.is-invalid {
    border-color: #df6b6b;
    box-shadow: 0 0 0 3px rgba(223, 107, 107, 0.08);
}

body.account-register .text-danger,
body.account-register .invalid-feedback,
body.register-body .text-danger,
body.register-body .invalid-feedback,
body[class*="register"] .text-danger,
body[class*="register"] .invalid-feedback {
    margin-top: 6px;
    color: #c65353;
    font-size: 11px;
}

/* Regisztráció gomb */
body.account-register button[type="submit"],
body.account-register input[type="submit"],
body.register-body button[type="submit"],
body.register-body input[type="submit"],
body[class*="register"] button[type="submit"],
body[class*="register"] input[type="submit"] {
    min-width: 230px;
    min-height: 52px;
    margin-top: 16px;
    padding: 0 28px;

    color: #ffffff !important;
    background: linear-gradient(135deg, #3b6725, #5b9138);

    border: 0;
    border-radius: 11px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 9px 22px rgba(63, 108, 39, 0.20);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.account-register button[type="submit"]:hover,
body.account-register input[type="submit"]:hover,
body.register-body button[type="submit"]:hover,
body.register-body input[type="submit"]:hover,
body[class*="register"] button[type="submit"]:hover,
body[class*="register"] input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 27px rgba(63, 108, 39, 0.27);
}

/* Alsó belépés link */
body.account-register form + a,
body.register-body form + a,
body[class*="register"] form + a {
    color: #4f7f2d;
    font-weight: 600;
    text-decoration: none;
}

/* Mobil */
@media (max-width: 700px) {

    body.account-register .page-body,
    body.register-body .page-body,
    body[class*="register"] .page-body {
        margin-top: 20px;
        padding: 0 14px;
    }

    body.account-register form,
    body.register-body form,
    body[class*="register"] form {
        padding: 26px 20px 30px;
        border-radius: 16px;
    }

    body.account-register .page-head h1,
    body.register-body .page-head h1,
    body[class*="register"] .page-head h1,
    body.account-register .page-head-title,
    body.register-body .page-head-title,
    body[class*="register"] .page-head-title {
        font-size: 30px;
    }

    body.account-register fieldset,
    body.register-body fieldset,
    body[class*="register"] fieldset {
        padding: 20px 16px 6px;
    }

    body.account-register button[type="submit"],
    body.account-register input[type="submit"],
    body.register-body button[type="submit"],
    body.register-body input[type="submit"],
    body[class*="register"] button[type="submit"],
    body[class*="register"] input[type="submit"] {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   AURORA – INFOGRAFIKA LIGHTBOX + MOBIL PINCH ZOOM
   ========================================================= */

.aurora-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;

    background: rgba(0, 0, 0, 0.94);

    overflow: hidden;
}

.aurora-image-lightbox.is-open {
    display: block;
}

.aurora-image-lightbox-stage {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    touch-action: none;
}

.aurora-image-lightbox-stage img {
    display: block;

    max-width: 94vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    transform: scale(1);
    transform-origin: center center;

    transition: transform 0.08s linear;

    user-select: none;
    -webkit-user-drag: none;
}

.aurora-image-lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100000;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}