.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

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

.cookie-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 0.5rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: #059669;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #059669, #0284C7);
    color: white;
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, #0284C7, #059669);
}

.cookie-btn-secondary {
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.cookie-btn-secondary:hover {
    background: #E2E8F0;
    color: #0F172A;
}

/* Hide banner when accepted */
.cookie-banner.hidden {
    display: none !important;
}
