/* ==========================================================================
   9. Globális Beviteli Mezők (Form Inputs) Formázása
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-sharp);
    background-color: var(--bg-card-alt);
    color: var(--steel-900); /* volt --steel-850: sosem létezett a skálán (50..900) */
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-orange);
    background-color: var(--bg-card);
}

/* Auth mezők ikon-helyének visszaállítása a globális input szabály felülírása után */
.auth-input-wrapper input.auth-input[type="text"],
.auth-input-wrapper input.auth-input[type="email"],
.auth-input-wrapper input.auth-input[type="password"] {
    padding-left: 38px;
}

input[type="file"] {
    padding: 5px 12px;
    display: flex;
    align-items: center;
    background-color: var(--bg-card-alt);
    border: 1px solid var(--steel-200);
    color: var(--steel-600);
    border-radius: var(--radius-sharp);
    height: 38px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
}

textarea {
    height: auto;
    min-height: 100px;
    padding: 10px 12px;
    resize: vertical;
}


/* ==========================================================================
   10. Site Footer — csiszolt sötét fém + pezsgő, rendezett oszlopokkal
   Felépítés: márka + hírlevél (felső sáv) → 4 link-oszlop → alsó sáv.
   Ugyanaz az anyagcsalád, mint a fejléc / lejátszó / AI-elemzés panel.
   ========================================================================== */
.site-footer {
    position: relative;
    background: #111111;   /* egységes, lapos fekete — nincs színátmenet */
    color: rgba(236, 231, 219, 0.55);
    padding: 46px 40px 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(191, 176, 138, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 100%;
    max-width: none;   /* edge-to-edge, mint a fejléc — csak a .site-footer paddingje keretez */
    margin: 0;
}

/* --- Link-oszlopok (felülre került) --- */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 40px;
    padding-bottom: 40px;
    background: linear-gradient(to right,
        rgba(191, 176, 138, 0.35), rgba(191, 176, 138, 0.08) 55%, transparent)
        bottom left / 100% 1px no-repeat;
}

/* --- Középső sáv: márka + hírlevél — egységes fekete háttéren,
   panel és színátmenet nélkül --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px 60px;
    padding: 34px 0 30px;
}

.footer-brand {
    flex: 1 1 300px;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* inline-flex, nem inline-block: a szókép mellé került AI-jel (kt_logo_mark)
   különben külön sorba törne. */
.footer-brand-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* A 48px-es fejléc-logó a footerben kisebb léptékben él */
.footer-brand .logo-kakastech-frontend {
    font-size: 32px;
    letter-spacing: -0.8px;
}

.footer-tagline {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(236, 231, 219, 0.55);
}

/* Közösségi ikonok a márka-blokkban (kt_social_links) */
.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-social-label {
    font-size: 13px;
    color: rgba(236, 231, 219, 0.55);
    margin-right: 2px;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sharp, 4px);
    border: 1px solid rgba(191, 176, 138, 0.30);
    color: #bfb08a;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-social-link:hover {
    background: rgba(191, 176, 138, 0.12);
    border-color: #bfb08a;
    color: #e9dcbb;
    transform: translateY(-1px);
}
.footer-social-link i,
.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav-title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-on-dark);
    background: linear-gradient(to right, rgba(191, 176, 138, 0.4), transparent 70%)
        bottom left / 100% 1px no-repeat;
}

.footer-nav-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(236, 231, 219, 0.6);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

.footer-nav-link:hover {
    color: var(--accent-on-dark);
    transform: translateX(2px);
}

.footer-nav-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: rgba(191, 176, 138, 0.65);
    transition: color 0.15s ease;
}

.footer-nav-link:hover svg {
    color: var(--accent-on-dark);
}

/* --- Alsó sáv: copyright + „Powered by" a lejátszó nyelvén --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-top: 20px;
    background: linear-gradient(to right,
        rgba(191, 176, 138, 0.25), rgba(191, 176, 138, 0.05) 55%, transparent)
        top left / 100% 1px no-repeat;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(236, 231, 219, 0.4);
    margin: 0;
    letter-spacing: 0.02em;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.footer-powered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Mini pezsgő EQ — a hangoscikk-jelölő hullámának footer-változata */
.footer-powered-eq {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: 11px;
}

.footer-powered-eq span {
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, #fdf7e6 0%, #e2d3a8 30%, #bfb08a 60%, #7a7058 100%);
    box-shadow: 0 0 4px rgba(191, 176, 138, 0.45);
}

.footer-powered-eq span:nth-child(1),
.footer-powered-eq span:nth-child(3) { height: 55%; }
.footer-powered-eq span:nth-child(2) { height: 100%; }

