.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-banner-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--eco-dark, #1a3a2a);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.cookie-banner-actions .btn {
    min-width: 120px;
}

.cookie-banner-details {
    border-top: 1px solid #eee;
    margin-top: 1rem;
    padding-top: 1rem;
}

.cookie-category {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .cookie-banner-content {
        padding: 1rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }
}
