/* Cookie-Banner */
#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background: #2d5016;
    color: #fff;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    display: none;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-banner.is-visible {
    display: block;
}

#cookie-banner .cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-banner .cookie-banner-text {
    flex: 1 1 320px;
}

#cookie-banner .cookie-banner-text h4 {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
}

#cookie-banner .cookie-banner-text p {
    margin: 0;
    color: #fff;
}

#cookie-banner .cookie-banner-text a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner .cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#cookie-banner button {
    border: 0;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#cookie-banner button:hover {
    transform: translateY(-1px);
}

#cookie-banner .cookie-accept {
    background: #fff;
    color: #2d5016;
}

#cookie-banner .cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Platzhalter fuer geblockte Drittanbieter-Einbettungen */
.consent-placeholder {
    background: #f5f5f0;
    border: 2px dashed #2d5016;
    border-radius: 10px;
    padding: 40px 24px;
    text-align: center;
    color: #2d5016;
    font-family: 'Raleway', sans-serif;
}

.consent-placeholder h4 {
    margin: 0 0 10px 0;
    color: #2d5016;
    font-size: 18px;
    font-weight: 700;
}

.consent-placeholder p {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.consent-placeholder button {
    background: #2d5016;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.consent-placeholder button:hover {
    background: #4a7c2e;
}

/* Footer-Link "Cookie-Einstellungen" */
.cookie-settings-link {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