.footer-powered-text {
    font-size: 12px;
    color: rgba(236, 231, 219, 0.35);
    letter-spacing: 0.03em;
}

.footer-powered-brand {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--accent-on-dark);
    letter-spacing: 0.04em;
}

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

@media (max-width: 640px) {
    .site-footer {
        padding: 36px 20px 20px;
    }

    .footer-top {
        gap: 24px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}


/* ==========================================================================
   Adatvédelmi tájékoztató oldal
   ========================================================================== */
.privacy-container {
    max-width: 1100px;
    margin: 24px auto 40px;
    padding: 0 16px;
}

.privacy-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--steel-100);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.privacy-tab {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    color: var(--steel-500);
    background: var(--bg-card-alt);
    border: 1px solid var(--steel-100);
    transition: all 0.15s ease;
    cursor: pointer;
}

.privacy-tab:hover {
    color: var(--steel-900);
    border-color: var(--steel-300);
    background: var(--steel-100);
}

.privacy-tab.active {
    color: #ffffff;
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.privacy-card {
    padding: 40px;
    font-size: 14px;
    line-height: 1.7;
    color: #2a2a2a;
}

.privacy-meta {
    display: flex;
    gap: 24px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(191, 176, 138, 0.06) 0%, rgba(191, 176, 138, 0.02) 100%);
    border-left: 3px solid var(--accent-orange);
    border-radius: var(--radius-sharp, 4px);
    font-size: 12px;
    color: var(--steel-600);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.privacy-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--steel-900);
    margin: 32px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-orange);
    letter-spacing: -0.3px;
    text-transform: none;
}

.privacy-h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--steel-900);
    margin: 20px 0 8px 0;
    text-transform: none;
    letter-spacing: 0;
}

.privacy-card p {
    margin: 0 0 14px 0;
}

.privacy-card a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(191, 176, 138, 0.3);
    transition: border-color 0.15s ease;
}

.privacy-card a:hover {
    border-bottom-color: var(--accent-orange);
}

.privacy-controller {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-sharp, 4px);
    margin: 12px 0 16px;
}

.privacy-controller p {
    margin: 0 0 6px 0;
    font-size: 13px;
}

.privacy-controller p:last-child {
    margin-bottom: 0;
}

.privacy-note {
    font-size: 12.5px;
    color: var(--steel-500);
    font-style: italic;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.02);
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.privacy-list {
    margin: 8px 0 16px 0;
    padding-left: 22px;
}

.privacy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 20px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sharp, 4px);
    overflow: hidden;
}

.privacy-table thead th {
    background: var(--charcoal);
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: top;
    line-height: 1.55;
}

.privacy-table tbody tr:last-child td {
    border-bottom: none;
}

.privacy-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.015);
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 24px;
    }
    .privacy-table {
        font-size: 12px;
    }
    .privacy-table thead th,
    .privacy-table tbody td {
        padding: 8px;
    }
}




/* ============================================================
   FOOTER HÍRLEVÉL-FELIRATKOZÁS — a footer-top jobb oszlopa
   ============================================================ */
