/* ==========================================================================
   Consent Gate – Paywall-Overlay für den Kleingartenfinder
   Design-System: Theme-Farben #69a02c, Lato, border-radius 3px/6px
   Mobile-first: Basis = ≤480px, Erweiterungen per min-width
   ========================================================================== */

/* --- Variablen ----------------------------------------------------------- */
:root {
    --cgate-primary:      #69a02c;
    --cgate-green:        #69a02c;
    --cgate-green-hover:  #77af3a;
    --cgate-orange:       #f17300;
    --cgate-text:         #333333;
    --cgate-text-muted:   #666666;
    --cgate-backdrop:     rgba(0, 0, 0, 0.35);
    --cgate-card-bg:      #ffffff;
    --cgate-border:       #e0e0e0;
}

/* --- Backdrop ------------------------------------------------------------ */
.cgate-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;   /* Mobile: Bottom-Sheet */
    justify-content: center;
}

/* --- Card ---------------------------------------------------------------- */
.cgate-card {
    background: var(--cgate-card-bg);
    width: calc(100% - 20px);
    margin: 0 10px;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    padding: 24px 20px;
    font-family: 'Lato', 'Lato-Regular', Arial, sans-serif;
    color: var(--cgate-text);
    max-height: 92vh;
    overflow-y: auto;
}

/* --- Logo-Zeile ---------------------------------------------------------- */
.cgate-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.cgate-logo-icon {
    font-size: 20px;
    line-height: 1;
}

.cgate-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--cgate-primary);
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* --- Heading ------------------------------------------------------------- */
.cgate-title {
    font-family: 'Lato', 'Lato-Black', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--cgate-text);
    margin: 0 0 18px;
    line-height: 1.25;
}

/* --- Feature-Liste ------------------------------------------------------- */
.cgate-features {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.cgate-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cgate-features li:last-child {
    border-bottom: none;
}

.cgate-feature-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Brücken-Satz -------------------------------------------------------- */
.cgate-bridge {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
    text-align: center;
}

/* --- Haupt-Button -------------------------------------------------------- */
.cgate-btn--primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    background: var(--cgate-green);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-family: 'Lato', 'Lato-Black', Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    padding: 14px 20px;
    transition: background-color 0.2s ease;
    text-align: center;
    gap: 4px;
    line-height: 1.3;
}

.cgate-btn--primary:hover,
.cgate-btn--primary:focus {
    background: var(--cgate-green-hover);
    outline: 3px solid var(--cgate-green);
    outline-offset: 2px;
}

.cgate-btn--primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cgate-btn-sub {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* --- Divider ------------------------------------------------------------ */
.cgate-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--cgate-text-muted);
    font-size: 13px;
}

.cgate-divider::before,
.cgate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cgate-border);
}

/* --- Premium-Abschnitt -------------------------------------------------- */
.cgate-premium-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: none;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 13px;
    color: var(--cgate-text-muted);
    margin: 4px 0 0;
}

.cgate-premium-toggle:hover,
.cgate-premium-toggle:focus {
    color: var(--cgate-text);
}

.cgate-premium-toggle .cgate-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cgate-premium-toggle:hover .cgate-divider span:first-child,
.cgate-premium-toggle:focus .cgate-divider span:first-child {
    text-decoration: underline;
}

.cgate-premium-toggle-arrow {
    font-size: 10px;
    color: var(--cgate-text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 2px;
}

.cgate-premium-label {
    font-family: 'Lato', 'Lato-Black', Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: var(--cgate-text);
    margin: 0 0 4px;
}

.cgate-premium-collapse {
    overflow: hidden;
}

.cgate-premium-desc {
    font-size: 12px;
    color: var(--cgate-text-muted);
    margin: 0 0 12px;
}

.cgate-premium-buttons {
    display: flex;
    flex-direction: column;   /* Mobile: gestapelt */
    gap: 10px;
    margin-bottom: 12px;
}

.cgate-btn--secondary {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    background: transparent;
    color: var(--cgate-text);
    border: 2px solid var(--cgate-green);
    border-radius: 3px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 16px;
    transition: background-color 0.2s ease;
    text-align: center;
    gap: 3px;
    line-height: 1.3;
}

.cgate-btn--secondary small {
    font-size: 11px;
    font-weight: 400;
    color: var(--cgate-text-muted);
}

.cgate-btn--secondary:hover,
.cgate-btn--secondary:focus {
    background: #f5f5f5;
    outline: 3px solid var(--cgate-green);
    outline-offset: 2px;
}

.cgate-btn--secondary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cgate-badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: var(--cgate-orange);
    color: #ffffff;
    font-size: 10px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

/* --- Rechtliche Pflichthinweise ----------------------------------------- */
.cgate-legal-renewal,
.cgate-legal-waiver,
.cgate-legal-agb {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 6px;
}

.cgate-legal-agb a {
    color: #999;
    text-decoration: underline;
}

.cgate-legal-agb a:hover {
    color: var(--cgate-green);
}

/* --- Login-Link --------------------------------------------------------- */
.cgate-link-login {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--cgate-green);
    text-decoration: none;
    padding: 8px 0 4px;
    margin-top: 8px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Lato', Arial, sans-serif;
}

