/* _content/Website_ErdelyiZoltan/Components/Comps/Benefits.razor.rz.scp.css */
.benefits[b-a9v6qcvpan] {
    background: var(--background-color);
    padding: 5rem 1.5rem;
}

.benefits-container[b-a9v6qcvpan] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow[b-a9v6qcvpan] {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    background: var(--background-color-second);
    padding: .4rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.benefits h2[b-a9v6qcvpan] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
    margin: 0 0 2.5rem;
}

.benefits-grid[b-a9v6qcvpan] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card[b-a9v6qcvpan] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .benefit-card:hover[b-a9v6qcvpan] {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.1);
    }

.icon-wrap[b-a9v6qcvpan] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

    .icon-wrap svg[b-a9v6qcvpan] {
        width: 28px;
        height: 28px;
        fill: var(--accent-color);
    }

.benefit-card h3[b-a9v6qcvpan] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: 1.25rem;
    margin: .25rem 0 .5rem;
}

.benefit-card p[b-a9v6qcvpan] {
    color: var(--text-color);
    line-height: var(--line-height);
    margin: 0;
}

.hero-button[b-a9v6qcvpan] {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .hero-button:hover[b-a9v6qcvpan] {
        background-color: var(--primary-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }

.cta-grid[b-a9v6qcvpan] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .benefits-grid[b-a9v6qcvpan] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .benefits-grid[b-a9v6qcvpan] {
        grid-template-columns: 1fr;
    }

    .benefit-card[b-a9v6qcvpan] {
        text-align: left;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/Contact.razor.rz.scp.css */
.contact[b-84r6hoq8mx] {
    background: var(--background-color-second);
    padding: 5rem 1.25rem;
}

.contact-container[b-84r6hoq8mx] {
    max-width: 960px;
    margin: 0 auto;
}

.contact-head[b-84r6hoq8mx] {
    text-align: left;
    margin-bottom: 1.5rem;
}

.eyebrow[b-84r6hoq8mx] {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--background-color);
    padding: .4rem .75rem;
    border-radius: 999px;
    margin-bottom: .6rem;
}

.contact h2[b-84r6hoq8mx] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.8rem,2vw+1rem,2.4rem);
    margin: .2rem 0 .5rem;
}

.lead[b-84r6hoq8mx] {
    color: var(--text-color);
}

