.cookie-popup {
    display: none;
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
    z-index: 9999;
    max-width: 380px;
    width: 92%;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-popup-content {
    padding: 28px 36px 22px 36px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.cookie-popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #111827;
    font-weight: 600;
}

.cookie-popup p {
    margin: 0;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.6;
}

.cookie-popup-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.98rem;
    transition: background 0.18s, color 0.18s;
}

.cookie-btn-accept {
    background: #16a34a;
    color: #fff;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
    background: #15803d;
}