.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
    border: 1px solid #e2e8f0;
    font-family: system-ui, -apple-system, sans-serif;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-banner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 20px;
}

.cookie-banner p a {
    color: #b45309;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.cookie-btn-accept {
    background: #b45309;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #9a3e04;
}

.cookie-btn-settings {
    background: #f1f5f9;
    color: #475569;
}

.cookie-btn-settings:hover {
    background: #e2e8f0;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
}
