.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.cookie-consent-text strong {
    color: #222;
    font-size: 1.05rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    padding: 10px 20px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-actions .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.cookie-consent-actions .btn-primary:hover {
    background-color: var(--primary-color-dark);
}

.cookie-consent-actions .btn-secondary {
    background-color: var(--neutral-color);
    color: white;
}

.cookie-consent-actions .btn-secondary:hover {
    background-color: var(--neutral-color-dark);
}

.cookie-consent-actions .btn-link {
    background: none;
    color: #666;
    text-decoration: underline;
}

.cookie-consent-actions .btn-link:hover {
    color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px;
    }

    .cookie-consent-text {
        text-align: center;
    }

    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }

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