.cgate-link-login:hover {
    text-decoration: underline;
}

/* --- Login-Formular ----------------------------------------------------- */
.cgate-login-form-wrap {
    margin-top: 12px;
}

.cgate-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cgate-login-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cgate-login-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--cgate-text-muted);
}

.cgate-login-field input {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--cgate-border);
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Lato', Arial, sans-serif;
    color: var(--cgate-text);
    background: #fff;
}

.cgate-login-field input:focus {
    outline: none;
    border-color: var(--cgate-green);
    box-shadow: 0 0 0 3px rgba(105, 160, 44, .15);
}

.cgate-login-error {
    font-size: 13px;
    color: #d32f2f;
    background: #fff3f3;
    border: 1px solid #ffc9c9;
    border-radius: 3px;
    padding: 8px 12px;
}

.cgate-login-success {
    color: #2d6a4f;
    background: #f0f9f4;
    border-color: #b8ddc8;
}

/* --- Passwort vergessen ------------------------------------------------- */
.cgate-forgot-section {
    margin-top: 6px;
    border-top: 1px solid var(--cgate-border);
    padding-top: 8px;
}

.cgate-link-forgot {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--cgate-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 6px 0;
    font-family: 'Lato', Arial, sans-serif;
    text-decoration: none;
}

.cgate-link-forgot:hover {
    color: var(--cgate-green);
    text-decoration: underline;
}

.cgate-forgot-form-wrap {
    margin-top: 10px;
}

.cgate-login-submit {
    min-height: 48px;
    font-size: 15px;
    margin-top: 4px;
}

/* --- Footer ------------------------------------------------------------- */
.cgate-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--cgate-border);
    font-size: 11px;
    color: var(--cgate-text-muted);
}

.cgate-footer a {
    color: var(--cgate-text-muted);
    text-decoration: none;
}

.cgate-footer a:hover {
    color: var(--cgate-green);
    text-decoration: underline;
}

/* --- Cookie-Banner Unterdrückung (Paywall übernimmt Consent-Funktion) ---- */
body.consent-gate-active .ct-ultimate-gdpr-cookie-popup-wrap,
body.consent-gate-active .ct-ultimate-gdpr-cookie,
body.consent-gate-active [class*="ct-ultimate-gdpr"] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ==========================================================================
   Responsive Erweiterungen
   ========================================================================== */

/* Tablet: ≥481px */
@media (min-width: 481px) {
    .cgate-backdrop {
        align-items: center;    /* Zentriert im Viewport */
    }

    .cgate-card {
        width: 90%;
        max-width: 480px;
        border-radius: 6px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
        padding: 32px;
    }

    .cgate-title {
        font-size: 22px;
    }
}

/* Desktop: ≥769px */
@media (min-width: 769px) {
    .cgate-card {
        max-width: 560px;
        padding: 40px;
    }

    .cgate-title {
        font-size: 24px;
    }

    .cgate-premium-buttons {
        flex-direction: row;    /* Nebeneinander */
    }

    .cgate-btn--secondary {
        flex: 1;
    }

    .cgate-features li {
        font-size: 14px;
    }
}

/* ==========================================================================
   Seite: Mein Premium-Abo (/mein-premium-abo/)
   ========================================================================== */

.finder-abo-page {
    max-width: 560px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Lato', Arial, sans-serif;
}

.finder-abo-page h1 {
    font-size: 24px;
    font-weight: 900;
    color: #2d6a4f;
    margin-bottom: 24px;
}

.finder-abo-details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 15px;
}

.finder-abo-details th,
.finder-abo-details td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.finder-abo-details th {
    color: #777;
    font-weight: 400;
    width: 40%;
}

