#nf-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    background: #134cb6;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

#nf-cookie-banner a {
    color: #f1d600;
    text-decoration: underline;
}

#nf-cookie-banner .nf-cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 18px 20px;
}

#nf-cookie-banner .nf-cookie-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

#nf-cookie-banner .nf-cookie-text {
    margin: 0 0 14px;
}

#nf-cookie-banner .nf-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#nf-cookie-banner .nf-cookie-btn {
    border: 0;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.2;
}

#nf-cookie-banner .nf-cookie-btn-primary {
    background: #f1d600;
    color: #1a1a1a;
}

#nf-cookie-banner .nf-cookie-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

#nf-cookie-banner .nf-cookie-btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

#nf-cookie-banner .nf-cookie-settings {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

#nf-cookie-banner .nf-cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

#nf-cookie-banner .nf-cookie-category strong {
    display: block;
    margin-bottom: 4px;
}

#nf-cookie-banner .nf-cookie-category p {
    margin: 0;
    font-size: 13px;
    opacity: 0.92;
}

#nf-cookie-banner .nf-cookie-switch {
    position: relative;
    width: 48px;
    min-width: 48px;
    height: 26px;
    flex-shrink: 0;
}

#nf-cookie-banner .nf-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#nf-cookie-banner .nf-cookie-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 26px;
    cursor: pointer;
    transition: background 0.2s;
}

#nf-cookie-banner .nf-cookie-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

#nf-cookie-banner .nf-cookie-switch input:checked + .nf-cookie-slider {
    background: #f1d600;
}

#nf-cookie-banner .nf-cookie-switch input:checked + .nf-cookie-slider:before {
    transform: translateX(22px);
}

#nf-cookie-banner .nf-cookie-switch input:disabled + .nf-cookie-slider {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    #nf-cookie-banner .nf-cookie-actions {
        flex-direction: column;
    }

    #nf-cookie-banner .nf-cookie-btn {
        width: 100%;
    }
}