.footer-newsletter {
    flex: 1 1 440px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-newsletter-text strong {
    font-size: 18px;
    color: var(--charcoal-text-strong, #fff);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
}
.footer-newsletter-text span {
    font-size: 14.5px;
    color: #a0a0a0;
    line-height: 1.55;
}
.footer-newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
}
.footer-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 12px 18px;
    font-size: 14.5px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-sharp, 4px);
    background: rgba(10, 10, 10, 0.7);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-newsletter-form input[type="email"]::placeholder {
    color: #666666;
}
.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-on-dark);
    box-shadow: 0 0 16px rgba(191, 176, 138, 0.25);
    background: #050505;
}
.footer-newsletter-form .btn-primary {
    background: var(--accent-on-dark);   /* lapos pezsgő — gradiens tilos */
    border: none;
    color: #111111;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sharp, 4px);
    box-shadow: 0 4px 15px rgba(191, 176, 138, 0.30);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.footer-newsletter-form .btn-primary:hover {
    background: #d3c49e;
    box-shadow: 0 6px 20px rgba(191, 176, 138, 0.45);
    transform: translateY(-2px);
}
.footer-newsletter-form .btn-primary:active {
    transform: translateY(0);
}
.footer-newsletter-msg {
    flex: 1 1 100%;
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--charcoal-text, #c6c6c6);
    min-height: 1em;
}
.footer-newsletter-msg.is-error { color: #ff8a70; }

/* ============================================================
   MOBILE FOOTER BAR & DRAWER STYLES
   ============================================================ */

/* Alaphelyzetben (asztali gépen) elrejtjük */
.mobile-footer-bar,
.mobile-footer-drawer,
.mobile-footer-drawer-backdrop {
    display: none;
}

@media (max-width: 768px) {
    /* Testreszabjuk a fő lábléc konténert — !important nélkül: a footer
       törzs-szabályai ebben a fájlban, e blokk ELŐTT vannak, így a
       media-szabály sorrendben nyer */
    .site-footer {
        padding: 0;
        margin-top: 0;
        border-top: none;
        background: none;
        box-shadow: none;
    }

    .site-footer .footer-container > .footer-nav,
    .site-footer .footer-container > .footer-top,
    .site-footer .footer-container > .footer-bottom {
        display: none;
    }

    /* Biztosítjuk a helyet a fixen rögzített láblécnek */
    body {
        padding-bottom: 60px;
    }

    /* Megjelenítjük a mobil lábléc sávot (mint a header) */
    .mobile-footer-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(180deg, #242424 0%, #161616 100%);
        border-top: 3px solid;
        border-image: linear-gradient(90deg, #bfb08a 0%, #ecdcb5 50%, #bfb08a 100%) 1;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
        padding: 0 20px;
        z-index: 999;
        box-sizing: border-box;
    }

    /* Bal és jobb oldali igazítás */
    .mobile-footer-left,
    .mobile-footer-right {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    /* Favicon */
    .mobile-footer-favicon {
        width: 30px;
        height: 30px;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    /* Menü gomb (hamburger) & Hírlevél indító gomb */
    .mobile-footer-menu-toggle,
    .mobile-footer-newsletter-toggle {
        background: none;
        border: none;
        color: rgba(236, 231, 219, 0.7);
        cursor: pointer;
        padding: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease, transform 0.2s ease;
    }
    
    .mobile-footer-menu-toggle svg,
    .mobile-footer-newsletter-toggle svg {
        width: 22px;
        height: 22px;
    }

    .mobile-footer-menu-toggle:hover,
    .mobile-footer-newsletter-toggle:hover,
    .mobile-footer-newsletter-toggle.is-active {
        color: var(--accent-on-dark);
        transform: scale(1.05);
    }

    /* Hírlevél lenyíló/felnyíló panel a sáv felett (mint a kereső) */
    .mobile-footer-newsletter-trigger-wrap {
        position: relative;
    }

    .mobile-footer-newsletter-dropdown {
        display: none;
        position: absolute;
        bottom: 50px;
        right: -10px;
        width: 290px;
        background: #1a1a1a;
        border: 1px solid rgba(191, 176, 138, 0.3);
        border-radius: var(--radius-sharp, 4px);
        padding: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        z-index: 1001;
        box-sizing: border-box;
        animation: footerPopUp 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-footer-newsletter-dropdown.is-open {
        display: block;
    }

    @keyframes footerPopUp {
        from {
            opacity: 0;
            transform: translateY(10px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .mobile-footer-newsletter-form {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    .mobile-footer-newsletter-form input[type="email"] {
        flex: 1;
        min-width: 0;
        padding: 8px 12px;
        font-size: 13.5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        background: #0d0d0d;
        color: #fff;
        font-family: 'Outfit', sans-serif;
    }

    .mobile-footer-newsletter-form input[type="email"]:focus {
        outline: none;
        border-color: var(--accent-on-dark);
        background: #050505;
    }

    .mobile-footer-newsletter-form .btn-primary {
        background: var(--accent-on-dark);   /* lapos pezsgő — gradiens tilos */
        border: none;
        color: #111;
        padding: 8px 16px;
        font-weight: 700;
        border-radius: 4px;
        font-size: 13.5px;
        cursor: pointer;
    }

    .mobile-footer-newsletter-msg {
        margin: 6px 0 0;
        font-size: 12.5px;
        color: #c6c6c6;
    }
    
    .mobile-footer-newsletter-msg.is-error {
        color: #ff8a70;
    }

    /* Felnyíló menü háttere (backdrop) */
    .mobile-footer-drawer-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-footer-drawer-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    /* Felnyíló helyett balról benyíló oldalmenü (drawer) */
    .mobile-footer-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100%;
        background: #111111;
        border-right: 1px solid rgba(191, 176, 138, 0.22);
        /* A becsúszó mobilmenü külső éle. Volt 16px — a "max 5px" szabály
           alól ez sem kivétel, különben pont a legnagyobb felületen bomlik
           meg a rendszer. */
        border-radius: 0 4px 4px 0;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .mobile-footer-drawer.is-open {
        transform: translateX(0);
    }

    .mobile-footer-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-footer-drawer-title {
        font-size: 15px;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        color: var(--accent-on-dark);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .mobile-footer-drawer-close {
        background: none;
        border: none;
        color: rgba(236, 231, 219, 0.5);
        cursor: pointer;
        padding: 4px;
        display: inline-flex;
    }

    .mobile-footer-drawer-close svg {
        width: 20px;
        height: 20px;
    }

    .mobile-footer-drawer-content {
        flex: 1;
        overflow-y: auto;
        padding: 20px 20px 60px;
    }

    .mobile-footer-drawer-nav {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .mobile-footer-drawer-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-footer-drawer-col-title {
        margin: 0;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--accent-on-dark);
        letter-spacing: 0.1em;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(191, 176, 138, 0.15);
    }

    .mobile-footer-drawer-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-footer-drawer-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 14.5px;
        color: rgba(236, 231, 219, 0.6);
        text-decoration: none;
        padding: 2px 0;
    }

    .mobile-footer-drawer-link svg {
        width: 14px;
        height: 14px;
        color: rgba(191, 176, 138, 0.65);
    }

    .mobile-footer-drawer-foot {
        margin-top: 30px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-footer-drawer-copyright {
        font-size: 12.5px;
        color: rgba(236, 231, 219, 0.35);
        margin: 0;
    }

    body.mobile-footer-drawer-open {
        overflow: hidden;
    }

    /* (A süti újranyitó ikon mobil-elrejtése a responsive.css-be került —
       a gomb display:flex törzs-szabálya az 05-ben van, ami e fájl UTÁN
       töltődik, ezért innen csak !important-tal tudott volna nyerni.) */
}

/* Mobil lábléc hírlevél-gomb ikonpár: alapból a boríték látszik, az X-et
   a JS kapcsolja (style.display) — az induló állapot itt él, nem a markupban */
.mobile-footer-newsletter-toggle .mail-icon-close {
    display: none;
}

/* Robotvédett e-mail linkek félkövér változata (a footer JS teszi rá) */
.protected-email-strong {
    font-weight: 600;
}

/* Süti-szabályzat: kategória-cím, táblázat-oszlopok, üres-jegyzet, CTA-sor
   (a korábbi inline style-ok kivezetve a markupból) */
.privacy-h3--cat {
    margin-top: 24px;
    color: var(--accent-orange);
}

.privacy-table--cookies th:nth-child(1) { width: 20%; }
.privacy-table--cookies th:nth-child(2) { width: 25%; }
.privacy-table--cookies th:nth-child(3) { width: 40%; }
.privacy-table--cookies th:nth-child(4) { width: 15%; }

.privacy-note-empty {
    font-style: italic;
    font-size: 13px;
    color: var(--steel-400);
    padding-left: 10px;
}

.privacy-cta-row {
    margin: 16px 0 20px;
}

/* ==========================================================================
   Cookie banner — audit lista a kategóriák alatt
   ÁTHELYEZVE a 06-admin-embedded.css-ből: ezek PUBLIKUS süti-sáv szabályok,
   nem admin-stílusok. Az áthelyezés után a 06-admin-embedded.css tisztán
   admin-only (.ov-* = /admin/oldal-vezerlo), ezért a publikus fejléc már
   nem tölti be. Ütközés nincs: ezeket a szelektorokat egyetlen másik modul
   sem definiálja (a 05-home-buttons .cookie-cat-ROW-ja külön szelektor).
   ========================================================================== */
.cookie-cat-details {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-sharp, 4px);
    border-left: 2px solid rgba(191, 176, 138, 0.3);
}

.cookie-cat-details summary {
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-orange);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cookie-cat-details summary:hover {
    color: var(--accent-orange-strong);
}

.cookie-cat-list {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
}

.cookie-cat-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 11px;
    line-height: 1.5;
}

.cookie-cat-list li:last-child { border-bottom: none; }

.cookie-cat-list code {
    background: rgba(191, 176, 138, 0.08);
    color: var(--accent-orange-strong);
    padding: 1px 6px;
    border-radius: 2px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 600;
}

.cookie-cat-list-prov {
    color: var(--steel-500);
    margin-left: 4px;
}

.cookie-cat-list-ret {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    color: var(--steel-600);
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 10px;
    margin-left: 4px;
}

.cookie-cat-list-purpose {
    margin-top: 3px;
    color: var(--steel-500);
    font-size: 11px;
    line-height: 1.5;
}

