#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #e2e8f0;
    z-index: 9999;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUpCookie 0.3s ease;
}
@keyframes slideUpCookie {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-text {
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}
.cookie-text a {
    color: #fb923c;
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-cookie-accept {
    background: #f97316;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #ea580c; }
.btn-cookie-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.btn-cookie-decline:hover { color: #e2e8f0; border-color: #94a3b8; }
@media (max-width: 576px) {
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}
