/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content h6 {
    font-weight: 600;
    color: white;
}

.cookie-buttons .btn {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        padding: 0 15px;
    }

    .cookie-buttons {
        text-align: center !important;
        margin-top: 10px;
    }

    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}
