/* Cookie Consent Custom Styles */
.cookie-consent {
    animation: slideUp 0.5s ease-out;
    backdrop-filter: blur(5px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent .cookie-consent-banner {
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.cookie-consent .cookie-consent__message {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ffffff;
}

.cookie-consent .cookie-consent__agree {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent .cookie-consent__agree:hover {
    background: #218838;
    color: white;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.cookie-consent .cookie-consent__deny {
    background: transparent;
    color: #ffffff;
    border: 2px solid #6c757d;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent .cookie-consent__deny:hover {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.cookie-consent .fas.fa-cookie-bite {
    color: #ffc107;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent .ms-3 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
    
    .cookie-consent .cookie-consent__agree,
    .cookie-consent .cookie-consent__deny {
        width: 100%;
        max-width: 150px;
        margin: 5px;
    }
    
    .cookie-consent .d-flex.gap-2 {
        justify-content: center;
        width: 100%;
    }
}
