/* COOKIE BANNER STYLING */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: calc(100% - 60px);
    max-width: 450px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.05); /* Modern deep shadow */
    z-index: 9999;
    
    /* Animation für das Hereinfliegen */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-title svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-gold);
}

.cookie-banner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.cookie-banner a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
}

.cookie-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-reject {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

/* Responsives Layout */
@media (min-width: 480px) {
    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    #btn-accept-cookies {
        grid-column: 1 / -1;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px 16px;
    }
}

@media (max-width: 650px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
    }
}
