/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 16px 16px 0 0;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner-text { flex: 1; }

.cookie-banner-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.cookie-banner-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 6px;
}

.cookie-banner-link {
    font-size: 0.8rem;
    color: #F97316;
    text-decoration: none;
}

.cookie-banner-link:hover { text-decoration: underline; }

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 44px;
}

.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary { background: #F97316; color: white; }
.cookie-btn-primary:hover { background: #ea680c; box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); }
.cookie-btn-secondary { background: transparent; color: white; border: 1.5px solid rgba(255, 255, 255, 0.3); }
.cookie-btn-secondary:hover { border-color: rgba(255, 255, 255, 0.6); }

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 20px;
        border-radius: 14px 14px 0 0;
        gap: 16px;
    }

    .cookie-banner-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