.grid[b-84r6hoq8mx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.field[b-84r6hoq8mx] {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.field-full[b-84r6hoq8mx] {
    grid-column: 1 / -1;
}

label[b-84r6hoq8mx] {
    font-weight: 600;
    color: var(--text-title-color);
}

.input[b-84r6hoq8mx], .textarea[b-84r6hoq8mx], select.input[b-84r6hoq8mx] {
    width: 100%;
    padding: .8rem .9rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.1);
    background: #fff;
    color: var(--text-color);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .input:focus[b-84r6hoq8mx], .textarea:focus[b-84r6hoq8mx], select.input:focus[b-84r6hoq8mx] {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(51,117,177,.12);
    }

.textarea[b-84r6hoq8mx] {
    resize: vertical;
}

.val-summary[b-84r6hoq8mx] {
    grid-column: 1 / -1;
    color: #b00020;
    margin-bottom: .25rem;
}

.validation-message[b-84r6hoq8mx], .field .validation-message[b-84r6hoq8mx] {
    color: #b00020;
    font-size: .9rem;
}

.consent[b-84r6hoq8mx] {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.checkbox[b-84r6hoq8mx] {
    width: 18px;
    height: 18px;
}

.actions[b-84r6hoq8mx] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .25rem;
}

.btn[b-84r6hoq8mx] {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .8rem 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

    .btn:hover[b-84r6hoq8mx] {
        background: var(--primary-color);
        color: var(--accent-color);
    }

    .btn[disabled][b-84r6hoq8mx] {
        opacity: .6;
        cursor: not-allowed;
    }

.msg[b-84r6hoq8mx] {
    font-size: .95rem;
}

    .msg.ok[b-84r6hoq8mx] {
        color: #1b8f46;
    }

    .msg.err[b-84r6hoq8mx] {
        color: #b00020;
    }

.hp[b-84r6hoq8mx] {
    position: absolute;
    left: -5000px;
    opacity: 0;
}

@media (max-width: 820px) {
    .grid[b-84r6hoq8mx] {
        grid-template-columns: 1fr;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/Footer.razor.rz.scp.css */
.site-footer[b-wvvmt2qv92] {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2.5rem 1rem 1rem;
    font-size: 0.95rem;
}

.footer-container[b-wvvmt2qv92] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-about h3[b-wvvmt2qv92] {
    margin-bottom: 0.5rem;
    color: var(--background-color);
}

.footer-about .top[b-wvvmt2qv92] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about img[b-wvvmt2qv92] {
    max-width: 80px;
    align-self: center;
}

.footer-links h4[b-wvvmt2qv92],
.footer-social h4[b-wvvmt2qv92] {
    margin-bottom: 0.75rem;
    color: var(--background-color);
}

.footer-links ul[b-wvvmt2qv92],
.footer-social ul[b-wvvmt2qv92] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a[b-wvvmt2qv92],
.footer-social a[b-wvvmt2qv92] {
    color: var(--footer-muted);
    text-decoration: none;
}

    .footer-links a:hover[b-wvvmt2qv92],
    .footer-social a:hover[b-wvvmt2qv92] {
        color: var(--link-hover-color);
    }

.footer-bottom[b-wvvmt2qv92] {
    border-top: 1px solid var(--footer-muted);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--footer-muted);
}
/* _content/Website_ErdelyiZoltan/Components/Comps/FounderVideo.razor.rz.scp.css */
.founder-video[b-0u10yp4vrt] {
    background: var(--background-color-second);
    padding: 5rem 1.5rem;
    text-align: center;
}

.founder-container[b-0u10yp4vrt] {
    max-width: 1000px;
    margin: 0 auto;
}

.eyebrow[b-0u10yp4vrt] {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-color);
    background: var(--background-color);
    padding: .4rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.founder-video h2[b-0u10yp4vrt] {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    color: var(--text-title-color);
    margin-bottom: 1rem;
}

.founder-video p[b-0u10yp4vrt] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: var(--line-height);
    margin-bottom: 2rem;
}

.responsive-video[b-0u10yp4vrt] {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .responsive-video iframe[b-0u10yp4vrt] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }
/* _content/Website_ErdelyiZoltan/Components/Comps/Hero.razor.rz.scp.css */
.hero[b-lv4u3v4sze] {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('/images/hero-bg4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
    overflow: hidden;
}

    .hero[b-lv4u3v4sze]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.6) 60%, transparent 100%);
        z-index: 1;
    }

.highlight[b-lv4u3v4sze] {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content[b-lv4u3v4sze] {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
    backdrop-filter: blur(2px);
    animation: fadeInUp-b-lv4u3v4sze 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

    .hero-content h1[b-lv4u3v4sze] {
        font-family: var(--font-heading);
        font-size: 3.2rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-content p[b-lv4u3v4sze] {
        font-family: var(--font-body);
        font-size: 1.25rem;
        color: var(--text-color);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-content img[b-lv4u3v4sze] {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

.hero-button[b-lv4u3v4sze] {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .hero-button:hover[b-lv4u3v4sze] {
        background-color: var(--primary-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero[b-lv4u3v4sze] {
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }

    .hero-content h1[b-lv4u3v4sze] {
        font-size: 2rem;
    }

    .hero-content p[b-lv4u3v4sze] {
        font-size: 1rem;
    }
}

@keyframes fadeInUp-b-lv4u3v4sze {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/Ingredients.razor.rz.scp.css */
.ingredients[b-be0w0g8k8t] {
    background: var(--background-color-second);
    padding: 5rem 1.5rem;
}

.ingredients-container[b-be0w0g8k8t] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow[b-be0w0g8k8t] {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    background: var(--background-color);
    padding: .4rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.ingredients h2[b-be0w0g8k8t] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
    margin: 0 0 2.5rem;
}

.ingredients-grid[b-be0w0g8k8t] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ingredient-card[b-be0w0g8k8t] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .ingredient-card:hover[b-be0w0g8k8t] {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.1);
    }

.ingredient-icon[b-be0w0g8k8t] {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ingredient-card h3[b-be0w0g8k8t] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.ingredient-card p[b-be0w0g8k8t] {
    color: var(--text-color);
    line-height: var(--line-height);
    font-size: .95rem;
    margin: 0;
}

@media (max-width: 992px) {
    .ingredients-grid[b-be0w0g8k8t] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ingredients-grid[b-be0w0g8k8t] {
        grid-template-columns: 1fr;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/NeumiHairShowcase.razor.rz.scp.css */
.hair-showcase[b-homjgjviyi] {
    background: var(--background-color);
    padding: 4rem 1.25rem;
}

.hair-container[b-homjgjviyi] {
    max-width: 1100px;
    margin: 0 auto;
}

.hair-top[b-homjgjviyi] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.hair-eyebrow[b-homjgjviyi] {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--background-color-second);
    padding: .45rem .8rem;
    border-radius: 999px;
    margin-bottom: .9rem;
    font-size: .9rem;
}

.hair-title[b-homjgjviyi] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 .6rem;
}

    .hair-title .brand[b-homjgjviyi] {
        color: var(--accent-color);
    }

.hair-lead[b-homjgjviyi] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: var(--line-height);
    font-size: 1.05rem;
    max-width: 58ch;
    margin: 0;
}

    .hair-lead + .hair-lead[b-homjgjviyi] {
        margin-top: 1rem;
    }
/* ne folyjon össze */

.hair-badges[b-homjgjviyi] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .6rem;
    margin: .75rem 0 0;
}

.hair-badge[b-homjgjviyi] {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    font-size: .85rem;
    color: var(--text-color);
}

.hair-right[b-homjgjviyi] {
    order: -1;
}

.responsive-video[b-homjgjviyi] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .responsive-video iframe[b-homjgjviyi] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

.hair-right .card[b-homjgjviyi] {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

@media (max-width: 900px) {
    .hair-top[b-homjgjviyi] {
        grid-template-columns: 1fr;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/NeumiSkinShowcase.razor.rz.scp.css */
/* Neumi Skin showcase */
.skin-showcase[b-yvvrnyxa8o] {
    background: var(--background-color-second);
    padding: 4rem 1.25rem;
}

.skin-container[b-yvvrnyxa8o] {
    max-width: 1100px;
    margin: 0 auto;
}

.skin-top[b-yvvrnyxa8o] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.skin-eyebrow[b-yvvrnyxa8o] {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--background-color);
    padding: .45rem .8rem;
    border-radius: 999px;
    margin-bottom: .9rem;
    font-size: .9rem;
}

.skin-title[b-yvvrnyxa8o] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 .6rem;
}

    .skin-title .brand[b-yvvrnyxa8o] {
        color: var(--accent-color);
    }

.skin-lead[b-yvvrnyxa8o] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: var(--line-height);
    font-size: 1.05rem;
    max-width: 58ch;
    margin: 0;
}

    /* kis ritmus, hogy ne folyjon egybe */
    .skin-lead + .skin-badges[b-yvvrnyxa8o] {
        margin-top: 1rem;
    }

.skin-badges[b-yvvrnyxa8o] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .6rem;
    margin: .25rem 0 1.1rem;
}

.skin-badge[b-yvvrnyxa8o] {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    font-size: .85rem;
    color: var(--text-color);
}

.cta-button[b-yvvrnyxa8o] {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-yvvrnyxa8o] {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }

.skin-right .card[b-yvvrnyxa8o] {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* responsive-video már van nálad – itt csak finomítás */
.skin-right .responsive-video[b-yvvrnyxa8o] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .skin-right .responsive-video iframe[b-yvvrnyxa8o] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

/* Responsive */
@media (max-width: 900px) {
    .skin-top[b-yvvrnyxa8o] {
        grid-template-columns: 1fr;
    }

    .skin-right[b-yvvrnyxa8o] {
        order: 3;
    }
    /* videó mehet lejjebb mobilon */
}
/* _content/Website_ErdelyiZoltan/Components/Comps/NutriSwishShowcase.razor.rz.scp.css */
.nutriswish-showcase[b-xnh28rpibu] {
    background: #e4f0f8;
    padding: 4rem 1.25rem;
    text-align: center;
}

.ns-container[b-xnh28rpibu] {
    max-width: 900px;
    margin: 0 auto;
}

.ns-text h2[b-xnh28rpibu] {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-title-color);
}

.ns-video[b-xnh28rpibu] {
    margin-bottom: 2rem;
    position: relative;
}

    .ns-video .responsive-video[b-xnh28rpibu] {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

        .ns-video .responsive-video iframe[b-xnh28rpibu] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

.cta-button[b-xnh28rpibu] {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-xnh28rpibu] {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }
/* _content/Website_ErdelyiZoltan/Components/Comps/ProductShowcaseVideo.razor.rz.scp.css */
/* --- Layout --- */
.product-showcase-video[b-ig7eyrdk1a] {
    background: var(--background-color);
    padding: 4.5rem 1.25rem 5.5rem;
}

.psv-container[b-ig7eyrdk1a] {
    max-width: 1100px;
    margin: 0 auto;
}

.psv-top[b-ig7eyrdk1a] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: start;
    margin-bottom: 2rem;
}

    .psv-top > .psv-left[b-ig7eyrdk1a] {
        grid-column: 1 / -1;
    }



/* --- Left (title/lead) --- */
.psv-eyebrow[b-ig7eyrdk1a] {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--background-color-second);
    padding: .45rem .8rem;
    border-radius: 999px;
    margin-bottom: .9rem;
    font-size: .9rem;
}

.product-showcase-video h2[b-ig7eyrdk1a] {
    font-family: var(--font-heading);
    color: var(--text-title-color);
    font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 .8rem;
}

.product-showcase-video .brand[b-ig7eyrdk1a] {
    color: var(--accent-color);
}

.psv-lead[b-ig7eyrdk1a] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: var(--line-height);
    font-size: 1.05rem;
    max-width: 56ch;
    margin: 0;
}

.psv-left .psv-lead + .psv-lead[b-ig7eyrdk1a] {
    margin-top: 1rem; /* legyen tér a bekezdések között */
}

/* Utolsó kiemelt mondat */
.psv-left .psv-lead strong[b-ig7eyrdk1a] {
    color: var(--accent-color);
    font-size: 1.1rem;
    display: inline-block;
    margin-top: .5rem;
}

/* --- Right (benefits card) --- */
.card[b-ig7eyrdk1a] {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    padding: 1.25rem 1.25rem;
    height: 100%;
}
/*
.psv-right {
    height: 50%;
    align-self: center;
    display: flex;
    align-items: center;
}

.psv-benefits {
    list-style: none;
    margin: auto 0;
    padding: 0;
    display: grid;
    gap: .8rem;
}

    .psv-benefits .benefit {
        display: flex;
        gap: .6rem;
        align-items: flex-start;
        color: var(--text-color);
        font-size: .98rem;
        line-height: 1.55;
    }

    .psv-benefits .dot {
        width: 10px;
        height: 10px;
        margin-top: .45rem;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, var(--secondary-color), var(--accent-color));
        box-shadow: 0 0 0 3px rgba(51,117,177,.10);
    }

    .psv-benefits .txt {
        display: block;
    }

        .psv-benefits .txt strong {
            font-weight: 700;
        }*/

.video-frame[b-ig7eyrdk1a] {
    position: relative;
}

.responsive-video[b-ig7eyrdk1a] {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 arány */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .responsive-video iframe[b-ig7eyrdk1a] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

/* --- Modal --- */
.psv-modal[b-ig7eyrdk1a] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.85);
    display: grid;
    place-items: center;
    animation: psvFade-b-ig7eyrdk1a .25s ease;
}

.psv-modal-content[b-ig7eyrdk1a] {
    position: relative;
    width: min(92vw, 960px);
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.5);
}

    .psv-modal-content video[b-ig7eyrdk1a] {
        width: 100%;
        height: 100%;
        display: block;
    }

.psv-close[b-ig7eyrdk1a] {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,.85);
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
}

@keyframes psvFade-b-ig7eyrdk1a {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .psv-top[b-ig7eyrdk1a] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .psv-right.card[b-ig7eyrdk1a]{
        height: 100%;
    }
}

.psv-lead[b-ig7eyrdk1a] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.06rem;
    max-width: min(90ch, 100%);
    margin: 0;
}