.finder-portal-btn {
    display: inline-block;
    background: #2d6a4f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

.finder-portal-btn:hover {
    background: #245c43;
    color: #fff;
}

.finder-portal-hint {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

.finder-cta-btn {
    display: inline-block;
    background: #69a02c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.finder-cta-btn:hover {
    background: #77af3a;
    color: #fff;
}

.finder-abo-guest-intro {
    color: var(--cgate-text-muted, #666666);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 22px;
}

.finder-abo-page #finder-premium-login-form {
    padding: 0;
    margin: 0;
}

.finder-abo-page #finder-premium-login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.finder-abo-page #finder-premium-login-form .input {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
    padding: 11px 12px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    margin-bottom: 16px;
}

.finder-abo-page #finder-premium-login-form .forgetmenot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #555;
}

.finder-abo-page #finder-premium-login-form input[type='checkbox'] {
    width: auto;
    margin: 0;
}

.finder-abo-page #finder-premium-submit {
    font-family: 'Lato', Arial, sans-serif;
    cursor: pointer;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 700;
}

.finder-abo-page #finder-premium-submit:hover {
    background: #245c43;
}

/* ==========================================================================
   Stripe-Ergebnis-Seite (success / cancel)
   ========================================================================== */

.cgate-result-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 16px;
}

.cgate-result-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
}

.cgate-result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cgate-primary, #69a02c);
    color: #fff;
    font-size: 32px;
    line-height: 64px;
    margin: 0 auto 24px;
}

.cgate-result-icon--cancel {
    background: #e53935;
}

.cgate-result-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.cgate-result-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 12px;
}

.cgate-result-hint {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 24px;
}

.cgate-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.cgate-result-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    min-height: 44px;
    touch-action: manipulation;
    transition: background .15s, color .15s;
}

.cgate-result-btn--primary {
    background: var(--cgate-primary, #69a02c);
    color: #fff;
}

.cgate-result-btn--primary:hover,
.cgate-result-btn--primary:focus {
    background: var(--cgate-green-hover, #77af3a);
    color: #fff;
}

.cgate-result-btn--secondary {
    background: #f4f4f4;
    color: #333;
}

.cgate-result-btn--secondary:hover,
.cgate-result-btn--secondary:focus {
    background: #e8e8e8;
    color: #333;
}

@media (max-width: 480px) {
    .cgate-result-card {
        padding: 36px 24px;
    }

    .cgate-result-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Finder Premium – Passwort-Seite (/finder-premium-passwort/)
   ========================================================================== */

.finder-password-main--wide .finder-password-inner {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.finder-password-card.cgate-result-card {
    text-align: left;
}

.cgate-result-actions--stack {
    flex-direction: column;
    align-items: stretch;
}

.finder-password-label {
    display: block;
    margin: 16px 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.finder-password-field {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.3;
    border: 1px solid var(--cgate-border, #e0e0e0);
    border-radius: 6px;
}

.finder-password-field:focus {
    outline: none;
    border-color: var(--cgate-primary, #69a02c);
    box-shadow: 0 0 0 3px rgba(105, 160, 44, .2);
}

.finder-password-submit {
    cursor: pointer;
    border: none;
    margin-top: 20px;
    width: 100%;
}

.finder-password-reset-form .finder-password-submit {
    margin-top: 28px;
}

/* ==========================================================================
   Upsell-Trigger – Kleines Symbol unten links (kostenlose Version)
   ========================================================================== */

#cgate-upsell-trigger {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9800;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    animation: cgate-upsell-fade-in .4s .9s ease forwards;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform .15s;
}

#cgate-upsell-trigger.cgate-upsell-hidden {
    display: none !important;
}

@keyframes cgate-upsell-fade-in {
    to { opacity: 1; }
}

#cgate-upsell-trigger:hover,
#cgate-upsell-trigger:focus {
    transform: scale(1.12);
    outline: 2px solid var(--cgate-green);
    outline-offset: 3px;
    border-radius: 50%;
}

#cgate-upsell-trigger svg,
#cgate-upsell-trigger img {
    width: 44px;
    height: 44px;
    display: block;
}

/* ==========================================================================
   Upsell-Popup (Modal)
   ========================================================================== */

#cgate-upsell-popup {
    position: fixed;
    inset: 0;
    z-index: 9900;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#cgate-upsell-popup[hidden] {
    display: none;
}

.cgate-upsell-popup-card {
    position: relative;
    background: #fff;
    width: calc(100% - 20px);
    max-width: 480px;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .20);
    padding: 24px 20px 28px;
    font-family: 'Lato', Arial, sans-serif;
    color: var(--cgate-text);
    max-height: 85vh;
    overflow-y: auto;
}

@media (min-width: 481px) {
    #cgate-upsell-popup {
        align-items: center;
    }

    .cgate-upsell-popup-card {
        border-radius: 6px;
    }
}

