
/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 400px;
}

#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 768px) {
    #cookie-banner {
        left: auto;
        right: 2rem;
        bottom: 2rem;
    }
}

.cookie-content {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.cookie-icon {
    background: rgba(167, 250, 145, 0.15);
    padding: 0.75rem;
    border-radius: 0.85rem;
    color: #A7FA91;
    font-size: 1.25rem;
}

.cookie-text h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-accept {
    background: #A7FA91;
    color: #000;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-accept:hover {
    background: #c2ffb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 250, 145, 0.3);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
}