.psv-left .psv-lead + .psv-lead[b-ig7eyrdk1a] {
    margin-top: 1rem;
}

.psv-left .psv-lead strong[b-ig7eyrdk1a] {
    color: var(--accent-color);
    font-size: 1.1rem;
    display: inline-block;
    margin-top: .5rem;
}

.psv-container[b-ig7eyrdk1a] {
    max-width: 1200px;
    margin: 0 auto;
}

.psv-callout[b-ig7eyrdk1a] {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    font-display: swap;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

    .psv-callout strong[b-ig7eyrdk1a] {
        color: #fff;
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: .3px;
    }


@media (max-width: 900px) {
    .psv-top[b-ig7eyrdk1a],
    .psv-top.has-right[b-ig7eyrdk1a] {
        grid-template-columns: 1fr;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Comps/ProductVideo.razor.rz.scp.css */
.product-video[b-3rs9q9xpq7] {
    background: var(--background-color);
    padding: 5rem 1.5rem;
}

.video-container[b-3rs9q9xpq7] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-text[b-3rs9q9xpq7] {
    font-family: var(--font-body);
}

.eyebrow[b-3rs9q9xpq7] {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-color);
    background: var(--background-color-second);
    padding: .4rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.video-text h2[b-3rs9q9xpq7] {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    margin-bottom: 1rem;
    color: var(--text-title-color);
}

.video-text p[b-3rs9q9xpq7] {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: var(--line-height);
}

.cta-button[b-3rs9q9xpq7] {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-3rs9q9xpq7] {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }

.video-frame[b-3rs9q9xpq7] {
    position: relative;
}

.responsive-video[b-3rs9q9xpq7] {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 arány */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

    .responsive-video iframe[b-3rs9q9xpq7] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

@media (max-width: 992px) {
    .video-container[b-3rs9q9xpq7] {
        grid-template-columns: 1fr;
    }

    .video-frame[b-3rs9q9xpq7] {
        order: -1;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-maibxhawgy] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-maibxhawgy] {
    flex: 1;
}

.sidebar[b-maibxhawgy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-maibxhawgy] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-maibxhawgy]  a, .top-row[b-maibxhawgy]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-maibxhawgy]  a:hover, .top-row[b-maibxhawgy]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-maibxhawgy]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-maibxhawgy] {
        justify-content: space-between;
    }

    .top-row[b-maibxhawgy]  a, .top-row[b-maibxhawgy]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-maibxhawgy] {
        flex-direction: row;
    }

    .sidebar[b-maibxhawgy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-maibxhawgy] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-maibxhawgy]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-maibxhawgy], article[b-maibxhawgy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-maibxhawgy] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-maibxhawgy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Website_ErdelyiZoltan/Components/Layout/NavBar.razor.rz.scp.css */
