#nhospCookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border-top: 2px solid #9a0100;
    box-shadow: 0 -2px 16px rgba(154, 1, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#nhospCookieBanner.ncb-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.ncb-text {
    flex: 1;
    min-width: 200px;
}

.ncb-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.3;
}

.ncb-desc {
    font-size: 12px;
    color: #6b7c93;
    line-height: 1.5;
    margin: 0;
}

.ncb-desc a {
    text-decoration: underline;
}

.ncb-actions {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ncb-btn-accept {
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.18s;
}

.ncb-btn-decline {
    background: transparent;
    color: #6b7c93;
    border: 1px solid #e0b3b3;
    border-radius: 5px;
    padding: 9px 16px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.18s, color 0.18s;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    #nhospCookieBanner {
        padding: 12px 16px 16px;
        gap: 10px;
    }

    .ncb-actions {
        width: 100%;
    }

    .ncb-btn-accept,
    .ncb-btn-decline {
        flex: 1;
        text-align: center;
        padding: 10px 0;
    }
}
