.unh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0e0e0e;
    color: #f5f5f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
.unh-cookie-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.unh-cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 320px;
}
.unh-cookie-banner__text a {
    color: inherit;
    text-decoration: underline;
}
.unh-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.unh-cookie-banner__btn {
    appearance: none;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}
.unh-cookie-banner__btn--accept {
    background: #f5f5f0;
    color: #0e0e0e;
    border-color: #f5f5f0;
}
.unh-cookie-banner__btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
    .unh-cookie-banner__actions { width: 100%; justify-content: stretch; }
    .unh-cookie-banner__btn { flex: 1; }
}