.cgate-upsell-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    transition: color .15s, background .15s;
    touch-action: manipulation;
}

.cgate-upsell-popup-close:hover,
.cgate-upsell-popup-close:focus {
    color: #333;
    background: #f0f0f0;
}

.cgate-upsell-popup-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--cgate-text);
    margin: 0 36px 6px 0;
    line-height: 1.25;
}

.cgate-upsell-popup-desc {
    font-size: 13px;
    color: var(--cgate-text-muted);
    margin: 0 0 16px;
}

.cgate-upsell-popup-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

@media (min-width: 481px) {
    .cgate-upsell-popup-btns {
        flex-direction: row;
    }

    .cgate-upsell-popup-btns .cgate-btn--secondary {
        flex: 1;
    }
}

.cgate-upsell-popup-legal {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 4px;
}

.cgate-upsell-popup-legal a {
    color: #999;
    text-decoration: underline;
}

.cgate-upsell-popup-legal a:hover {
    color: var(--cgate-green);
}

/* ==========================================================================
   Adblocker-Hinweis im Consent Gate
   ========================================================================== */

/* --- Button: Lade-Zustand (Spinner) -------------------------------------- */
@keyframes cgate-spin {
    to { transform: rotate(360deg); }
}

.cgate-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cgate-spin .7s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* --- Hinweis-Container --------------------------------------------------- */
.cgate-adblocker-notice {
    background: #fff8f0;
    border: 1.5px solid #f5a623;
    border-radius: 6px;
    padding: 18px 16px 14px;
    margin: 0 0 16px;
}

/* --- Kopfzeile: Icon + Titel --------------------------------------------- */
.cgate-adblocker-notice__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cgate-adblocker-notice__icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.cgate-adblocker-notice__title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #b45a00;
    margin: 0;
    line-height: 1.2;
}

/* --- Erklärungstext ------------------------------------------------------ */
.cgate-adblocker-notice__text {
    font-size: 14px;
    color: var(--cgate-text);
    line-height: 1.55;
    margin: 0 0 10px;
}

/* --- Erkannter Blocker-Typ ----------------------------------------------- */
.cgate-adblocker-notice__type-row {
    font-size: 13px;
    color: var(--cgate-text-muted);
    margin: 0 0 12px;
    padding: 6px 10px;
    background: #fff0d6;
    border-radius: 4px;
}

.cgate-adblocker-notice__type {
    color: #b45a00;
}

/* --- Liste mit Anleitungen ----------------------------------------------- */
.cgate-adblocker-notice__list-wrap {
    background: #fff;
    border: 1px solid #eddfc0;
    border-radius: 4px;
    padding: 12px 14px 8px;
    margin-bottom: 14px;
}

.cgate-adblocker-notice__list-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cgate-text);
    margin: 0 0 10px;
}

.cgate-adblocker-notice__category {
    margin-bottom: 12px;
}

.cgate-adblocker-notice__category:last-child {
    margin-bottom: 0;
}

.cgate-adblocker-notice__category > strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--cgate-text-muted);
    margin-bottom: 6px;
}

.cgate-adblocker-notice__category ul {
    margin: 0;
    padding: 0 0 0 16px;
    list-style: disc;
}

.cgate-adblocker-notice__category li {
    font-size: 13px;
    color: var(--cgate-text);
    line-height: 1.5;
    margin-bottom: 5px;
    padding: 0;
}

.cgate-adblocker-notice__category li:last-child {
    margin-bottom: 0;
}

.cgate-adblocker-notice__category li code {
    font-size: 11px;
    background: #f0f0f0;
    padding: 1px 4px;
    border-radius: 3px;
    color: #555;
    white-space: nowrap;
}

/* --- Aktionen (Erneut versuchen) ----------------------------------------- */
.cgate-adblocker-notice__actions {
    margin-bottom: 12px;
}

.cgate-adblocker-notice__actions .cgate-btn {
    width: 100%;
}

/* --- Alternativ-Hinweis (Premium) --------------------------------------- */
.cgate-adblocker-notice__alt {
    font-size: 13px;
    color: var(--cgate-text-muted);
    text-align: center;
    margin: 0;
    line-height: 1.45;
    padding-top: 2px;
}

/* --- Scroll-Verhalten bei geringer Höhe ---------------------------------- */
@media (max-height: 700px) {
    .cgate-adblocker-notice__list-wrap {
        max-height: 220px;
        overflow-y: auto;
    }
}
