/* Cookie Consent Banner Styles */
#cookieConsent {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 360px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 99999;
    display: none;
    font-family: inherit;
    border: 1px solid #e0e0e0;
}

#cookieConsent.show {
    display: block !important;
    animation: slideIn 0.5s ease;
}

#cookieConsent.hidden {
    display: none !important;
}

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

#cookieConsent p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

#cookieConsent .cookie-buttons {
    display: flex;
    gap: 10px;
}

#cookieConsent button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

#cookieConsent .accept {
    background: #df8ca6;
    color: white;
}

#cookieConsent .accept:hover {
    background: #c77a93;
}

#cookieConsent .decline {
    background: #f0f0f0;
    color: #333;
}

#cookieConsent .decline:hover {
    background: #e0e0e0;
}
