/* Cookie Consent Banner - refined, high-end style */
#cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 380px;
    max-width: calc(100vw - 32px);
    z-index: 99999;
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.08),
        0 24px 48px rgba(15, 23, 42, 0.06);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: ccb-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ccb-slide-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ccb-inner {
    padding: 20px 22px;
}

.ccb-text {
    margin-bottom: 16px;
}

.ccb-text p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #475569;
}

.ccb-text p + p {
    margin-top: 6px;
}

.ccb-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.ccb-text a {
    color: #2A9EA6 !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px solid rgba(42, 158, 166, 0.3);
    transition: border-color 0.15s;
}

.ccb-text a:hover {
    border-bottom-color: #2A9EA6;
}

.ccb-actions {
    display: flex;
    gap: 8px;
}

.ccb-btn {
    flex: 1;
    padding: 9px 14px;
    border: none;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    letter-spacing: -0.005em;
}

.ccb-btn--accept {
    background: #0f172a;
    color: #ffffff;
}

.ccb-btn--accept:hover {
    background: #1e293b;
}

.ccb-btn--reject {
    background: transparent;
    color: #475569;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.ccb-btn--reject:hover {
    background: rgba(15, 23, 42, 0.04);
    color: #0f172a;
}

@media (max-width: 480px) {
    #cookie-consent-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
    }

    .ccb-inner {
        padding: 18px 18px;
    }
}