.navbar[b-h7dbejtuiy] {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar-container[b-h7dbejtuiy] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
}

.logo-div[b-h7dbejtuiy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-div img[b-h7dbejtuiy] {
    height: 40px;
    width: 40px;
}

.navbar-logo[b-h7dbejtuiy] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.navbar-links[b-h7dbejtuiy] {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

    .navbar-links li a[b-h7dbejtuiy] {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .navbar-links li a:hover[b-h7dbejtuiy] {
            color: var(--accent-color);
        }

.buy-btn[b-h7dbejtuiy] {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

    .buy-btn:hover[b-h7dbejtuiy] {
        background-color: var(--primary-color);
        color: var(--accent-color) !important;
    }

/* --- Hamburger ikon --- */
.menu-toggle[b-h7dbejtuiy] {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

    .menu-toggle span[b-h7dbejtuiy] {
        display: block;
        height: 3px;
        background: var(--text-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Animáció nyitáskor */
    .menu-toggle.open span:nth-child(1)[b-h7dbejtuiy] {
        transform: translateY(8.5px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2)[b-h7dbejtuiy] {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3)[b-h7dbejtuiy] {
        transform: translateY(-8.5px) rotate(-45deg);
    }

.lang-toggle[b-h7dbejtuiy] {
    background: none;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--accent-color);
    transition: all 0.2s ease;
}

    .lang-toggle:hover[b-h7dbejtuiy] {
        background: var(--accent-color);
        color: #fff;
    }


/* --- Mobil nézet --- */
@media (max-width: 768px) {
    .menu-toggle[b-h7dbejtuiy] {
        display: flex;
    }

    .navbar-links[b-h7dbejtuiy] {
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 200px;
        text-align: center;
        display: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

        .navbar-links.active[b-h7dbejtuiy] {
            display: flex;
        }
}
/* _content/Website_ErdelyiZoltan/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-uro20ntztv] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-uro20ntztv] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-uro20ntztv] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-uro20ntztv] {
    font-size: 1.1rem;
}

.bi[b-uro20ntztv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-uro20ntztv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-uro20ntztv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-uro20ntztv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-uro20ntztv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-uro20ntztv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-uro20ntztv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-uro20ntztv]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-uro20ntztv]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-uro20ntztv]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-uro20ntztv] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-uro20ntztv] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-uro20ntztv] {
        display: none;
    }

    .nav-scrollable[b-uro20ntztv] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Pages/AdminLogin.razor.rz.scp.css */
:read-only[b-slwxb254hm] {
    --bg: #0f1016;
    --panel: #1b1d2a;
    --panel-2: #232539;
    --text: #f0f0f0;
    --muted: #a7aac0;
    --danger: #d9534f;
}

.admin-container[b-slwxb254hm] {
    max-width: 1024px;
    margin: 48px auto;
    margin-top: 200px;
    padding: 2rem;
    border-radius: 16px;
    background: var(--panel);
    color: var(--text);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

    .admin-container h2[b-slwxb254hm] {
        margin: 0 0 1rem;
        color: #fff
    }

h3[b-slwxb254hm], h4[b-slwxb254hm] {
    color: white;
}

.login-box[b-slwxb254hm] {
    display: flex;
    gap: .75rem;
    align-items: center
}

    .login-box .admin-input[b-slwxb254hm] {
        flex: 1
    }

.hint[b-slwxb254hm] {
    color: var(--muted);
    font-size: .9rem;
    margin-top: .5rem
}

.admin-input[b-slwxb254hm] {
    width: 100%;
    padding: .8rem .9rem;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #3a3c52;
    background: var(--panel-2);
    color: #fff;
    font-size: 16px;
}

    .admin-input:focus[b-slwxb254hm] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(103,173,91,.18)
    }

.textarea[b-slwxb254hm] {
    height: 150px;
    resize: vertical;
    line-height: 1.4
}

.label[b-slwxb254hm] {
    display: block;
    font-weight: 600;
    margin: 10px 0 6px
}

.check[b-slwxb254hm] {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin: 6px 0 12px;
    color: #e8e8e8
}

.admin-btn[b-slwxb254hm] {
    background: var(--primary-color);
    border: none;
    padding: .7rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    color: #000;
    font-size: 15px;
    transition: transform .05s ease, filter .15s ease;
}

    .admin-btn:hover[b-slwxb254hm] {
        filter: brightness(.95)
    }

    .admin-btn:active[b-slwxb254hm] {
        transform: translateY(1px)
    }

    .admin-btn.secondary[b-slwxb254hm] {
        background: #3b3e57
    }

    .admin-btn.ghost[b-slwxb254hm] {
        background: transparent;
        border: 1px solid #3a3c52;
        color: #dbe0ff
    }

    .admin-btn.logout[b-slwxb254hm] {
        background: var(--danger)
    }

    .admin-btn.danger[b-slwxb254hm] {
        background: var(--danger)
    }

    .admin-btn.small[b-slwxb254hm] {
        padding: .45rem .65rem;
        font-size: .9rem;
        border-radius: 8px
    }

.error[b-slwxb254hm] {
    margin-top: 8px;
    color: #ff7b7b;
    font-weight: 600
}

.info[b-slwxb254hm] {
    margin-top: 8px;
    color: #9be495;
    font-weight: 600
}

.dim[b-slwxb254hm] {
    color: var(--muted);
    font-size: .85rem
}

.toolbar[b-slwxb254hm] {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin: 1rem 0 1.25rem
}

    .toolbar .search[b-slwxb254hm] {
        margin: 0;
    }

.admin-grid[b-slwxb254hm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem
}

@media (max-width: 920px) {
    .admin-grid[b-slwxb254hm] {
        grid-template-columns: 1fr
    }
}

.editor[b-slwxb254hm], .preview[b-slwxb254hm] {
    padding: 1rem;
    border-radius: 12px;
    background: var(--panel-2);
    border: 1px solid #323558;
}

    .preview h4[b-slwxb254hm] {
        margin: 0 0 .6rem
    }

    .preview h2[b-slwxb254hm] {
        margin: .6rem 0 .4rem;
        color: var(--text)
    }

    .preview .preview-content[b-slwxb254hm] {
        color: #d6d8e7;
        white-space: pre-wrap;
        text-wrap: wrap;
        max-width: 100%;
        overflow-wrap: break-word; /* hosszú szavakat is tör */
        word-break: break-word; /* régebbi fallback */
    }

.thumb[b-slwxb254hm] {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: .6rem
}

.actions[b-slwxb254hm] {
    display: flex;
    gap: .6rem;
    margin-top: .4rem
}

.badge-row[b-slwxb254hm] {
    display: flex;
    gap: .5rem;
    margin-top: .6rem
}

.badge[b-slwxb254hm] {
    display: inline-block;
    padding: .2rem .5rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid #3a3d5a;
    color: #e9ecff;
    background: #2b2d44;
}

    .badge.ok[b-slwxb254hm] {
        border-color: #2c6d3a;
        background: #1d2a21
    }

    .badge.warn[b-slwxb254hm] {
        border-color: #7a642a;
        background: #2a2518
    }

    .badge.muted[b-slwxb254hm] {
        color: #b7bbd9;
        opacity: .8
    }

.list-title[b-slwxb254hm] {
    margin: 1.5rem 0 .6rem
}

.table-wrap[b-slwxb254hm] {
    overflow: auto;
    border: 1px solid #323558;
    border-radius: 12px
}

.posts-table[b-slwxb254hm] {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: var(--panel-2)
}

    .posts-table th[b-slwxb254hm], .posts-table td[b-slwxb254hm] {
        padding: .75rem .8rem;
        border-bottom: 1px solid #2f3150;
        vertical-align: top
    }

    .posts-table thead th[b-slwxb254hm] {
        position: sticky;
        top: 0;
        background: #20223a;
        z-index: 1;
        text-align: left
    }

    .posts-table .thumb-cell img[b-slwxb254hm] {
        width: 96px;
        height: 56px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #3a3c52
    }

    .posts-table .title[b-slwxb254hm] {
        font-weight: 700
    }

    .posts-table .excerpt[b-slwxb254hm] {
        color: #cdd1ef;
        font-size: .9rem;
        margin-top: .2rem
    }

.actions-cell[b-slwxb254hm] {
    white-space: nowrap
}

.confirm[b-slwxb254hm] {
    display: flex;
    align-items: center;
    gap: .5rem
}

.row-pending-delete[b-slwxb254hm] {
    background: #2a1f24
}

.empty[b-slwxb254hm] {
    padding: 1rem;
    border: 1px dashed #3a3d5a;
    border-radius: 12px;
    color: #cfd3f5;
    text-align: center
}







/* + add a meglévő css-hez */
.quill-wrapper .ql-toolbar[b-slwxb254hm] {
    border-radius: 10px 10px 0 0;
    background: #1f2238;
    border-color: #323558;
}

.quill-wrapper .ql-container[b-slwxb254hm] {
    border-radius: 0 0 10px 10px;
    background: var(--panel-2);
    color: #fff;
    border-color: #323558;
    min-height: 220px;
}

.quill-wrapper .ql-editor[b-slwxb254hm] {
    min-height: 200px;
    font-size: 16px;
}

/* preview: HTML render */
.preview .preview-content[b-slwxb254hm] {
    color: #d6d8e7;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.post-content img[b-slwxb254hm],
.preview .preview-content img[b-slwxb254hm] {
    width: 300px !important;
    height: auto;
    display: none;
    margin: 12px 0;
    border-radius: 10px;
}

/* BlogAdmin.razor.css */
[b-slwxb254hm] .post-content img,
[b-slwxb254hm] .preview .preview-content img,
[b-slwxb254hm] .quill-wrapper .ql-editor img {
    max-width: 100%;
    width: 300px; /* ha fix 300px kell; különben ezt töröld */
    height: auto;
    display: block; /* a te mintádban 'display:none' volt – az elrejti a képet */
    margin: 12px 0;
    border-radius: 10px;
}

/* videók (iframe/ql-video) */
[b-slwxb254hm] .post-content iframe,
[b-slwxb254hm] .preview .preview-content iframe,
[b-slwxb254hm] .quill-wrapper .ql-editor .ql-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border: 0;
    border-radius: 10px;
    margin: 12px 0;
    max-width: 100%;
}
/* _content/Website_ErdelyiZoltan/Components/Pages/Blog.razor.rz.scp.css */
/* ===== HERO ===== */
.blog-hero[b-cr9livgxw1] {
    position: relative;
    display: grid;
    place-items: end center;
    padding: 2.5rem 1rem 2rem;
    min-height: clamp(260px, 38vw, 420px);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

/*    .blog-hero.noimg {
        background: none !important;
        min-height: auto;
        padding: 2rem 1rem 1.25rem;
    }*/

    /* Overlay hátul, tartalom elöl */
    .blog-hero[b-cr9livgxw1]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 80%), radial-gradient(900px 260px at 50% -10%, rgba(0,0,0,0.28), transparent 60%);
        z-index: 0;
    }

.hero-inner[b-cr9livgxw1] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.hero-date[b-cr9livgxw1] {
    display: inline-block;
    padding: .35rem .6rem;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .3px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    margin-bottom: .8rem;
}

.hero-title[b-cr9livgxw1] {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 .5rem 0;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
    color: white;
}

.hero-meta[b-cr9livgxw1] {
    opacity: .95;
    font-weight: 600;
    color: white;
}

/* ===== TARTALOMKÁRTYA (finom ráúszás) ===== */
.blog-card[b-cr9livgxw1] {
    position: relative;
    max-width: 900px;
    margin: clamp(-56px,-6vw,-32px) auto 2.5rem;
    background: var(--background-color);
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,0.04);
    background-clip: padding-box;
}

/* ===== TIPÓ ===== */
.blog-content[b-cr9livgxw1] {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.85;
}

    .blog-content p[b-cr9livgxw1] {
        margin: 1rem 0;
    }

        .blog-content p:first-of-type[b-cr9livgxw1]::first-letter {
            float: left;
            font-family: var(--font-heading);
            font-size: 3rem;
            line-height: .9;
            padding: .15rem .5rem 0 .1rem;
            margin-right: .25rem;
            color: var(--text-title-color);
        }

    /* Képek a szövegben */
    [b-cr9livgxw1] .blog-content img {
        width: 400px;
        height: auto;
        border-radius: 12px;
        display: block;
        margin: 1rem auto;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }

[b-cr9livgxw1] .ql-video {
    width: 80% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    border-radius: 12px;
    display: block;
    margin: 1rem auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

    /* Címsorok, listák */
    .blog-content h2[b-cr9livgxw1], .blog-content h3[b-cr9livgxw1], .blog-content h4[b-cr9livgxw1] {
        font-family: var(--font-heading);
        color: var(--text-title-color);
        margin: 1.4rem 0 .6rem;
    }

    .blog-content ul[b-cr9livgxw1], .blog-content ol[b-cr9livgxw1] {
        padding-left: 1.3rem;
        margin: .75rem 0 1rem;
    }

    .blog-content li[b-cr9livgxw1] {
        margin: .25rem 0;
    }

    /* Blockquote */
    .blog-content blockquote[b-cr9livgxw1] {
        margin: 1.2rem 0;
        padding: 1rem 1.2rem;
        background: var(--background-color-second);
        border-left: 4px solid var(--primary-color);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,.05);
        font-style: italic;
    }

    /* Kódblokk */
    .blog-content pre[b-cr9livgxw1], .blog-content code[b-cr9livgxw1] {
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    }

    .blog-content pre[b-cr9livgxw1] {
        background: #0b0f16;
        color: #e7eaf1;
        padding: 1rem;
        border-radius: 12px;
        overflow-x: auto;
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

    .blog-content code[b-cr9livgxw1] {
        background: rgba(0,0,0,.06);
        border-radius: 6px;
        padding: .1rem .35rem;
    }

/* ===== LÁBLÉC ===== */
.blog-footer[b-cr9livgxw1] {
    margin-top: 1.6rem;
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: transparent !important;
}

.blog-back[b-cr9livgxw1] {
    display: inline-block;
    padding: .6rem 1rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: background .25s ease, transform .15s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

    .blog-back:hover[b-cr9livgxw1] {
        background: var(--accent-color);
        transform: translateY(-1px);
    }

.share[b-cr9livgxw1] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.share-label[b-cr9livgxw1] {
    color: #666;
    font-weight: 600;
    margin-right: .25rem;
}

.share-btn[b-cr9livgxw1] {
    display: inline-block;
    padding: .45rem .8rem;
    background: var(--background-color-second);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-title-color);
    transition: transform .15s ease, box-shadow .25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

    .share-btn:hover[b-cr9livgxw1] {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0,0,0,.10);
    }

/* ===== SKELETON ===== */
.article-skeleton[b-cr9livgxw1] {
    padding: 0;
}

.sk-hero[b-cr9livgxw1] {
    height: clamp(240px, 36vw, 400px);
    background: linear-gradient(120deg, #e9ece6, #f2f5f0);
    overflow: hidden;
}

.sk-card[b-cr9livgxw1] {
    max-width: 900px;
    margin: clamp(-56px,-6vw,-32px) auto 2.5rem;
    background: var(--background-color);
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.sk-title[b-cr9livgxw1], .sk-meta[b-cr9livgxw1], .sk-line[b-cr9livgxw1] {
    height: 14px;
    background: linear-gradient(90deg, #eceff4 0%, #f5f7fa 50%, #eceff4 100%);
    background-size: 200% 100%;
    animation: shimmer-b-cr9livgxw1 1.4s infinite;
    border-radius: 10px;
    margin: .5rem 0;
}

.sk-title[b-cr9livgxw1] {
    height: 22px;
    width: 75%;
    margin-top: .2rem;
}

.sk-meta[b-cr9livgxw1] {
    width: 25%;
}

.sk-line[b-cr9livgxw1] {
    width: 100%;
}

    .sk-line.short[b-cr9livgxw1] {
        width: 60%;
    }

@keyframes shimmer-b-cr9livgxw1 {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== NOT FOUND ===== */
.notfound[b-cr9livgxw1] {
    text-align: center;
}
/* _content/Website_ErdelyiZoltan/Components/Pages/Blogs.razor.rz.scp.css */
.blog-section[b-unk4hf66yy] {
    padding: 3rem 1.5rem;
    background: var(--background-color);
}

.blog-title[b-unk4hf66yy] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-title-color);
    position: relative;
}

    .blog-title[b-unk4hf66yy]::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 0.8rem auto 0;
        border-radius: 2px;
    }

.blog-grid[b-unk4hf66yy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card[b-unk4hf66yy] {
    background: var(--background-color-second);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 400px;
    justify-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate; /* a shine csík miatt */
}

    .blog-card:hover[b-unk4hf66yy] {
        transform: translateY(-6px);
        box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    }

.blog-image-container[b-unk4hf66yy] {
    position: relative;
    overflow: hidden;
}

.blog-thumbnail[b-unk4hf66yy] {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-thumbnail[b-unk4hf66yy] {
    transform: scale(1.06);
}

/* Dátum badge */
.date-badge[b-unk4hf66yy] {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.18);
    letter-spacing: 0.3px;
}

/* Shine efekt a képen */
.image-shine[b-unk4hf66yy] {
    position: absolute;
    top: -20%;
    left: -40%;
    width: 60%;
    height: 140%;
    transform: rotate(25deg);
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease, left 0.6s ease;
    pointer-events: none;
}

.blog-card:hover .image-shine[b-unk4hf66yy] {
    opacity: 1;
    left: 120%;
}

/* Tartalom */
.blog-content[b-unk4hf66yy] {
    padding: 1.2rem 1.4rem 1rem;
    height: 90%;
}

    .blog-content h2[b-unk4hf66yy] {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        margin: 0 0 0.4rem;
        color: var(--text-title-color);
    }

.blog.blog-content p[b-unk4hf66yy] {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Meta sor: pici dot + olvasási idő */
.blog-meta[b-unk4hf66yy] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,0.6);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.meta-dot[b-unk4hf66yy] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
}

.blog-content p[b-unk4hf66yy] {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Akciósor alul: gomb jobbra */
.blog-actions[b-unk4hf66yy] {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.25rem;
}

.blog-button[b-unk4hf66yy] {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

    .blog-button:hover[b-unk4hf66yy] {
        background: var(--accent-color);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

/* Látványelem: gradiens akcentcsík a kártya alján */
.accent-bar[b-unk4hf66yy] {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 12px 12px;
    border-radius: 999px;
    opacity: 0.85;
    transition: opacity 0.35s ease, filter 0.35s ease;
}

.blog-card:hover .accent-bar[b-unk4hf66yy] {
    opacity: 1;
    filter: saturate(1.2);
}

/* Finom háttérmintázat (opcionális, nem tolakodó) */
.blog-section[b-unk4hf66yy] {
    background-image: radial-gradient(1200px 400px at 50% -20%, rgba(0,0,0,0.04), transparent 60%);
}
/* _content/Website_ErdelyiZoltan/Components/Pages/Privacy.razor.rz.scp.css */
:host[b-7c338l89gw] {
    display: block;
    color: #0f172a;
    font-family: system-ui, sans-serif;
}

h1[b-7c338l89gw], h2[b-7c338l89gw] {
    line-height: 1.2;
    margin: 0 0 1rem;
}

h1[b-7c338l89gw] {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 3px solid rgba(0, 0, 0, .08);
}

em[b-7c338l89gw] {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    color: #475569;
}

h2[b-7c338l89gw] {
    font-size: clamp(1.05rem, 1.1vw + .8rem, 1.35rem);
    font-weight: 700;
    margin-top: 2rem;
}

p[b-7c338l89gw], li[b-7c338l89gw] {
    line-height: 1.6;
}

section[b-7c338l89gw] {
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    max-width: 880px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,.06);
}

ul[b-7c338l89gw] {
    padding-left: 1.2rem;
    margin: .5rem 0 0;
}

a[b-7c338l89gw] {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color .2s ease, color .2s ease;
}

    a:hover[b-7c338l89gw] {
        border-bottom-color: currentColor;
    }

    a:focus-visible[b-7c338l89gw] {
        outline: 3px solid rgba(37,99,235,0.4);
        outline-offset: 2px;
    }

section p strong[b-7c338l89gw] {
    background: #f8fafc;
    padding: .12rem .45rem;
    border-radius: .5rem;
}

details[b-7c338l89gw] {
    max-width: 880px;
    margin: 2rem auto 1.5rem;
}

    details > summary[b-7c338l89gw] {
        cursor: pointer;
        font-weight: 700;
        padding: 1rem 1.5rem;
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 14px;
        background: #f8fafc;
    }

    details > p[b-7c338l89gw] {
        margin: 0;
        border: 1px solid rgba(0,0,0,.08);
        border-top: none;
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
        padding: 1rem 1.5rem;
        background: #ffffff;
        box-shadow: 0 6px 22px rgba(0,0,0,.06);
    }

hr[b-7c338l89gw] {
    max-width: 880px;
    margin: 2rem auto 1.5rem;
    border: none;
    border-top: 1px solid rgba(0,0,0,.08);
}

@media (max-width: 520px) {
    section[b-7c338l89gw] {
        padding: 1rem;
    }
}
/* _content/Website_ErdelyiZoltan/Components/Pages/PrivacyContact.razor.rz.scp.css */
.privacy-section[b-tujjgxmf50] {
    padding: 2rem;
    background: #f9f9f9;
    color: #333;
}

.privacy-container[b-tujjgxmf50] {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.6;
}

h1[b-tujjgxmf50], h2[b-tujjgxmf50] {
    color: #444;
    margin-top: 1.5rem;
}

ul[b-tujjgxmf50] {
    margin: 0.5rem 0 1rem 1.5rem;
}

.print-btn[b-tujjgxmf50] {
    margin-top: 2rem;
    text-align: center;
}

    .print-btn button[b-tujjgxmf50] {
        background: #444;
        color: #fff;
        padding: 0.6rem 1.2rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.2s;
    }

        .print-btn button:hover[b-tujjgxmf50] {
            background: #222;
        }
/* _content/Website_ErdelyiZoltan/Components/Pages/PrivacyContactRo.razor.rz.scp.css */
.privacy-section[b-0tg6k8qzhr] {
    padding: 2rem;
    background: #f9f9f9;
    color: #333;
}

.privacy-container[b-0tg6k8qzhr] {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.6;
}

h1[b-0tg6k8qzhr], h2[b-0tg6k8qzhr] {
    color: #444;
    margin-top: 1.5rem;
}

ul[b-0tg6k8qzhr] {
    margin: 0.5rem 0 1rem 1.5rem;
}

.print-btn[b-0tg6k8qzhr] {
    margin-top: 2rem;
    text-align: center;
}

    .print-btn button[b-0tg6k8qzhr] {
        background: #444;
        color: #fff;
        padding: 0.6rem 1.2rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.2s;
    }

        .print-btn button:hover[b-0tg6k8qzhr] {
            background: #222;
        }
