.kt-consent {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.35);
    z-index: 99999;
}

.kt-consent.is-visible {
    display: flex;
}

.kt-consent__box {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 18px 18px 14px;
    position: relative;
}

.kt-consent__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.kt-consent__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-consent__text {
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.9;
}

.kt-consent__link {
    text-decoration: underline;
}

.kt-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.kt-btn {
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.kt-btn--primary {
    border-color: transparent;
    background: #111;
    color: #fff;
}

.kt-btn--ghost {
    background: transparent;
}

.kt-consent__settings {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.kt-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
}
