.bg-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 24px;
    z-index: 999999;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.bg-cookie-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.bg-cookie-body p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.bg-cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}

.bg-cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.bg-cookie-btn-reject {
    background-color: #f1f5f9;
    color: #475569;
}

.bg-cookie-btn-reject:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.bg-cookie-btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.bg-cookie-btn-accept:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

@media (max-width: 640px) {
    .bg-cookie-actions {
        flex-direction: column;
    }
    .bg-cookie-btn {
        width: 100%;
    }
}
