:root {
    --khc-brand: #662483;
    --khc-brand-dark: #431554;
    --khc-brand-soft: #f3edf7;
    --khc-accent-blue: #1d65a6;
    --khc-accent-cyan: #087f8c;
    --khc-ink: #171c2b;
    --khc-muted: #626b7b;
    --khc-border: #dce2eb;
    --khc-canvas: #f3f5f8;
    --khc-surface: #ffffff;
    --khc-success: #08705a;
    --khc-success-soft: #e8f6f1;
    --khc-warning: #946200;
    --khc-warning-soft: #fff6db;
    --khc-danger: #b42318;
    --khc-danger-soft: #fff0ee;
    --khc-shadow: 0 16px 42px rgba(24, 30, 48, .09);
}

/* Çarkın ek hak teklifi, ödeme güvencesini ve sabit fiyatı tek satırda anlatır. */
.kh-wheel-credit-offer {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding: 22px 24px;
    border: 1px solid #d9cbe7;
    border-left: 4px solid #70258d;
    background: #fff;
    box-shadow: 0 18px 45px rgba(22, 15, 39, .09);
}

.kh-wheel-credit-offer__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    color: #fff;
    background: #70258d;
    font-size: 22px;
}

.kh-wheel-credit-offer__copy > span,
.kh-wheel-credit-offer__price small {
    display: block;
    color: #70258d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-wheel-credit-offer__copy h3 {
    margin: 3px 0 5px;
    color: #161a2c;
    font-size: 21px;
}

.kh-wheel-credit-offer__copy p {
    max-width: 580px;
    margin: 0;
    color: #647084;
    line-height: 1.55;
}

.kh-wheel-credit-offer__price {
    min-width: 125px;
    text-align: right;
}

.kh-wheel-credit-offer__price strong {
    display: block;
    margin-top: 3px;
    color: #161a2c;
    font-size: 22px;
}

.kh-wheel-credit-offer form,
.kh-wheel-credit-offer .kh-button {
    margin: 0;
}

@media (max-width: 800px) {
    .kh-wheel-credit-offer {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .kh-wheel-credit-offer__price {
        grid-column: 1 / -1;
        text-align: left;
    }

    .kh-wheel-credit-offer form,
    .kh-wheel-credit-offer .kh-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Destek merkezi: müşteri ve yönetici konuşmaları aynı okunabilir düzeni kullanır. */
.kh-ticket-link {
    position: relative;
    display: block;
    padding-right: 28px;
    color: inherit;
    text-decoration: none;
}

.kh-ticket-link > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kh-ticket-link > i {
    position: absolute;
    right: 2px;
    bottom: 3px;
    color: #70258f;
    transition: transform .2s ease;
}

.kh-ticket-link:hover h3,
.kh-ticket-link:focus-visible h3 {
    color: #70258f;
}

.kh-ticket-link:hover > i,
.kh-ticket-link:focus-visible > i {
    transform: translateX(3px);
}

.kh-ticket-page-header h1 {
    overflow-wrap: anywhere;
}

.kh-ticket-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #dce2eb;
}

.kh-ticket-summary > div {
    display: grid;
    align-content: center;
    min-height: 82px;
    padding: 15px 18px;
    background: #fff;
}

.kh-ticket-summary span,
.kh-ticket-summary small {
    color: #687284;
    font-size: 12px;
}

.kh-ticket-summary strong {
    margin-top: 5px;
    color: #151b2b;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.kh-ticket-summary .kh-status {
    width: fit-content;
}

.kh-ticket-thread-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    align-items: start;
    gap: 18px;
}

.kh-ticket-conversation {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid #dce2eb;
    border-top: 3px solid #70258f;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 29, 46, .05);
}

.kh-ticket-message {
    max-width: 86%;
    padding: 16px;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #f7f8fb;
}

.kh-ticket-message.is-staff {
    margin-left: auto;
    border-color: #d9c4e2;
    background: #f8f1fb;
}

.kh-ticket-message header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kh-ticket-message header > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    gap: 2px 12px;
}

.kh-ticket-message header strong {
    color: #151b2b;
    font-size: 13px;
}

.kh-ticket-message header small {
    grid-column: 1;
    color: #687284;
    font-size: 11px;
}

.kh-ticket-message time {
    grid-column: 2;
    grid-row: 1 / span 2;
    color: #687284;
    font-size: 11px;
}

.kh-ticket-message__avatar {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e7f7f4;
    color: #087f72;
}

.kh-ticket-message.is-staff .kh-ticket-message__avatar {
    background: #eadcf0;
    color: #70258f;
}

.kh-ticket-message p {
    margin: 0;
    color: #30394b;
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.kh-ticket-reply-form {
    position: sticky;
    top: 110px;
    border-top: 3px solid #18a7ad;
}

.kh-ticket-reply-form > p,
.kh-ticket-closed p {
    margin: -5px 0 2px;
    color: #687284;
    font-size: 12px;
    line-height: 1.6;
}

.kh-ticket-closed {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.kh-ticket-closed > i {
    color: #70258f;
    font-size: 20px;
}

.kh-ticket-closed h2 {
    margin: 0 0 8px;
    font-size: 17px;
}

.kh-admin-filter--tickets {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, .45fr) auto;
}

.kh-admin-ticket-table {
    min-width: 1120px;
}

@media (max-width: 991.98px) {
    .kh-ticket-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-ticket-thread-grid,
    .kh-admin-filter--tickets {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-ticket-reply-form {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .kh-ticket-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-ticket-summary > div {
        min-height: 66px;
        padding: 12px 14px;
    }

    .kh-ticket-conversation {
        padding: 16px;
    }

    .kh-ticket-message {
        max-width: 96%;
        padding: 13px;
    }

    .kh-ticket-message header > div {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-ticket-message time {
        grid-column: 1;
        grid-row: auto;
    }
}

/* SQL tabanli yonetim listeleri: masaustunde tablo, dar ekranda okunabilir satirlar. */
.kh-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.kh-admin-filter {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px) auto;
    align-items: end;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    border: 1px solid #dbe1eb;
    border-radius: 8px;
    background: #fff;
}

.kh-admin-filter label,
.kh-admin-edit-form label {
    display: grid;
    gap: 6px;
    color: #4f5d75;
    font-size: 12px;
    font-weight: 700;
}

.kh-admin-filter input,
.kh-admin-filter select,
.kh-admin-edit-form input,
.kh-admin-edit-form select,
.kh-admin-edit-form textarea,
.kh-inline-admin-form input,
.kh-service-admin-row select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #ced7e4;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    padding: 9px 11px;
}

.kh-admin-table-wrap {
    overflow-x: auto;
    border: 1px solid #dbe1eb;
    border-radius: 8px;
    background: #fff;
}

.kh-admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    color: #1f2937;
}

.kh-admin-table th,
.kh-admin-table td {
    padding: 13px 14px;
    border-bottom: 1px solid #e8edf4;
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
}

.kh-admin-table th {
    background: #f5f7fb;
    color: #536078;
    font-size: 11px;
    text-transform: uppercase;
}

.kh-admin-table td small,
.kh-admin-table td strong {
    display: block;
}

.kh-admin-table td small {
    margin-top: 4px;
    color: #6d788d;
    line-height: 1.45;
}

.kh-inline-admin-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kh-inline-admin-form input {
    min-width: 160px;
}

.kh-admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    color: #657188;
    font-size: 13px;
}

.kh-admin-pagination a {
    color: #70258f;
    font-weight: 800;
}

.kh-admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    gap: 18px;
}

.kh-admin-edit-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.kh-admin-edit-form__wide,
.kh-admin-edit-form .kh-button {
    grid-column: 1 / -1;
}

.kh-admin-meta {
    display: grid;
    grid-template-columns: minmax(130px, .35fr) minmax(0, 1fr);
    gap: 8px 14px;
    margin-top: 18px;
    font-size: 13px;
}

.kh-admin-meta dt { color: #6b7280; }
.kh-admin-meta dd { margin: 0; overflow-wrap: anywhere; }

.kh-admin-items,
.kh-audit-list {
    display: grid;
    gap: 10px;
}

.kh-admin-items article,
.kh-audit-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8edf4;
}

.kh-admin-items span,
.kh-admin-items small,
.kh-audit-list span {
    color: #6b7280;
    font-size: 12px;
}

.kh-admin-items small { grid-column: 1 / -1; }

.kh-service-admin-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 140px 190px 44px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e8edf4;
}

@media (max-width: 991px) {
    .kh-admin-filter,
    .kh-admin-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-service-admin-row {
        grid-template-columns: minmax(0, 1fr) minmax(150px, .6fr) 44px;
    }

    .kh-service-admin-row > span { display: none; }
}

@media (max-width: 767px) {
    .kh-admin-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .kh-admin-table {
        min-width: 0;
    }

    .kh-admin-table thead { display: none; }
    .kh-admin-table tbody,
    .kh-admin-table tr,
    .kh-admin-table td { display: block; width: 100%; }

    .kh-admin-table tr {
        margin-bottom: 12px;
        border: 1px solid #dbe1eb;
        border-top: 3px solid #70258f;
        border-radius: 8px;
        background: #fff;
        padding: 8px 13px;
    }

    .kh-admin-table td {
        display: grid;
        grid-template-columns: minmax(95px, .38fr) minmax(0, 1fr);
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid #edf0f5;
        font-size: 12px;
    }

    .kh-admin-table td::before {
        content: attr(data-label);
        color: #6b7280;
        font-weight: 700;
    }

    .kh-admin-table td:last-child { border-bottom: 0; }
    .kh-admin-edit-form { grid-template-columns: minmax(0, 1fr); }
    .kh-inline-admin-form { align-items: stretch; }
    .kh-inline-admin-form input { min-width: 0; }
    .kh-service-admin-row { grid-template-columns: minmax(0, 1fr) 44px; }
    .kh-service-admin-row select { grid-column: 1; }
    .kh-service-admin-row .kh-icon-button { grid-column: 2; grid-row: 1 / span 2; }
}

/* Sepet adet seçici: fiyatlar AJAX isteğinin ardından sunucu yanıtıyla güncellenir. */
.kh-quantity-form {
    position: relative;
    align-items: center;
    flex-wrap: wrap;
}

.kh-quantity-form label {
    display: grid;
    width: auto;
    gap: 5px;
}

.kh-quantity-control {
    display: grid;
    grid-template-columns: 38px 58px 38px;
    min-height: 40px;
    overflow: hidden;
    border: 1px solid #cfd6e1;
    border-radius: 6px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.kh-quantity-control:focus-within {
    border-color: var(--khc-brand);
    box-shadow: 0 0 0 3px rgba(102, 36, 131, .1);
}

.kh-quantity-control button {
    display: inline-grid;
    min-width: 0;
    min-height: 38px;
    place-items: center;
    border: 0;
    background: #f5f1f7;
    color: var(--khc-brand);
    cursor: pointer;
}

.kh-quantity-control button:hover,
.kh-quantity-control button:focus-visible {
    background: #eae0ef;
    outline: 0;
}

.kh-quantity-control input {
    width: 58px !important;
    min-height: 38px !important;
    padding: 0 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--khc-ink);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    box-shadow: none !important;
    appearance: textfield;
}

.kh-quantity-control input::-webkit-inner-spin-button,
.kh-quantity-control input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.kh-quantity-feedback {
    min-width: 78px;
    color: var(--khc-success);
    font-size: 10px;
    font-weight: 750;
}

.kh-quantity-feedback.is-error { color: #b42318; }
.kh-quantity-form.is-updating { opacity: .72; }

@media (max-width: 575px) {
    .kh-quantity-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
    }

    .kh-quantity-feedback {
        max-width: 130px;
        text-align: right;
    }
}

/* VPS kaynak yapılandırıcısı: fiyatlar yalnızca sunucu kataloğundan hesaplanır. */
.kh-vps-resources {
    margin: 18px 0;
    padding: 18px;
    border: 1px solid #d9c8e2;
    border-left: 4px solid #6f278b;
    border-radius: 6px;
    background: #fbf9fc;
}

.kh-vps-resources__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.kh-vps-resources__icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 6px;
    background: #f1e8f5;
    color: #6f278b;
}

.kh-vps-resources__heading h3 {
    margin: 0;
    color: #111526;
    font-size: 17px;
    line-height: 1.3;
}

.kh-vps-resources__heading p {
    margin: 3px 0 0;
    color: #6c7485;
    font-size: 13px;
    line-height: 1.45;
}

.kh-vps-resources__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.kh-vps-resource-field {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.kh-vps-resource-field > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #303648;
    font-size: 12px;
    font-weight: 800;
}

.kh-vps-resource-field > span i {
    color: #108e91;
}

.kh-vps-resource-field select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 34px 0 11px;
    border: 1px solid #cfd6e2;
    border-radius: 5px;
    background-color: #fff;
    color: #171c2b;
    font: inherit;
    font-size: 13px;
}

.kh-vps-resource-field select:focus {
    border-color: #6f278b;
    outline: 3px solid rgba(111, 39, 139, .12);
}

.kh-vps-resources__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e5ddea;
}

.kh-vps-resources__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #58706e;
    font-size: 12px;
    font-weight: 700;
}

.kh-vps-resources__footer > span i {
    color: #087f6a;
}

@media (max-width: 991px) {
    .kh-vps-resources__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .kh-vps-resources {
        padding: 15px;
    }

    .kh-vps-resources__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .kh-vps-resources__footer .kh-button {
        width: 100%;
        justify-content: center;
    }
}

/* 2026-08-04: Kategori navigasyonu, çözüm merkezi ve tamamlayıcı satış akışları. */
/* Ortak üst başlık float kullandığı için sayfa gövdesini yeni satırda başlatır. */
#main-content {
    clear: both;
    width: 100%;
    min-width: 0;
}

.kh-primary-header {
    z-index: 120;
    overflow: visible !important;
    border-bottom: 1px solid #e1e5ec;
    background: #fff;
    box-shadow: 0 8px 24px rgba(25, 30, 47, .045);
}

.kh-primary-header .wrapper1545 {
    max-width: 1440px;
    padding: 0 24px;
}

.kh-primary-header .navbar {
    min-height: 84px;
    column-gap: 24px;
}

.kh-primary-header .navbar-brand img.kh-site-logo {
    width: 176px;
    max-height: 78px;
}

.kh-primary-header .navbar-collapse {
    overflow: visible;
}

.kh-primary-header .kh-primary-nav {
    gap: 3px;
}

.kh-primary-header .navbar-light .kh-primary-nav .nav-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #171b2c;
    font: 700 13px/1 "Plus Jakarta Sans", Arial, sans-serif;
    letter-spacing: 0;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.kh-primary-header .navbar-light .kh-primary-nav .nav-link:hover,
.kh-primary-header .navbar-light .kh-primary-nav .nav-link:focus-visible,
.kh-primary-header .kh-nav-group.is-open > .kh-nav-trigger {
    border-color: #eadcf0;
    background: #f8f2fa;
    color: #6f278b;
    box-shadow: inset 0 -2px #6f278b;
}

.kh-nav-trigger i {
    font-size: 9px;
    transition: transform .2s ease;
}

.kh-nav-group.is-open > .kh-nav-trigger i {
    transform: rotate(180deg);
}

.kh-nav-group {
    position: relative;
}

.kh-mega-menu {
    position: absolute;
    z-index: 200;
    top: calc(100% + 21px);
    left: 50%;
    display: grid;
    width: min(760px, calc(100vw - 48px));
    grid-template-columns: 218px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #dfe3eb;
    border-top: 3px solid #6f278b;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(25, 30, 47, .16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    visibility: hidden;
    transition: opacity .14s ease, transform .14s ease, visibility 0s linear .14s;
}

.kh-nav-group:nth-last-child(-n+3) .kh-mega-menu {
    right: 0;
    left: auto;
    transform: translateY(8px);
}

.kh-nav-group.is-open > .kh-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
    transition-delay: 0s;
}

.kh-nav-group:nth-last-child(-n+3).is-open > .kh-mega-menu {
    transform: translateY(0);
}

.kh-mega-menu__intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    background: #202638;
    color: #fff;
}

.kh-mega-menu__intro .kh-kicker { color: #58d0cb; }
.kh-mega-menu__intro strong { font-size: 20px; line-height: 1.35; }
.kh-mega-menu__intro small { color: #c5cad6; font-size: 12px; line-height: 1.65; }

.kh-mega-menu__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 12px;
    background: #eef0f4;
}

.kh-mega-menu--services {
    width: min(570px, calc(100vw - 48px));
    grid-template-columns: 1fr;
}

.kh-mega-menu__links > a {
    display: grid;
    min-height: 88px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 15px;
    background: #fff;
    color: #171b2c;
    text-decoration: none;
}

.kh-mega-menu__links > a > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 6px;
    background: #f5eef8;
    color: #6f278b;
    font-size: 16px;
}

.kh-mega-menu__links > a span { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.kh-mega-menu__links > a b { font-size: 13px; line-height: 1.3; }
.kh-mega-menu__links > a small { color: #6b7383; font-size: 10px; line-height: 1.35; }
.kh-mega-menu__links > a:hover,
.kh-mega-menu__links > a:focus-visible { background: #f8fafb; color: #6f278b; }

.kh-mega-menu__footer {
    grid-column: 1 / -1;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 18px;
    border-top: 1px solid #e6e8ed;
    background: #fff;
    color: #6f278b;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.kh-primary-header .navbar-toggler {
    display: none !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: #6f278b;
    color: #fff;
    font-size: 18px;
}

.kh-cross-sell {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin: 18px 0 24px;
    padding: 20px 22px;
    border: 1px solid #d9dee7;
    border-left: 4px solid #149b98;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(29, 35, 52, .07);
}

.kh-cross-sell__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 6px;
    background: #e9f7f5;
    color: #087e74;
    font-size: 21px;
}

.kh-cross-sell__copy { min-width: 0; }
.kh-cross-sell__copy .kh-kicker { color: #6f278b; }
.kh-cross-sell__copy h2,
.kh-cross-sell__copy h3 { margin: 4px 0 6px; color: #171b2c; font-size: 19px; line-height: 1.35; }
.kh-cross-sell__copy p { margin: 0; color: #667083; font-size: 12px; line-height: 1.6; }
.kh-cross-sell__actions { display: flex; max-width: 260px; flex-direction: column; align-items: stretch; gap: 8px; text-align: center; }
.kh-cross-sell__actions .kh-button { justify-content: center; white-space: normal; }
.kh-cross-sell__actions > span,
.kh-cross-sell__skip { color: #727a89; font-size: 9px; line-height: 1.45; }
.kh-domain-hosting-offer { padding: 0 0 36px; background: #eef1f6; }
.kh-cross-sell--domain { margin: 0; }

.kh-order-legal {
    display: grid;
    gap: 14px;
}

.kh-order-legal__intro {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-left: 3px solid #159d91;
    background: #edf8f6;
}

.kh-order-legal__intro > i { margin-top: 2px; color: #087f73; font-size: 18px; }
.kh-order-legal__intro div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.kh-order-legal__intro strong { color: #171b2c; font-size: 13px; }
.kh-order-legal__intro span { color: #616b7b; font-size: 11px; line-height: 1.55; }
.kh-order-legal__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.kh-order-legal__links a { display: flex; min-height: 42px; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid #d9dee7; border-radius: 4px; color: #5e276f; font-size: 10px; font-weight: 800; text-decoration: none; }
.kh-order-legal__links a:hover,
.kh-order-legal__links a:focus-visible { border-color: #6f278b; background: #f8f2fa; }

.kh-order-summary--checkout .kh-checkout-submit {
    position: static !important;
    display: grid !important;
    width: 100%;
    min-height: 74px;
    height: auto !important;
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 8px;
    padding: 12px 13px !important;
    white-space: normal !important;
}

.kh-order-summary--checkout .kh-checkout-submit__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    line-height: 1.25;
}

.kh-order-summary--checkout .kh-checkout-submit__copy strong { font-size: 12px; overflow-wrap: anywhere; }
.kh-order-summary--checkout .kh-checkout-submit__copy small { color: rgba(255, 255, 255, .84); font-size: 8px; line-height: 1.4; }
.kh-order-summary--checkout .kh-security-note { position: static !important; display: flex; width: 100%; min-height: 0; align-items: flex-start; gap: 7px; margin: 12px 0 0 !important; padding: 0 2px; color: #687182; font-size: 9px; line-height: 1.55; overflow-wrap: anywhere; }

.kh-services-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #17182a;
    background-image: url('/assets/images/vps-banner.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
}

.kh-services-hero::before { position: absolute; inset: 0; background: rgba(17, 18, 35, .84); content: ''; }
.kh-services-hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: center; gap: 54px; padding-top: 70px; padding-bottom: 70px; }
.kh-services-hero__content { max-width: 760px; }
.kh-services-hero__content .kh-kicker { color: #55d5cf; }
.kh-services-hero__content h1 { max-width: 760px; margin: 12px 0 18px; color: #fff; font-size: 48px; line-height: 1.12; letter-spacing: 0; }
.kh-services-hero__content p { max-width: 670px; margin: 0; color: #d4d7df; font-size: 16px; line-height: 1.75; }
.kh-services-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.kh-button--light { border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.08); color: #fff; }
.kh-services-hero__signals { display: grid; border: 1px solid rgba(255,255,255,.2); background: rgba(20,22,39,.72); }
.kh-services-hero__signals span { display: grid; grid-template-columns: 38px 1fr; gap: 2px 12px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.kh-services-hero__signals span:last-child { border-bottom: 0; }
.kh-services-hero__signals i { grid-row: 1 / 3; align-self: center; color: #55d5cf; font-size: 20px; }
.kh-services-hero__signals b { color: #fff; font-size: 13px; }
.kh-services-hero__signals small { color: #aeb5c4; font-size: 10px; }

.kh-services-route { border-bottom: 1px solid #dde2e9; background: #fff; }
.kh-services-route .container { display: grid; min-height: 112px; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; }
.kh-services-route .container > div { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 2px 12px; }
.kh-services-route .container > div > span { grid-row: 1 / 3; color: #159a92; font-size: 18px; font-weight: 800; }
.kh-services-route strong { color: #171b2c; font-size: 13px; }
.kh-services-route small { color: #6b7382; font-size: 10px; }
.kh-services-route .container > i { color: #a8afbb; }

.kh-services-directory { padding: 82px 0; background: #f3f5f8; }
.kh-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); align-items: end; gap: 40px; margin-bottom: 32px; }
.kh-section-heading h2 { margin: 7px 0 0; color: #15192a; font-size: 34px; line-height: 1.2; }
.kh-section-heading > p { margin: 0; color: #667082; font-size: 13px; line-height: 1.7; }
.kh-service-family-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.kh-service-family { display: flex; min-height: 390px; flex-direction: column; padding: 26px; border: 1px solid #dce1e8; border-top: 3px solid #6f278b; border-radius: 6px; background: #fff; box-shadow: 0 12px 30px rgba(27, 32, 48, .06); }
.kh-service-family__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; border-radius: 6px; background: #f4ebf7; color: #6f278b; font-size: 19px; }
.kh-service-family__type { color: #118c85; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.kh-service-family h3 { margin: 6px 0 10px; color: #15192a; font-size: 21px; line-height: 1.3; }
.kh-service-family p { margin: 0; color: #697182; font-size: 12px; line-height: 1.7; }
.kh-service-family ul { display: grid; gap: 8px; margin: 20px 0 24px; padding: 18px 0 0; border-top: 1px solid #e5e8ee; list-style: none; }
.kh-service-family li { position: relative; padding-left: 17px; color: #353b4b; font-size: 10px; }
.kh-service-family li::before { position: absolute; top: 4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: #24aaa1; content: ''; }
.kh-service-family > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; color: #6f278b; font-size: 11px; font-weight: 800; text-decoration: none; }
.kh-services-cta { padding: 56px 0; border-top: 1px solid #dce1e8; background: #fff; }
.kh-services-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.kh-services-cta h2 { margin: 6px 0; color: #15192a; font-size: 29px; }
.kh-services-cta p { max-width: 720px; margin: 0; color: #687182; font-size: 12px; line-height: 1.7; }

@media (max-width: 1199.98px) {
    .kh-primary-header .wrapper1545 { padding: 0 18px; }
    .kh-primary-header .navbar { column-gap: 12px; }
    .kh-primary-header .navbar-brand img.kh-site-logo { width: 150px; }
    .kh-primary-header .navbar-light .kh-primary-nav .nav-link { padding: 0 7px; font-size: 11px; }
    .kh-service-family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    .kh-primary-header .wrapper1545 { min-height: 82px; padding: 0 16px; }
    .kh-primary-header .navbar { display: grid; min-height: 82px; grid-template-columns: minmax(0, 1fr) auto; }
    .kh-primary-header .navbar-brand { grid-column: 1; }
    .kh-primary-header .navbar-brand img.kh-site-logo { width: 142px; max-height: 70px; }
    .kh-primary-header .kh-header-controls { grid-column: 2; }
    .kh-primary-header .navbar-toggler { display: inline-flex !important; order: 3; }
    .kh-primary-header .navbar-collapse { position: absolute; top: 100%; right: -16px; left: -16px; z-index: 210; max-height: calc(100vh - 122px); overflow: auto; border-top: 1px solid #e1e4ea; border-bottom: 1px solid #d7dbe3; background: #fff; box-shadow: 0 18px 36px rgba(25,30,47,.15); }
    .kh-primary-header .navbar-collapse:not(.show) { display: none; }
    /* site.css içindeki eski !important kuralını geçersiz kılar; mobil kategori menüsü görünür kalır. */
    .kh-primary-header .navbar-collapse.show { display: block !important; }
    .kh-primary-header .kh-primary-nav { display: flex; width: 100%; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 10px 16px 18px; }
    .kh-primary-header .navbar-light .kh-primary-nav .nav-link { width: 100%; min-height: 48px; justify-content: space-between; padding: 0 12px; border-bottom: 1px solid #edf0f4; border-radius: 0; font-size: 13px; }
    .kh-nav-group { width: 100%; }
    .kh-mega-menu,
    .kh-nav-group:nth-last-child(-n+3) .kh-mega-menu { position: static; display: none; width: 100%; grid-template-columns: 1fr; border: 0; border-left: 3px solid #6f278b; border-radius: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; visibility: visible; transition: none; }
    .kh-nav-group.is-open > .kh-mega-menu,
    .kh-nav-group:nth-last-child(-n+3).is-open > .kh-mega-menu { display: grid; transform: none; }
    .kh-mega-menu__intro { display: none; }
    .kh-mega-menu__links { grid-template-columns: 1fr; padding: 5px 0 5px 8px; }
    .kh-mega-menu__links > a { min-height: 64px; padding: 10px 12px; }
    .kh-mega-menu__footer { justify-content: flex-start; }
    .kh-cross-sell { grid-template-columns: 48px minmax(0, 1fr); }
    .kh-cross-sell__actions { grid-column: 1 / -1; width: 100%; max-width: none; align-items: stretch; }
    .kh-services-hero .container { grid-template-columns: 1fr; gap: 30px; }
    .kh-services-hero__signals { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .kh-services-hero__signals span { grid-template-columns: 1fr; text-align: center; }
    .kh-services-hero__signals i { grid-row: auto; }
    .kh-services-route .container { grid-template-columns: 1fr; gap: 12px; padding-top: 24px; padding-bottom: 24px; }
    .kh-services-route .container > i { display: none; }
    .kh-section-heading { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 767.98px) {
    .kh-primary-header .kh-header-commerce-actions { gap: 6px; }
    .kh-primary-header .kh-header-icon-link { width: 40px; height: 40px; }
    .kh-cross-sell { grid-template-columns: 1fr; gap: 13px; padding: 18px; }
    .kh-cross-sell__icon { width: 46px; height: 46px; }
    .kh-cross-sell__actions { grid-column: auto; }
    .kh-order-legal__links { grid-template-columns: 1fr; }
    .kh-services-hero { min-height: 0; }
    .kh-services-hero .container { padding-top: 48px; padding-bottom: 48px; }
    .kh-services-hero__content h1 { font-size: 34px; }
    .kh-services-hero__content p { font-size: 14px; }
    .kh-services-hero__actions { flex-direction: column; }
    .kh-services-hero__actions .kh-button { width: 100%; justify-content: center; }
    .kh-services-hero__signals { grid-template-columns: 1fr; }
    .kh-services-hero__signals span { grid-template-columns: 36px 1fr; text-align: left; }
    .kh-services-hero__signals i { grid-row: 1 / 3; }
    .kh-services-directory { padding: 56px 0; }
    .kh-section-heading h2 { font-size: 28px; }
    .kh-service-family-grid { grid-template-columns: 1fr; }
    .kh-service-family { min-height: 0; padding: 22px; }
    .kh-services-cta .container { flex-direction: column; align-items: flex-start; }
}

/* Blog bilgi merkezi */
.kh-blog-hero {
    padding: 64px 0 68px;
    background: #202437;
    color: #fff;
}

.kh-blog-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 28px;
}

.kh-blog-hero__copy { max-width: 820px; text-align: center; }
.kh-blog-hero__copy .kh-kicker { color: #57d2cc; }
.kh-blog-hero h1 { max-width: 820px; margin: 10px 0 15px; color: #fff; font-size: 44px; line-height: 1.14; }
.kh-blog-hero p { max-width: 740px; margin: 0 auto; color: #d4d8e1; font-size: 15px; line-height: 1.75; }
.kh-blog-search { display: grid; width: min(100%, 760px); gap: 10px; }
.kh-blog-search > label { color: #d7dbe4; font-size: 10px; font-weight: 800; text-align: center; }
.kh-blog-search > div { display: grid; min-height: 60px; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; overflow: hidden; padding-left: 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 7px; background: #fff; box-shadow: 0 18px 38px rgba(5, 9, 25, .22); }
.kh-blog-search i { color: #6f278b; }
.kh-blog-search input { width: 100%; min-width: 0; height: 58px; border: 0; outline: 0; color: #171b2c; font-size: 13px; }
.kh-blog-search button { min-width: 112px; align-self: stretch; padding: 0 24px; border: 0; background: #6f278b; color: #fff; font-size: 11px; font-weight: 800; transition: background-color .16s ease; }
.kh-blog-search button:hover,
.kh-blog-search button:focus-visible { background: #542066; }

.kh-blog-categories { border-bottom: 1px solid #dfe3e9; background: #fff; }
.kh-blog-categories .container { display: flex; gap: 6px; overflow-x: auto; padding-top: 13px; padding-bottom: 13px; scrollbar-width: thin; }
.kh-blog-categories a { display: inline-flex; min-height: 38px; flex: 0 0 auto; align-items: center; padding: 0 14px; border: 1px solid #dce0e7; border-radius: 4px; color: #4e5667; font-size: 10px; font-weight: 800; text-decoration: none; }
.kh-blog-categories a.is-active,
.kh-blog-categories a:hover { border-color: #6f278b; background: #6f278b; color: #fff; }

.kh-blog-index { padding: 58px 0 84px; background: #f3f5f8; }
.kh-blog-featured { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); overflow: hidden; border: 1px solid #dce1e8; border-radius: 6px; background: #fff; box-shadow: 0 18px 42px rgba(27,32,48,.08); }
.kh-blog-featured__media { display: block; min-height: 420px; overflow: hidden; background: #272c3d; }
.kh-blog-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.kh-blog-featured__copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.kh-blog-category { display: inline-flex; width: fit-content; min-height: 26px; align-items: center; padding: 0 9px; border-radius: 4px; background: #e9f7f5; color: #087c72; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.kh-blog-featured h2 { margin: 14px 0 14px; font-size: 30px; line-height: 1.28; }
.kh-blog-featured h2 a,
.kh-blog-card h3 a { color: #15192a; text-decoration: none; }
.kh-blog-featured p { margin: 0; color: #646d7e; font-size: 13px; line-height: 1.75; }
.kh-blog-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; color: #7a8291; font-size: 9px; font-weight: 700; }
.kh-blog-read { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: #6f278b; font-size: 11px; font-weight: 800; text-decoration: none; }
.kh-blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 56px 0 22px; }
.kh-blog-section-heading h2 { margin: 5px 0 0; color: #15192a; font-size: 28px; }
.kh-blog-section-heading > span { color: #727a89; font-size: 10px; }
.kh-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.kh-blog-card { overflow: hidden; border: 1px solid #dce1e8; border-radius: 6px; background: #fff; box-shadow: 0 10px 28px rgba(27,32,48,.055); }
.kh-blog-card__media { display: block; height: 210px; overflow: hidden; background: #252a3a; }
.kh-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.kh-blog-card:hover .kh-blog-card__media img { transform: scale(1.025); }
.kh-blog-card__body { display: flex; min-height: 260px; flex-direction: column; padding: 22px; }
.kh-blog-card h3 { margin: 12px 0 10px; font-size: 17px; line-height: 1.45; }
.kh-blog-card p { margin: 0; color: #687182; font-size: 11px; line-height: 1.65; }
.kh-blog-card footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; color: #7c8493; font-size: 9px; }
.kh-blog-card footer a { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 4px; background: #f3eaf6; color: #6f278b; }

.kh-blog-article { background: #f3f5f8; }
.kh-blog-article__header { padding: 58px 0 50px; background: #202437; color: #fff; }
.kh-blog-article__header .container { max-width: 980px; }
.kh-blog-article__header nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: #bfc5d1; font-size: 9px; }
.kh-blog-article__header nav a { color: #56d3cc; text-decoration: none; }
.kh-blog-article__header nav i { font-size: 7px; }
.kh-blog-article__header h1 { max-width: 900px; margin: 14px 0 16px; color: #fff; font-size: 42px; line-height: 1.2; }
.kh-blog-article__header > .container > p { max-width: 820px; margin: 0; color: #d6dae2; font-size: 15px; line-height: 1.7; }
.kh-blog-article__header .kh-blog-meta { color: #c2c7d2; }
.kh-blog-article__layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 24px; padding-top: 42px; padding-bottom: 70px; }
.kh-blog-article__layout > main { min-width: 0; overflow: hidden; border: 1px solid #dce1e8; border-radius: 6px; background: #fff; }
.kh-blog-cover { margin: 0; background: #202437; }
.kh-blog-cover img { display: block; width: 100%; height: min(480px, 48vw); object-fit: cover; }
.kh-blog-cover figcaption { padding: 9px 18px; background: #f6f7f9; color: #737c8c; font-size: 9px; }
.kh-blog-content { padding: 38px 48px 46px; color: #383f4f; font-size: 14px; line-height: 1.85; overflow-wrap: anywhere; }
.kh-blog-content h2 { margin: 38px 0 13px; color: #15192a; font-size: 25px; line-height: 1.32; }
.kh-blog-content h2:first-of-type { margin-top: 30px; }
.kh-blog-content h3 { margin: 28px 0 12px; color: #212638; font-size: 18px; }
.kh-blog-content p { margin: 0 0 18px; }
.kh-blog-content ul,
.kh-blog-content ol { display: grid; gap: 9px; margin: 0 0 24px; padding-left: 22px; }
.kh-blog-lead { padding-left: 18px; border-left: 4px solid #159d94; color: #4d5667; font-size: 16px; font-weight: 600; }
.kh-blog-inline-media { margin: 30px 0; overflow: hidden; border: 1px solid #e0e3e9; border-radius: 6px; background: #f7f8fa; }
.kh-blog-inline-media img { display: block; width: 100%; max-height: 410px; object-fit: cover; }
.kh-blog-inline-media figcaption { padding: 10px 14px; color: #727b8b; font-size: 9px; }
.kh-blog-product-callout { margin: 30px 0; padding: 23px; border: 1px solid #d8c7e0; border-left: 4px solid #6f278b; border-radius: 4px; background: #faf7fb; }
.kh-blog-product-callout > span { color: #108b83; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.kh-blog-product-callout strong { display: block; margin-top: 5px; color: #171b2c; font-size: 19px; }
.kh-blog-product-callout p { margin: 8px 0 14px; font-size: 11px; }
.kh-blog-product-callout a { display: inline-flex; min-height: 38px; align-items: center; padding: 0 14px; border-radius: 4px; background: #6f278b; color: #fff; font-size: 10px; font-weight: 800; text-decoration: none; }
.kh-blog-summary { display: grid; gap: 13px; margin: 24px 0 30px; padding: 20px; border: 1px solid #dce2e9; border-left: 4px solid #159d94; border-radius: 4px; background: #f6f8fa; }
.kh-blog-summary > span { color: #6f278b; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.kh-blog-summary > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.kh-blog-summary b { display: flex; min-height: 54px; align-items: center; padding: 10px 12px; border: 1px solid #e0e4ea; border-radius: 4px; background: #fff; color: #252b3c; font-size: 10px; line-height: 1.45; }
.kh-blog-comparison { margin: 28px 0; overflow-x: auto; border: 1px solid #dce2e9; border-radius: 4px; }
.kh-blog-comparison table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; font-size: 11px; line-height: 1.55; }
.kh-blog-comparison th { padding: 13px 15px; background: #202437; color: #fff; text-align: left; }
.kh-blog-comparison td { padding: 13px 15px; border-top: 1px solid #e5e8ed; vertical-align: top; }
.kh-blog-comparison tbody tr:nth-child(even) { background: #f7f8fa; }
.kh-blog-metrics { margin: 30px 0; padding: 24px; border-top: 3px solid #159d94; background: #202437; color: #fff; }
.kh-blog-metrics h3 { margin-top: 0; color: #fff; }
.kh-blog-metrics > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.kh-blog-metrics article { padding: 15px; border: 1px solid rgba(255,255,255,.15); background: #292e42; }
.kh-blog-metrics b { color: #59d4ce; font-size: 11px; }
.kh-blog-metrics p { margin: 7px 0 0; color: #d9dde6; font-size: 10px; line-height: 1.6; }
.kh-blog-faq details { margin-top: 9px; border: 1px solid #dce2e9; border-radius: 4px; background: #fff; }
.kh-blog-faq summary { padding: 14px 16px; color: #252b3c; font-size: 12px; font-weight: 800; cursor: pointer; }
.kh-blog-faq details p { margin: 0; padding: 0 16px 16px; color: #596273; font-size: 11px; }
.kh-blog-article__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 48px; border-top: 1px solid #e1e5eb; color: #727b8b; font-size: 9px; }
.kh-blog-article__footer a { color: #6f278b; font-weight: 800; text-decoration: none; }
.kh-blog-sidebar { position: sticky; top: 24px; display: grid; gap: 16px; }
.kh-blog-sidebar > section { padding: 22px; border: 1px solid #dce1e8; border-radius: 6px; background: #fff; }
.kh-blog-sidebar h2 { margin: 5px 0 18px; color: #171b2c; font-size: 20px; }
.kh-blog-sidebar > section > a { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 11px; padding: 12px 0; border-top: 1px solid #e8eaf0; color: #252b3c; text-decoration: none; }
.kh-blog-sidebar > section > a img { width: 76px; height: 56px; object-fit: cover; border-radius: 3px; }
.kh-blog-sidebar > section > a span { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.kh-blog-sidebar > section > a b { font-size: 10px; line-height: 1.45; }
.kh-blog-sidebar > section > a small { color: #858c99; font-size: 8px; }
.kh-blog-sidebar .kh-blog-sidebar__help { border-top: 3px solid #159d94; background: #202437; color: #fff; }
.kh-blog-sidebar__help > i { color: #59d4ce; font-size: 22px; }
.kh-blog-sidebar .kh-blog-sidebar__help h2 { color: #fff; }
.kh-blog-sidebar__help p { color: #cbd0db; font-size: 11px; line-height: 1.65; }
.kh-blog-sidebar .kh-blog-sidebar__help > a { display: inline-flex; width: auto; min-height: 38px; grid-template-columns: none; align-items: center; justify-content: center; padding: 0 14px; border: 0; border-radius: 4px; background: #56d2cc; color: #15202c; font-size: 10px; font-weight: 800; }
.kh-blog-recommended { padding: 62px 0 80px; border-top: 1px solid #dce1e8; background: #fff; }
.kh-blog-recommended > .container > header { margin-bottom: 22px; }
.kh-blog-recommended h2 { margin: 5px 0 0; color: #171b2c; font-size: 28px; }

@media (max-width: 991.98px) {
    .kh-blog-hero .container { grid-template-columns: 1fr; gap: 28px; }
    .kh-blog-featured { grid-template-columns: 1fr; }
    .kh-blog-featured__media { min-height: 340px; }
    .kh-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kh-blog-article__layout { grid-template-columns: 1fr; }
    .kh-blog-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
    .kh-blog-hero { padding: 48px 0; }
    .kh-blog-hero h1 { font-size: 34px; }
    .kh-blog-search > div { grid-template-columns: 34px minmax(0, 1fr); padding: 0 10px; border-radius: 6px; }
    .kh-blog-search button { grid-column: 1 / -1; min-height: 46px; margin: 0 -10px; }
    .kh-blog-featured__media { min-height: 240px; }
    .kh-blog-featured__copy { padding: 24px; }
    .kh-blog-featured h2 { font-size: 24px; }
    .kh-blog-grid { grid-template-columns: 1fr; }
    .kh-blog-card__body { min-height: 0; }
    .kh-blog-article__header { padding: 44px 0 38px; }
    .kh-blog-article__header h1 { font-size: 32px; }
    .kh-blog-cover img { height: 260px; }
    .kh-blog-content { padding: 28px 21px 34px; font-size: 13px; }
    .kh-blog-content h2 { font-size: 22px; }
    .kh-blog-summary > div,
    .kh-blog-metrics > div { grid-template-columns: 1fr; }
    .kh-blog-article__footer { flex-direction: column; align-items: flex-start; padding: 18px 21px; }
    .kh-blog-sidebar { grid-template-columns: 1fr; }
}

/* Ödeme adımlarını geniş ekranlarda ferah, dar ekranlarda taşmasız tutar. */
.kh-checkout-section-band {
    padding-top: 48px;
    background: #f4f6f9;
}

.kh-checkout-section-band > .container,
.kh-purchase-hero > .container {
    max-width: 1260px;
}

.kh-checkout-section-band .kh-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 392px;
    gap: 30px;
}

.kh-checkout-section-band .kh-checkout-section,
.kh-checkout-section-band .kh-order-summary--checkout {
    border-color: #d8dee8;
    box-shadow: 0 14px 36px rgba(25, 31, 49, .07);
}

.kh-checkout-section-band .kh-checkout-section {
    padding: 27px;
    border-top-color: #b890c7;
}

.kh-checkout-section-band .kh-order-summary--checkout {
    padding: 25px;
}

.kh-checkout-section-band .kh-checkout-line > div,
.kh-checkout-section-band .kh-checkout-line > span,
.kh-checkout-section-band .kh-order-summary dd {
    min-width: 0;
}

.kh-checkout-section-band .kh-checkout-line > div {
    flex: 1;
}

.kh-checkout-section-band .kh-checkout-line strong,
.kh-checkout-section-band .kh-checkout-line small,
.kh-checkout-section-band .kh-checkout-line > span,
.kh-checkout-section-band .kh-order-summary dd {
    overflow-wrap: anywhere;
}

.kh-checkout-submit {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    min-height: 68px !important;
    align-items: center;
    gap: 10px;
    padding: 10px 13px !important;
    text-align: left;
    white-space: normal !important;
}

.kh-checkout-submit__icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 5px;
    background: rgba(255, 255, 255, .12);
}

.kh-checkout-submit__copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.kh-checkout-submit__copy strong,
.kh-checkout-submit__copy small {
    display: block;
    overflow-wrap: anywhere;
}

.kh-checkout-submit__copy strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
}

.kh-checkout-submit__copy small {
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .kh-checkout-section-band .kh-checkout-layout { grid-template-columns: minmax(0, 1fr); }
    .kh-checkout-section-band .kh-order-summary--checkout { grid-row: 1; }
}

@media (max-width: 575.98px) {
    .kh-checkout-section-band { padding-top: 28px; }
    .kh-checkout-section-band .kh-checkout-section,
    .kh-checkout-section-band .kh-order-summary--checkout { padding: 18px; }
    .kh-checkout-section-band .kh-payment-option { align-items: flex-start; flex-wrap: wrap; }
    .kh-checkout-section-band .kh-payment-option > em { margin-left: 44px; }
    .kh-checkout-submit { min-height: 64px !important; }
}

.kh-header-commerce-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: 0;
}

.kh-header-icon-link,
.kh-icon-button {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: var(--khc-surface);
    color: var(--khc-ink);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.kh-header-icon-link:hover,
.kh-header-icon-link:focus-visible,
.kh-icon-button:hover,
.kh-icon-button:focus-visible {
    border-color: var(--khc-brand);
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    text-decoration: none;
}

.kh-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: var(--khc-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
}

.kh-commerce {
    clear: both;
    width: 100%;
    color: var(--khc-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.kh-commerce *,
.kh-commerce *::before,
.kh-commerce *::after {
    box-sizing: border-box;
}

.kh-commerce h1,
.kh-commerce h2,
.kh-commerce h3,
.kh-commerce p,
.kh-commerce dl {
    margin-top: 0;
}

.kh-commerce h1,
.kh-commerce h2,
.kh-commerce h3 {
    color: var(--khc-ink);
    letter-spacing: 0;
}

.kh-commerce h1 {
    margin-bottom: 14px;
    font-size: 42px;
    line-height: 1.16;
}

.kh-commerce h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.3;
}

.kh-commerce h3 {
    font-size: 17px;
    line-height: 1.35;
}

.kh-commerce p {
    color: var(--khc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.kh-commerce-hero {
    padding: 70px 0 48px;
    border-bottom: 1px solid var(--khc-border);
    background: var(--khc-canvas);
}

.kh-commerce-hero--compact {
    padding-top: 44px;
    padding-bottom: 36px;
}

.kh-commerce-heading {
    max-width: 820px;
}

.kh-commerce-heading p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 17px;
}

.kh-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--khc-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kh-commerce-section {
    padding: 64px 0;
    background: var(--khc-surface);
}

.kh-commerce-section--muted,
.kh-panel-page,
.kh-auth-page {
    background: var(--khc-canvas);
}

.kh-section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.kh-category-tabs,
.kh-filter-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.kh-category-tabs button,
.kh-filter-row button {
    min-height: 40px;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: var(--khc-surface);
    color: var(--khc-muted);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.kh-category-tabs button.is-active,
.kh-filter-row button.is-active {
    border-color: var(--khc-brand);
    background: var(--khc-brand);
    color: #fff;
}

.kh-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kh-product-card {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: var(--khc-surface);
}

.kh-product-card[hidden] {
    display: none;
}

.kh-product-card__top,
.kh-cart-item__heading,
.kh-cart-item__footer,
.kh-panel-header,
.kh-panel-section__heading,
.kh-admin-products article > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.kh-product-icon,
.kh-metric-icon,
.kh-panel-avatar {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1d4e8;
    border-radius: 7px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 18px;
}

.kh-product-card h2 {
    margin: 20px 0 8px;
    font-size: 21px;
}

.kh-product-card > p {
    min-height: 78px;
    margin-bottom: 18px;
    font-size: 14px;
}

.kh-spec-list,
.kh-summary-list,
.kh-cart-config,
.kh-order-summary dl,
.kh-profile-summary {
    margin: 0;
}

.kh-spec-list > div,
.kh-summary-list > div,
.kh-cart-config > div,
.kh-order-summary dl > div,
.kh-profile-summary > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #eef1f5;
}

.kh-spec-list dt,
.kh-summary-list dt,
.kh-cart-config dt,
.kh-order-summary dt,
.kh-profile-summary dt {
    color: var(--khc-muted);
    font-size: 12px;
    font-weight: 600;
}

.kh-spec-list dd,
.kh-summary-list dd,
.kh-cart-config dd,
.kh-order-summary dd,
.kh-profile-summary dd {
    margin: 0;
    color: var(--khc-ink);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.kh-product-card__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding: 18px 0;
}

.kh-product-card__price span {
    color: var(--khc-ink);
    font-size: 20px;
    font-weight: 800;
}

.kh-product-card__price small,
.kh-line-price small,
.kh-service-row__renewal small,
.kh-checkout-line small {
    color: var(--khc-muted);
    font-size: 11px;
    line-height: 1.5;
}

.kh-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.kh-button:hover,
.kh-button:focus-visible {
    text-decoration: none;
}

.kh-button--primary {
    border-color: var(--khc-brand);
    background: var(--khc-brand);
    color: #fff;
}

.kh-button--primary:hover,
.kh-button--primary:focus-visible {
    border-color: var(--khc-brand-dark);
    background: var(--khc-brand-dark);
    color: #fff;
}

.kh-button--ghost {
    border-color: var(--khc-border);
    background: #fff;
    color: var(--khc-ink);
}

.kh-button--ghost:hover,
.kh-button--ghost:focus-visible {
    border-color: var(--khc-brand);
    color: var(--khc-brand);
}

.kh-button--danger {
    border-color: var(--khc-danger);
    background: var(--khc-danger);
    color: #fff;
}

.kh-button--wide {
    width: 100%;
}

.kh-button--small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
}

.kh-button:disabled {
    border-color: #cfd5df;
    background: #dfe3e9;
    color: #7b8493;
    cursor: not-allowed;
}

.kh-status {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 5px;
    background: #eef1f5;
    color: #4c5668;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.kh-status--featured,
.kh-status--success {
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-status--draft {
    background: var(--khc-warning-soft);
    color: var(--khc-warning);
}

.kh-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    padding: 14px 16px;
    border: 1px solid var(--khc-border);
    border-radius: 7px;
    background: #f8fafc;
    color: var(--khc-ink);
    font-size: 13px;
    line-height: 1.55;
}

.kh-notice > i {
    color: var(--khc-brand);
    font-size: 18px;
}

.kh-notice > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.kh-notice--warning {
    border-color: #ead79a;
    background: var(--khc-warning-soft);
}

.kh-notice--warning > i {
    color: var(--khc-warning);
}

.kh-notice--success {
    border-color: #a7d9ca;
    background: var(--khc-success-soft);
}

.kh-notice--success > i {
    color: var(--khc-success);
}

.kh-compare-wrap,
.kh-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

.kh-compare-table,
.kh-data-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.kh-compare-table th,
.kh-compare-table td,
.kh-data-table th,
.kh-data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--khc-border);
    color: var(--khc-ink);
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    vertical-align: middle;
}

.kh-compare-table thead th,
.kh-data-table thead th {
    background: #f8fafc;
    color: #4f596b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-compare-table thead th:not(:first-child) {
    min-width: 180px;
    text-align: center;
}

.kh-compare-table td {
    text-align: center;
}

.kh-compare-table thead span,
.kh-compare-table thead small {
    display: block;
}

.kh-compare-table thead span {
    color: var(--khc-ink);
    font-size: 15px;
    text-transform: none;
}

.kh-compare-table thead small {
    margin-top: 3px;
    color: var(--khc-success);
    font-size: 10px;
    text-transform: none;
}

.kh-back-link,
.kh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--khc-brand);
    font-size: 13px;
    font-weight: 800;
}

.kh-back-link {
    margin-bottom: 18px;
}

.kh-configurator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 28px;
}

.kh-configurator__main {
    min-width: 0;
}

.kh-configurator__summary,
.kh-order-summary {
    position: sticky;
    top: 24px;
    padding: 22px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--khc-shadow);
}

.kh-form-section,
.kh-checkout-section,
.kh-panel-section,
.kh-panel-form,
.kh-ticket-history {
    margin: 0 0 20px;
    padding: 24px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

fieldset.kh-form-section {
    min-width: 0;
}

.kh-form-section legend {
    width: auto;
    margin: 0 0 18px;
    padding: 0;
    color: var(--khc-ink);
    font-size: 18px;
    font-weight: 800;
}

.kh-plan-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.kh-plan-option {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.kh-plan-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.kh-plan-option > span {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--khc-border);
    border-radius: 7px;
    background: #fff;
}

.kh-plan-option input:checked + span {
    border-color: var(--khc-brand);
    box-shadow: 0 0 0 2px rgba(104, 40, 135, .12);
}

.kh-plan-option strong,
.kh-check-option strong {
    color: var(--khc-ink);
    font-size: 15px;
}

.kh-plan-option small,
.kh-check-option small {
    display: block;
    margin-top: 7px;
    color: var(--khc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.kh-plan-option em {
    margin-top: auto;
    padding-top: 12px;
    color: var(--khc-brand);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.kh-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kh-form-grid > .kh-form-field--full {
    grid-column: 1 / -1;
}

.kh-commerce label {
    display: block;
    margin: 0;
    color: var(--khc-ink);
    font-size: 12px;
    font-weight: 700;
}

.kh-commerce label > span:first-child {
    display: block;
    margin-bottom: 7px;
}

.kh-commerce input:not([type="checkbox"]):not([type="radio"]),
.kh-commerce select,
.kh-commerce textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #cfd6e1;
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: var(--khc-ink);
    font: inherit;
    font-size: 13px;
    line-height: 1.45;
}

.kh-commerce textarea {
    min-height: 100px;
    resize: vertical;
}

.kh-commerce input:focus,
.kh-commerce select:focus,
.kh-commerce textarea:focus {
    border-color: var(--khc-brand);
    box-shadow: 0 0 0 3px rgba(104, 40, 135, .1);
}

.kh-field-error,
.kh-validation {
    display: block;
    margin-top: 6px;
    color: var(--khc-danger);
    font-size: 11px;
    font-weight: 700;
}

.kh-validation:empty {
    display: none;
}

.kh-validation ul {
    margin: 0;
    padding-left: 18px;
}

.kh-addon-group + .kh-addon-group {
    margin-top: 22px;
}

.kh-addon-group h2 {
    margin-bottom: 12px;
    font-size: 14px;
}

.kh-addon-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kh-check-option {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    min-height: 76px;
    padding: 13px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    cursor: pointer;
}

.kh-check-option input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    accent-color: var(--khc-brand);
}

.kh-price-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--khc-border);
    border-bottom: 1px solid var(--khc-border);
}

.kh-price-total span {
    color: var(--khc-muted);
    font-size: 11px;
}

.kh-price-total strong {
    color: var(--khc-ink);
    font-size: 24px;
}

.kh-price-total small {
    color: var(--khc-warning);
    font-size: 10px;
}

.kh-security-note {
    display: flex;
    gap: 8px;
    margin: 14px 0 0;
    color: var(--khc-muted) !important;
    font-size: 10px !important;
    line-height: 1.5 !important;
}

.kh-empty-state,
.kh-confirmation-panel {
    max-width: 680px;
    margin: 0 auto;
    padding: 52px 32px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.kh-empty-state > i {
    margin-bottom: 18px;
    color: var(--khc-brand);
    font-size: 38px;
}

.kh-empty-state--panel {
    max-width: none;
    margin: 0;
}

.kh-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 28px;
}

.kh-cart-items {
    min-width: 0;
}

.kh-cart-item {
    margin-bottom: 14px;
    padding: 22px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

.kh-cart-item__heading {
    justify-content: flex-start;
}

.kh-cart-item__heading > div {
    flex: 1;
}

.kh-cart-item__heading h2 {
    margin: 0;
    font-size: 17px;
}

.kh-cart-item__heading p {
    margin: 3px 0 0;
    font-size: 12px;
}

.kh-cart-config {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin: 18px 0;
    padding: 10px 14px;
    background: #f8fafc;
}

.kh-cart-item__footer {
    padding-top: 14px;
    border-top: 1px solid var(--khc-border);
}

.kh-cart-item__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 14px;
}

.kh-period-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.kh-period-form label {
    display: grid;
    width: 188px;
    gap: 5px;
}

.kh-period-form label > span,
.kh-quantity-form label > span {
    color: #687284;
    font-size: 10px;
    font-weight: 800;
}

.kh-period-form select {
    width: 100%;
    min-height: 38px;
    padding: 0 34px 0 11px;
    border: 1px solid #cfd6e1;
    border-radius: 5px;
    background-color: #fff;
    color: var(--khc-ink);
    font: inherit;
    font-size: 11px;
    font-weight: 750;
}

.kh-period-form select:focus {
    border-color: var(--khc-brand);
    outline: 3px solid rgba(102, 36, 131, .1);
}

.kh-quantity-form {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.kh-quantity-form label {
    width: 82px;
}

.kh-quantity-form input {
    min-height: 38px !important;
}

.kh-line-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.kh-line-price strong {
    color: var(--khc-ink);
    font-size: 16px;
}

.kh-order-summary dl {
    margin: 18px 0;
}

.kh-order-summary__total {
    margin-top: 8px;
    padding-top: 15px !important;
    border-top: 2px solid var(--khc-ink);
}

.kh-order-summary__total dt,
.kh-order-summary__total dd {
    color: var(--khc-ink);
    font-size: 15px;
    font-weight: 800;
}

.kh-summary-warning {
    margin: 14px 0;
    padding: 12px;
    border-left: 3px solid var(--khc-warning);
    background: var(--khc-warning-soft);
    color: #735200 !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
}

.kh-order-summary .kh-text-link {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}

.kh-auth-page {
    min-height: 680px;
    padding: 70px 0;
}

.kh-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    align-items: center;
    gap: 70px;
}

.kh-auth-intro {
    max-width: 540px;
}

.kh-auth-intro h1 {
    font-size: 40px;
}

.kh-auth-intro ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.kh-auth-intro li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--khc-ink);
    font-size: 14px;
    font-weight: 700;
}

.kh-auth-intro li i {
    color: var(--khc-success);
}

.kh-auth-form {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--khc-shadow);
}

.kh-form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.kh-auth-form--wide {
    min-width: 560px;
}

.kh-form-title h2 {
    margin-bottom: 5px;
}

.kh-form-title p {
    margin-bottom: 0;
    font-size: 13px;
}

.kh-password-field {
    position: relative;
    display: block;
}

.kh-password-field input {
    padding-right: 46px !important;
}

.kh-password-toggle {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--khc-muted);
    cursor: pointer;
}

.kh-inline-check {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    color: var(--khc-ink);
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.55;
}

.kh-inline-check input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 1px;
    accent-color: var(--khc-brand);
}

.kh-inline-check a {
    color: var(--khc-brand);
    font-weight: 800;
}

.kh-inline-check small {
    color: var(--khc-success);
}

.kh-consent-list {
    display: grid;
    gap: 10px;
}

.kh-cookie-banner {
    position: fixed;
    z-index: 10020;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid #d8dce6;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(24, 27, 44, 0.18);
}

.kh-cookie-banner[hidden],
.kh-cookie-modal[hidden] {
    display: none;
}

.kh-cookie-banner__copy {
    min-width: 0;
}

.kh-cookie-banner__copy strong {
    display: block;
    margin-bottom: 4px;
    color: #171a2b;
    font-size: 16px;
}

.kh-cookie-banner__copy p {
    max-width: 650px;
    margin: 0;
    color: #5d6373;
    font-size: 14px;
    line-height: 1.55;
}

.kh-cookie-banner__actions,
.kh-cookie-modal__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.kh-cookie-modal {
    position: fixed;
    z-index: 10030;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(17, 18, 28, 0.62);
}

.kh-cookie-modal__panel {
    width: min(560px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 56px rgba(12, 13, 22, 0.3);
}

.kh-cookie-modal__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.kh-cookie-modal__heading h2 {
    margin: 3px 0 0;
    color: #171a2b;
    font-size: 24px;
}

.kh-cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid #eceef3;
    cursor: pointer;
}

.kh-cookie-option div {
    min-width: 0;
}

.kh-cookie-option strong,
.kh-cookie-option span {
    display: block;
}

.kh-cookie-option strong {
    color: #202334;
    font-size: 15px;
}

.kh-cookie-option span {
    margin-top: 3px;
    color: #687080;
    font-size: 13px;
}

.kh-cookie-option input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: #6f2c91;
}

.kh-cookie-modal__actions {
    justify-content: flex-end;
    margin-top: 18px;
}

body.kh-modal-open {
    overflow: hidden;
}

.kh-footer-command {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.kh-footer-command:hover,
.kh-footer-command:focus-visible {
    color: #6f2c91;
}

.kh-form-footer {
    margin: 0 !important;
    color: var(--khc-muted) !important;
    font-size: 12px !important;
    text-align: center;
}

.kh-form-footer a {
    color: var(--khc-brand);
    font-weight: 800;
}

.kh-security-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #a7d9ca;
    border-radius: 7px;
    background: var(--khc-success-soft);
}

.kh-security-block > i {
    margin-top: 2px;
    color: var(--khc-success);
}

.kh-security-block div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kh-security-block span {
    color: #46645b;
    font-size: 11px;
    line-height: 1.55;
}

.kh-confirmation-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--khc-success-soft);
    color: var(--khc-success);
    font-size: 26px;
}

.kh-confirmation-icon--danger {
    background: var(--khc-danger-soft);
    color: var(--khc-danger);
}

.kh-confirmation-panel .kh-notice {
    text-align: left;
}

.kh-result-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 24px 0;
    border: 1px solid var(--khc-border);
    background: var(--khc-border);
}

.kh-result-summary > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px;
    background: #fff;
}

.kh-result-summary span {
    color: var(--khc-muted);
    font-size: 10px;
}

.kh-result-summary strong {
    color: var(--khc-ink);
    font-size: 13px;
}

.kh-panel-page {
    min-height: 760px;
    padding: 34px 0 70px;
}

/* Geniş ekranlarda müşteri paneline daha rahat bir çalışma alanı sağlar.
   Tablet ve mobil ölçüler Bootstrap'in mevcut kapsayıcı düzenini kullanmaya devam eder. */
@media (min-width: 1200px) {
    .kh-panel-page > .container {
        width: calc(100% - 48px);
        max-width: 1440px;
    }
}

.kh-panel-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.kh-panel-nav {
    position: sticky;
    top: 22px;
    overflow: hidden;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

.kh-panel-nav__user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    border-bottom: 1px solid var(--khc-border);
}

.kh-panel-nav__user > div {
    min-width: 0;
}

.kh-panel-nav__user strong,
.kh-panel-nav__user small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-panel-nav__user strong {
    color: var(--khc-ink);
    font-size: 12px;
}

.kh-panel-nav__user small {
    margin-top: 3px;
    color: var(--khc-muted);
    font-size: 9px;
}

.kh-panel-nav nav {
    display: grid;
    padding: 8px;
}

.kh-panel-nav nav a,
.kh-panel-nav form button {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 11px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #4c5668;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
}

.kh-panel-nav nav a:hover,
.kh-panel-nav nav a.is-active {
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-panel-nav nav a i,
.kh-panel-nav form button i {
    width: 18px;
    text-align: center;
}

.kh-panel-nav form {
    padding: 8px;
    border-top: 1px solid var(--khc-border);
}

.kh-panel-nav form button {
    width: 100%;
    color: var(--khc-danger);
    cursor: pointer;
}

.kh-panel-content {
    min-width: 0;
}

.kh-panel-header {
    align-items: flex-end;
    margin-bottom: 22px;
}

.kh-panel-header h1 {
    margin-bottom: 4px;
    font-size: 30px;
}

.kh-panel-header p {
    margin-bottom: 0;
    font-size: 13px;
}

.kh-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.kh-metric-grid article {
    display: flex;
    min-height: 102px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

.kh-metric-grid article > div {
    display: flex;
    flex-direction: column;
}

.kh-metric-grid strong {
    color: var(--khc-ink);
    font-size: 24px;
}

.kh-metric-grid article > div span {
    color: var(--khc-muted);
    font-size: 10px;
}

.kh-panel-section__heading {
    align-items: flex-start;
    margin-bottom: 18px;
}

.kh-panel-section__heading h2 {
    margin-bottom: 3px;
    font-size: 18px;
}

.kh-panel-section__heading p {
    margin-bottom: 0;
    font-size: 11px;
}

.kh-panel-section__heading a {
    color: var(--khc-brand);
    font-size: 11px;
    font-weight: 800;
}

.kh-panel-empty {
    padding: 28px;
    border: 1px dashed #c9d0dc;
    border-radius: 7px;
    color: var(--khc-muted);
    font-size: 12px;
    text-align: center;
}

.kh-service-list {
    display: grid;
    gap: 10px;
}

.kh-service-row {
    display: grid;
    grid-template-columns: 46px minmax(180px, 1fr) auto 150px 42px;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #fff;
}

.kh-service-row__main h2 {
    margin-bottom: 3px;
    font-size: 15px;
}

.kh-service-row__main p {
    margin-bottom: 0;
    font-size: 10px;
}

.kh-service-row__renewal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.kh-service-row__renewal strong {
    font-size: 11px;
}

.kh-service-row__renewal span {
    color: var(--khc-muted);
    font-size: 10px;
}

.kh-support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    align-items: start;
    gap: 20px;
}

.kh-panel-form {
    display: grid;
    gap: 15px;
    margin: 0;
}

.kh-ticket-history {
    margin: 0;
}

.kh-ticket-history > h2,
.kh-panel-form > h2 {
    margin-bottom: 15px;
    font-size: 18px;
}

.kh-ticket-history article {
    padding: 14px 0;
    border-bottom: 1px solid var(--khc-border);
}

.kh-ticket-history article:first-of-type {
    padding-top: 0;
}

.kh-ticket-history article:last-child {
    border-bottom: 0;
}

.kh-ticket-history h3 {
    margin: 8px 0 3px;
    font-size: 13px;
}

.kh-ticket-history p,
.kh-ticket-history small {
    margin: 0;
    color: var(--khc-muted);
    font-size: 10px;
}

.kh-checkout-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 760px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.kh-checkout-steps li {
    position: relative;
    padding-top: 22px;
    color: var(--khc-muted);
    font-size: 10px;
    font-weight: 800;
}

.kh-checkout-steps li::before {
    position: absolute;
    top: 7px;
    right: 10px;
    left: 0;
    height: 2px;
    background: #cfd5df;
    content: "";
}

.kh-checkout-steps li::after {
    position: absolute;
    top: 2px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #cfd5df;
    border-radius: 50%;
    background: var(--khc-canvas);
    content: "";
}

.kh-checkout-steps li.is-complete::before,
.kh-checkout-steps li.is-active::before {
    background: var(--khc-brand);
}

.kh-checkout-steps li.is-complete::after,
.kh-checkout-steps li.is-active::after {
    border-color: var(--khc-brand);
    background: var(--khc-brand);
}

.kh-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 28px;
}

.kh-checkout-main {
    min-width: 0;
}

.kh-checkout-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.kh-checkout-section__heading > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--khc-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.kh-checkout-section__heading h2 {
    margin-bottom: 2px;
    font-size: 18px;
}

.kh-checkout-section__heading p {
    margin-bottom: 0;
    font-size: 11px;
}

.kh-profile-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.kh-payment-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px !important;
    padding: 14px;
    border: 1px solid var(--khc-border);
    border-radius: 7px;
}

.kh-payment-option.is-selected {
    border-color: var(--khc-brand);
    background: #fbf8fd;
}

.kh-payment-option.is-disabled {
    opacity: .62;
}

.kh-payment-option > i {
    width: 28px;
    color: var(--khc-brand);
    font-size: 18px;
    text-align: center;
}

.kh-payment-option > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.kh-payment-option small {
    color: var(--khc-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.kh-order-summary--checkout {
    width: 100%;
}

.kh-checkout-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--khc-border);
}

.kh-checkout-line > div {
    display: flex;
    flex-direction: column;
}

.kh-checkout-line strong,
.kh-checkout-line > span {
    font-size: 11px;
}

.kh-admin-page > .container {
    max-width: 1400px;
}

.kh-admin-products {
    display: grid;
    gap: 14px;
}

.kh-admin-products > article {
    border: 1px solid var(--khc-border);
    border-radius: 7px;
}

.kh-admin-products article > header {
    justify-content: flex-start;
    padding: 14px;
    background: #f8fafc;
}

.kh-admin-products article > header > i {
    width: 34px;
    color: var(--khc-brand);
    font-size: 18px;
    text-align: center;
}

.kh-admin-products h3 {
    margin-bottom: 2px;
    font-size: 14px;
}

.kh-admin-products p {
    margin-bottom: 0;
    font-size: 10px;
}

.kh-price-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) repeat(4, minmax(110px, 150px)) 42px;
    align-items: end;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid var(--khc-border);
}

.kh-price-row > strong {
    align-self: center;
    font-size: 12px;
}

.kh-price-row label > span {
    font-size: 9px;
}

.kh-price-row input,
.kh-price-row select {
    min-height: 38px !important;
}

.kh-approval-control {
    display: flex;
}

@media (max-width: 1199.98px) {
    .kh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-price-row {
        grid-template-columns: repeat(4, minmax(0, 1fr)) 42px;
    }

    .kh-price-row > strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .kh-header-commerce-actions {
        margin-left: 0;
    }

    .kh-configurator,
    .kh-cart-layout,
    .kh-checkout-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-configurator__summary,
    .kh-order-summary {
        position: static;
    }

    .kh-auth-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .kh-auth-intro {
        max-width: 720px;
    }

    .kh-auth-form--wide {
        min-width: 0;
    }

    .kh-panel-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-panel-nav {
        position: static;
    }

    .kh-panel-nav nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: auto;
    }

    .kh-panel-nav nav a {
        justify-content: center;
        white-space: nowrap;
    }

    .kh-panel-nav__user,
    .kh-panel-nav form {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .kh-cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: block;
        padding: 16px;
    }

    .kh-cookie-banner__actions,
    .kh-cookie-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .kh-cookie-banner__actions .kh-button,
    .kh-cookie-modal__actions .kh-button {
        width: 100%;
    }

    .kh-cookie-modal {
        align-items: end;
        padding: 12px;
    }

    .kh-cookie-modal__panel {
        max-height: calc(100vh - 24px);
        padding: 20px 16px;
    }

    .kh-header-icon-link {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .kh-commerce h1,
    .kh-auth-intro h1 {
        font-size: 32px;
    }

    .kh-commerce-hero {
        padding: 46px 0 34px;
    }

    .kh-commerce-section,
    .kh-auth-page {
        padding: 44px 0;
    }

    .kh-product-grid,
    .kh-form-grid,
    .kh-addon-list,
    .kh-profile-summary,
    .kh-support-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-product-card {
        min-height: 0;
    }

    .kh-product-card > p {
        min-height: 0;
    }

    .kh-plan-selector {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-plan-option > span {
        min-height: 116px;
    }

    .kh-cart-config {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-service-row {
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }

    .kh-service-row__renewal {
        grid-column: 2 / -1;
        align-items: flex-start;
    }

    .kh-service-row > .kh-icon-button {
        grid-column: 3;
        grid-row: 1;
    }

    .kh-panel-nav nav {
        grid-template-columns: repeat(5, minmax(120px, 1fr));
    }

    .kh-price-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) 42px;
    }

    .kh-result-summary {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kh-header-commerce-actions {
        gap: 5px;
    }

    .kh-header-icon-link {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 14px;
    }

    .kh-commerce h1,
    .kh-auth-intro h1 {
        font-size: 28px;
    }

    .kh-commerce-heading p {
        font-size: 14px;
    }

    .kh-product-card,
    .kh-form-section,
    .kh-checkout-section,
    .kh-panel-section,
    .kh-panel-form,
    .kh-ticket-history,
    .kh-auth-form {
        padding: 18px;
    }

    .kh-cart-item {
        padding: 16px;
    }

    .kh-cart-item__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-line-price {
        align-items: flex-start;
    }

    .kh-metric-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-checkout-steps li {
        font-size: 8px;
    }

    .kh-confirmation-panel,
    .kh-empty-state {
        padding: 36px 18px;
    }

    .kh-price-row {
        grid-template-columns: minmax(0, 1fr) 42px;
    }

    .kh-price-row label,
    .kh-price-row > strong {
        grid-column: 1 / -1;
    }
}

/* Commerce UI refinement */
.kh-catalog-hero {
    padding-top: 64px;
    padding-bottom: 54px;
    border-bottom: 0;
    background: #18152a;
}

.kh-catalog-hero .kh-commerce-heading {
    max-width: 930px;
}

.kh-catalog-hero h1 {
    max-width: 780px;
    color: #fff;
    font-size: 46px;
}

.kh-catalog-hero .kh-commerce-heading > p {
    max-width: 790px;
    color: #cfd2de;
}

.kh-catalog-hero .kh-kicker {
    color: #67d1d5;
}

.kh-catalog-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.kh-catalog-domains span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #4b465c;
    border-radius: 6px;
    background: #26223a;
    color: #f4f5f8;
    font-size: 11px;
    font-weight: 700;
}

.kh-catalog-domains span:nth-child(1) i {
    color: #c897dd;
}

.kh-catalog-domains span:nth-child(2) i {
    color: #67d1d5;
}

.kh-catalog-domains span:nth-child(3) i {
    color: #76d3b4;
}

.kh-catalog-domains span:nth-child(4) i {
    color: #f1a79f;
}

.kh-catalog-hero .kh-notice {
    max-width: 850px;
    margin-bottom: 0;
}

.kh-catalog-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 26px;
}

.kh-catalog-intro > div:first-child {
    max-width: 760px;
}

.kh-catalog-intro h2 {
    margin-bottom: 6px;
    font-size: 29px;
}

.kh-catalog-intro p {
    margin-bottom: 0;
}

.kh-catalog-count {
    display: flex;
    min-width: 150px;
    flex-direction: column;
    padding-left: 18px;
    border-left: 3px solid var(--khc-accent-cyan);
}

.kh-catalog-count strong {
    color: var(--khc-ink);
    font-size: 30px;
    line-height: 1;
}

.kh-catalog-count span {
    margin-top: 6px;
    color: var(--khc-muted);
    font-size: 11px;
    font-weight: 700;
}

.kh-category-tabs {
    margin-bottom: 24px;
    padding: 5px;
    border: 1px solid var(--khc-border);
    border-radius: 8px;
    background: #f7f8fa;
}

.kh-category-tabs button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    border-color: transparent;
    background: transparent;
}

.kh-category-tabs button:hover,
.kh-category-tabs button:focus-visible {
    border-color: #ccd3df;
    background: #fff;
    color: var(--khc-ink);
}

.kh-category-tabs button.is-active {
    border-color: #29233d;
    background: #29233d;
    color: #fff;
    box-shadow: 0 6px 16px rgba(25, 22, 42, .12);
}

.kh-hosting-platform-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -10px 0 24px;
    padding: 14px 16px;
    border: 1px solid #ddd6e4;
    border-left: 4px solid var(--khc-brand);
    border-radius: 7px;
    background: #faf8fb;
}

.kh-hosting-platform-filter[hidden] {
    display: none;
}

.kh-hosting-platform-filter > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #454155;
    font-size: 12px;
    font-weight: 800;
}

.kh-hosting-platform-filter > span i {
    color: var(--khc-brand);
}

.kh-hosting-platform-filter > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    gap: 8px;
}

.kh-hosting-platform-filter button {
    display: grid;
    min-height: 54px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid #d5cfdb;
    border-radius: 6px;
    background: #fff;
    color: #3e3a4b;
    text-align: left;
    cursor: pointer;
}

.kh-hosting-platform-filter button > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 5px;
    background: #f2edf5;
    color: var(--khc-brand);
    font-size: 16px;
}

.kh-hosting-platform-filter button > span {
    display: grid;
    gap: 2px;
}

.kh-hosting-platform-filter button strong {
    font-size: 11px;
}

.kh-hosting-platform-filter button small {
    color: #727485;
    font-size: 9px;
}

.kh-hosting-platform-filter button.is-active {
    border-color: var(--khc-brand);
    background: #f5eef7;
    color: var(--khc-brand);
    box-shadow: 0 0 0 2px rgba(102, 36, 131, .08);
}

.kh-product-grid {
    gap: 16px;
}

.kh-product-card {
    --kh-card-accent: #662483;
    --kh-card-soft: #f3edf7;
    position: relative;
    display: grid;
    min-height: 570px;
    grid-template-rows: auto minmax(62px, auto) minmax(98px, auto) 1fr minmax(86px, auto) 50px;
    overflow: hidden;
    padding: 22px;
    border-top: 4px solid var(--kh-card-accent);
    box-shadow: 0 8px 24px rgba(25, 31, 49, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kh-product-card:hover {
    border-color: var(--kh-card-accent);
    box-shadow: 0 18px 38px rgba(25, 31, 49, .11);
    transform: translateY(-3px);
}

.kh-product-card[data-commerce-category="vps"] {
    --kh-card-accent: #6c2a88;
    --kh-card-soft: #f4edf7;
}

.kh-product-card[data-commerce-category="cloud-backup"] {
    --kh-card-accent: #087f8c;
    --kh-card-soft: #e8f6f7;
}

.kh-product-card[data-commerce-category="corporate-email"] {
    --kh-card-accent: #08705a;
    --kh-card-soft: #e8f6f1;
}

.kh-product-card[data-commerce-category="web-design"] {
    --kh-card-accent: #b5473c;
    --kh-card-soft: #fff0ed;
}

.kh-product-card .kh-product-icon {
    border-color: transparent;
    background: var(--kh-card-soft);
    color: var(--kh-card-accent);
}

.kh-product-card__labels {
    display: flex;
    min-width: 0;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
}

.kh-product-card .kh-product-card__top {
    min-height: 73px;
    align-items: flex-start;
}

.kh-category-badge {
    display: inline-flex;
    max-width: 150px;
    min-height: 25px;
    align-items: center;
    padding: 4px 8px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--kh-card-soft);
    color: var(--kh-card-accent);
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-product-card h2 {
    align-self: start;
    margin: 18px 0 7px;
    font-size: 20px;
}

.kh-product-card > p {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.7;
}

.kh-product-card .kh-spec-list {
    align-self: stretch;
}

.kh-product-card .kh-spec-list > div {
    min-height: 45px;
    align-items: center;
}

.kh-product-card .kh-spec-list dd {
    max-width: 58%;
    overflow-wrap: anywhere;
}

.kh-product-card__price {
    align-self: end;
    justify-content: center;
    margin-top: 0;
    padding: 16px 0 14px;
    border-top: 1px solid #eef1f5;
}

.kh-product-card > .kh-button {
    width: 100%;
    min-height: 50px;
    align-self: end;
    padding-top: 8px;
    padding-bottom: 8px;
    border-color: var(--kh-card-accent);
    background: var(--kh-card-accent);
}

.kh-product-card > .kh-button:hover,
.kh-product-card > .kh-button:focus-visible {
    border-color: #242033;
    background: #242033;
}

.kh-compare-wrap,
.kh-table-wrap {
    box-shadow: 0 10px 30px rgba(25, 31, 49, .055);
}

.kh-compare-table thead th:first-child,
.kh-compare-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #f7f8fa;
}

.kh-compare-table thead th {
    padding-top: 18px;
    padding-bottom: 18px;
}

.kh-order-summary,
.kh-configurator__summary {
    overflow: hidden;
    border-top: 4px solid var(--khc-brand);
}

.kh-order-summary > .kh-kicker {
    margin-bottom: 6px;
}

.kh-order-summary__total {
    margin-right: -10px;
    margin-left: -10px;
    padding: 15px 10px !important;
    border-top: 0;
    border-radius: 6px;
    background: #1f2333;
}

.kh-order-summary__total dt,
.kh-order-summary__total dd {
    color: #fff;
}

.kh-cart-item {
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--khc-accent-blue);
    box-shadow: 0 8px 26px rgba(25, 31, 49, .055);
}

.kh-cart-config {
    border-radius: 6px;
    background: #f6f8fa;
}

.kh-empty-state {
    border-top: 4px solid var(--khc-brand);
    box-shadow: var(--khc-shadow);
}

.kh-empty-state > i {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--khc-brand-soft);
}

.kh-form-section,
.kh-checkout-section,
.kh-panel-section,
.kh-panel-form,
.kh-ticket-history {
    border-top: 3px solid #c8b2d2;
    box-shadow: 0 7px 24px rgba(25, 31, 49, .045);
}

.kh-auth-page {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 76px 0;
    background: #f2f4f7;
}

.kh-auth-page::before {
    display: none;
    content: none;
}

.kh-auth-layout {
    grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
    gap: 78px;
}

.kh-auth-intro {
    position: relative;
    padding-left: 24px;
}

.kh-auth-intro::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 3px;
    background: var(--khc-accent-cyan);
    content: "";
}

.kh-auth-intro h1 {
    max-width: 530px;
    margin-bottom: 18px;
    font-size: 42px;
}

.kh-auth-intro > p {
    max-width: 520px;
    font-size: 16px;
}

.kh-auth-intro li {
    min-height: 38px;
}

.kh-auth-intro li i {
    display: inline-flex;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--khc-success-soft);
    font-size: 11px;
}

.kh-auth-form {
    position: relative;
    gap: 18px;
    padding: 34px;
    border-top: 4px solid var(--khc-brand);
    box-shadow: 0 22px 52px rgba(27, 31, 48, .11);
}

.kh-form-title--with-icon {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.kh-form-title--with-icon > div {
    min-width: 0;
}

.kh-form-title__icon {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 17px;
}

.kh-form-title h2 {
    font-size: 22px;
}

.kh-auth-form label > span:first-child {
    font-size: 12px;
    font-weight: 800;
}

.kh-auth-form input:not([type="checkbox"]):not([type="radio"]),
.kh-auth-form select {
    min-height: 48px;
    background: #fbfcfd;
}

.kh-password-toggle {
    top: 4px;
}

.kh-password-strength {
    display: grid;
    gap: 6px;
    margin-top: 7px;
}

.kh-password-strength__bars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
}

.kh-password-strength__bars i {
    height: 3px;
    border-radius: 2px;
    background: #dfe3ea;
}

.kh-password-strength[data-score="1"] .kh-password-strength__bars i:nth-child(-n+1),
.kh-password-strength[data-score="2"] .kh-password-strength__bars i:nth-child(-n+2) {
    background: #d97706;
}

.kh-password-strength[data-score="3"] .kh-password-strength__bars i:nth-child(-n+3) {
    background: var(--khc-accent-cyan);
}

.kh-password-strength[data-score="4"] .kh-password-strength__bars i {
    background: var(--khc-success);
}

.kh-password-strength small {
    color: var(--khc-muted);
    font-size: 10px;
    font-weight: 600;
}

.kh-security-block {
    border-left: 4px solid var(--khc-success);
}

.kh-panel-page {
    background: #f2f4f7;
}

.kh-panel-nav {
    border-color: #292e40;
    background: #202536;
    box-shadow: 0 14px 34px rgba(22, 27, 43, .14);
}

.kh-panel-nav__user {
    border-bottom-color: #363c4e;
}

.kh-panel-nav__user strong {
    color: #fff;
}

.kh-panel-nav__user small {
    color: #aeb5c5;
}

.kh-panel-nav .kh-panel-avatar {
    border-color: #564f68;
    background: #332d45;
    color: #c997dc;
}

.kh-panel-nav nav a,
.kh-panel-nav form button {
    color: #c9ced9;
}

.kh-panel-nav nav a:hover,
.kh-panel-nav nav a.is-active {
    background: #343047;
    color: #fff;
}

.kh-panel-nav nav a.is-active {
    box-shadow: inset 3px 0 0 #67d1d5;
}

.kh-panel-nav form {
    border-top-color: #363c4e;
}

.kh-panel-nav form button {
    color: #f4a39b;
}

.kh-panel-header {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--khc-border);
}

.kh-metric-grid article {
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--khc-brand);
    box-shadow: 0 7px 22px rgba(25, 31, 49, .05);
}

.kh-metric-grid article:nth-child(2) {
    border-top-color: var(--khc-accent-cyan);
}

.kh-metric-grid article:nth-child(2) .kh-metric-icon {
    border-color: #c8eaec;
    background: #e8f6f7;
    color: var(--khc-accent-cyan);
}

.kh-metric-grid article:nth-child(3) {
    border-top-color: #b7791f;
}

.kh-metric-grid article:nth-child(3) .kh-metric-icon {
    border-color: #f3dfbc;
    background: #fff7e8;
    color: #9a6700;
}

.kh-metric-grid article:nth-child(4) {
    border-top-color: var(--khc-success);
}

.kh-metric-grid article:nth-child(4) .kh-metric-icon {
    border-color: #bfe4d7;
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-checkout-steps li::before {
    height: 3px;
}

.kh-checkout-steps li::after {
    top: 1px;
    width: 14px;
    height: 14px;
    border-width: 3px;
}

.kh-checkout-section__heading > span {
    background: #29233d;
}

@media (max-width: 1199.98px) {
    .kh-product-card {
        min-height: 535px;
        grid-template-rows: auto minmax(54px, auto) minmax(76px, auto) 1fr minmax(80px, auto) 50px;
    }
}

@media (max-width: 991.98px) {
    .kh-auth-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .kh-auth-intro {
        max-width: 780px;
    }

    .kh-panel-nav {
        background: #fff;
        box-shadow: 0 7px 22px rgba(25, 31, 49, .06);
    }

    .kh-panel-nav nav a {
        color: #4c5668;
    }

    .kh-panel-nav nav a:hover,
    .kh-panel-nav nav a.is-active {
        background: var(--khc-brand-soft);
        color: var(--khc-brand);
    }
}

@media (max-width: 767.98px) {
    .kh-catalog-hero {
        padding-top: 46px;
        padding-bottom: 40px;
    }

    .kh-catalog-hero h1 {
        font-size: 34px;
    }

    .kh-catalog-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .kh-catalog-count {
        min-width: 0;
    }

    .kh-product-card {
        min-height: 0;
        grid-template-rows: auto;
    }

    .kh-product-card .kh-product-card__top {
        min-height: 0;
    }

    .kh-auth-page {
        min-height: 0;
    }

    .kh-auth-page::before {
        right: 0;
        bottom: auto;
        width: auto;
        height: 6px;
    }

    .kh-auth-intro h1 {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .kh-catalog-domains {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-catalog-domains span {
        min-width: 0;
        font-size: 10px;
    }

    .kh-category-tabs {
        margin-right: -15px;
        margin-left: -15px;
        padding-right: 15px;
        padding-left: 15px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .kh-auth-intro {
        padding-left: 16px;
    }

    .kh-auth-form {
        padding: 20px;
    }

    .kh-form-title--with-icon {
        align-items: center;
    }

    .kh-form-title__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

/* VPS comparison */
.kh-compare-section {
    background: #eef2f5;
}

.kh-compare-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 26px;
}

.kh-compare-heading > div:first-child {
    max-width: 680px;
}

.kh-compare-heading h2 {
    margin-bottom: 7px;
    font-size: 30px;
}

.kh-compare-heading p {
    margin-bottom: 0;
}

.kh-compare-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.kh-compare-highlights span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #d5dce6;
    border-radius: 6px;
    background: #fff;
    color: #3e4758;
    font-size: 10px;
    font-weight: 800;
}

.kh-compare-highlights span:nth-child(2) i {
    color: var(--khc-accent-cyan);
}

.kh-compare-highlights span:nth-child(3) i {
    color: var(--khc-success);
}

.kh-compare-shell {
    overflow: hidden;
    border: 1px solid #d7dee8;
    border-top: 4px solid #29233d;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(25, 31, 49, .09);
}

.kh-compare-toolbar {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--khc-border);
    background: #f8f9fb;
}

.kh-compare-toolbar > span,
.kh-compare-toolbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
}

.kh-compare-toolbar > span {
    color: #535d6e;
}

.kh-compare-toolbar > span i {
    color: var(--khc-success);
}

.kh-compare-toolbar a {
    color: var(--khc-brand);
}

.kh-compare-shell .kh-compare-wrap {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.kh-compare-shell .kh-compare-table {
    min-width: 920px;
}

.kh-compare-shell .kh-compare-table th,
.kh-compare-shell .kh-compare-table td {
    padding: 15px 20px;
}

.kh-compare-shell .kh-compare-table thead th {
    height: 126px;
    background: #fff;
    text-transform: none;
    vertical-align: top;
}

.kh-compare-shell .kh-compare-table thead th:first-child {
    z-index: 3;
    width: 210px;
    background: #f7f8fa;
    vertical-align: middle;
}

.kh-compare-feature-heading {
    color: #4b5566 !important;
    font-size: 11px !important;
    letter-spacing: 0;
    text-transform: uppercase !important;
}

.kh-compare-plan-heading {
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    text-align: left;
}

.kh-compare-plan-heading > div {
    min-width: 0;
}

.kh-compare-plan-number {
    display: inline-flex !important;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #edf0f4;
    color: #4f5969 !important;
    font-size: 11px !important;
    font-weight: 800;
}

.kh-compare-plan-heading > div > span {
    color: var(--khc-ink);
    font-size: 16px;
    font-weight: 800;
}

.kh-compare-plan-heading small {
    min-height: 38px;
    margin-top: 4px !important;
    color: var(--khc-muted) !important;
    font-size: 9px !important;
    font-weight: 600;
    line-height: 1.45;
}

.kh-compare-plan-heading em {
    grid-column: 2;
    justify-self: start;
    padding: 4px 7px;
    border-radius: 4px;
    background: var(--khc-brand);
    color: #fff;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-compare-shell .kh-compare-table .is-recommended {
    background: #fbf8fd;
    box-shadow: inset 1px 0 #eadff0, inset -1px 0 #eadff0;
}

.kh-compare-shell .kh-compare-table thead .is-recommended {
    background: #f4edf7;
}

.kh-compare-shell .kh-compare-table tbody th {
    z-index: 2;
    width: 210px;
    background: #f7f8fa;
    white-space: nowrap;
}

.kh-compare-feature-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    border-radius: 6px;
    background: #e9edf2;
    color: #4a5668;
    font-size: 11px;
    vertical-align: middle;
}

.kh-compare-price-row th,
.kh-compare-price-row td {
    border-top: 2px solid #cfd6e1;
}

.kh-compare-price-row td strong,
.kh-compare-price-row td small {
    display: block;
}

.kh-compare-price-row td strong {
    color: var(--khc-ink);
    font-size: 15px;
}

.kh-compare-price-row td small {
    margin-top: 3px;
    color: var(--khc-muted);
    font-size: 9px;
}

.kh-compare-footnote {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 890px;
    margin: 17px 0 0;
    color: #5c6676 !important;
    font-size: 11px !important;
    line-height: 1.6 !important;
}

.kh-compare-footnote i {
    margin-top: 3px;
    color: var(--khc-accent-blue);
}

/* Customer orders */
.kh-status {
    gap: 6px;
}

.kh-status--info {
    background: #e8f1fb;
    color: #1d65a6;
}

.kh-status--danger {
    background: var(--khc-danger-soft);
    color: var(--khc-danger);
}

.kh-status--neutral {
    background: #edf0f4;
    color: #566173;
}

.kh-orders-header {
    margin-bottom: 16px;
}

.kh-order-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 22px;
}

.kh-order-metrics article {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid var(--khc-border);
    border-top: 3px solid var(--khc-brand);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(25, 31, 49, .045);
}

.kh-order-metrics article:nth-child(2) {
    border-top-color: #b7791f;
}

.kh-order-metrics article:nth-child(3) {
    border-top-color: var(--khc-accent-blue);
}

.kh-order-metrics article:nth-child(4) {
    border-top-color: var(--khc-success);
}

.kh-order-metric-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 14px;
}

.kh-order-metrics article:nth-child(2) .kh-order-metric-icon {
    background: #fff7e8;
    color: #9a6700;
}

.kh-order-metrics article:nth-child(3) .kh-order-metric-icon {
    background: #e8f1fb;
    color: var(--khc-accent-blue);
}

.kh-order-metrics article:nth-child(4) .kh-order-metric-icon {
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-order-metrics article > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.kh-order-metrics strong {
    color: var(--khc-ink);
    font-size: 22px;
    line-height: 1.1;
}

.kh-order-metrics article > div span {
    margin-top: 4px;
    color: var(--khc-muted);
    font-size: 9px;
    font-weight: 700;
}

.kh-order-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}

.kh-order-journey {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 24px 0 0;
    padding: 24px 0;
    border-top: 1px solid var(--khc-border);
    border-bottom: 1px solid var(--khc-border);
    list-style: none;
}

.kh-order-journey li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.kh-order-journey li > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4dae4;
    border-radius: 6px;
    background: #fff;
    color: var(--khc-brand);
    font-size: 10px;
    font-weight: 800;
}

.kh-order-journey strong,
.kh-order-journey small {
    display: block;
}

.kh-order-journey strong {
    color: var(--khc-ink);
    font-size: 12px;
}

.kh-order-journey small {
    margin-top: 4px;
    color: var(--khc-muted);
    font-size: 9px;
    line-height: 1.5;
}

.kh-order-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.kh-order-toolbar .kh-kicker {
    margin-bottom: 4px;
}

.kh-order-toolbar h2 {
    margin: 0;
    font-size: 20px;
}

.kh-order-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.kh-order-filters button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: #fff;
    color: #596375;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.kh-order-filters button span {
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 4px;
    background: #eef1f5;
    color: #515c6d;
    font-size: 9px;
}

.kh-order-filters button.is-active {
    border-color: #29233d;
    background: #29233d;
    color: #fff;
}

.kh-order-filters button.is-active span {
    background: #474057;
    color: #fff;
}

.kh-order-list {
    display: grid;
    gap: 14px;
}

.kh-order-card {
    overflow: hidden;
    border: 1px solid var(--khc-border);
    border-left: 4px solid var(--khc-accent-blue);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(25, 31, 49, .055);
}

.kh-order-card[hidden] {
    display: none;
}

.kh-order-card__header {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    border-bottom: 1px solid #e8ecf2;
}

.kh-order-identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.kh-order-icon {
    display: inline-flex;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e8f1fb;
    color: var(--khc-accent-blue);
    font-size: 16px;
}

.kh-order-identity > div {
    min-width: 0;
}

.kh-order-identity small {
    display: block;
    color: var(--khc-muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-order-identity h2 {
    margin: 2px 0 3px;
    font-size: 16px;
}

.kh-order-identity time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7a8391;
    font-size: 9px;
}

.kh-order-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.kh-order-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
    padding: 18px;
}

.kh-order-label {
    display: block;
    margin-bottom: 8px;
    color: #697386;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-order-product {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 49px;
    padding: 7px 0;
    border-bottom: 1px solid #edf0f4;
}

.kh-order-product > span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 11px;
}

.kh-order-product strong,
.kh-order-product small {
    display: block;
}

.kh-order-product strong {
    color: var(--khc-ink);
    font-size: 11px;
}

.kh-order-product small,
.kh-order-more {
    margin-top: 2px;
    color: var(--khc-muted);
    font-size: 8px;
}

.kh-order-product em {
    color: #596375;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.kh-order-finance {
    margin: 0;
    padding-left: 20px;
    border-left: 1px solid var(--khc-border);
}

.kh-order-finance > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #edf0f4;
}

.kh-order-finance dt {
    color: var(--khc-muted);
    font-size: 9px;
    font-weight: 700;
}

.kh-order-finance dd {
    margin: 0;
    color: var(--khc-ink);
    font-size: 10px;
    font-weight: 800;
    text-align: right;
}

.kh-order-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-top: 1px solid #e8ecf2;
    background: #f8f9fb;
}

.kh-order-progress {
    display: grid;
    min-width: 460px;
    grid-template-columns: repeat(4, minmax(82px, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.kh-order-progress li {
    position: relative;
    padding-top: 18px;
    color: #8a92a0;
    font-size: 8px;
    font-weight: 800;
}

.kh-order-progress li::before {
    position: absolute;
    top: 5px;
    right: 0;
    left: 8px;
    height: 2px;
    background: #d7dce4;
    content: "";
}

.kh-order-progress li:last-child::before {
    display: none;
}

.kh-order-progress li > span {
    position: absolute;
    z-index: 1;
    top: 1px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #c8ced8;
    border-radius: 50%;
    background: #f8f9fb;
}

.kh-order-progress li.is-complete {
    color: var(--khc-success);
}

.kh-order-progress li.is-complete::before {
    background: var(--khc-success);
}

.kh-order-progress li.is-complete > span {
    border-color: var(--khc-success);
    background: var(--khc-success);
}

@media (max-width: 1199.98px) {
    .kh-compare-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .kh-compare-highlights {
        justify-content: flex-start;
    }

    .kh-order-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-order-card__body {
        grid-template-columns: minmax(0, 1fr) 240px;
    }
}

@media (max-width: 767.98px) {
    .kh-compare-heading h2 {
        font-size: 25px;
    }

    .kh-compare-highlights {
        flex-wrap: nowrap;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .kh-compare-highlights span {
        flex: 0 0 auto;
    }

    .kh-compare-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 13px 15px;
    }

    .kh-orders-header {
        align-items: stretch;
    }

    .kh-orders-header .kh-button {
        width: 100%;
    }

    .kh-order-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-order-filters {
        width: 100%;
        justify-content: flex-start;
    }

    .kh-order-card__header,
    .kh-order-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-order-badges {
        justify-content: flex-start;
    }

    .kh-order-card__body {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .kh-order-finance {
        padding: 8px 0 0;
        border-top: 1px solid var(--khc-border);
        border-left: 0;
    }

    .kh-order-progress {
        width: 100%;
        min-width: 0;
    }

    .kh-order-card__footer .kh-button {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .kh-compare-shell {
        margin-right: -5px;
        margin-left: -5px;
    }

    .kh-compare-footnote {
        font-size: 10px !important;
    }

    .kh-order-metrics {
        gap: 8px;
    }

    .kh-order-metrics article {
        min-height: 78px;
        padding: 11px;
    }

    .kh-order-metric-icon {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
    }

    .kh-order-empty-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .kh-order-journey {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .kh-order-card__header,
    .kh-order-card__body,
    .kh-order-card__footer {
        padding: 14px;
    }

    .kh-order-progress {
        grid-template-columns: repeat(4, minmax(65px, 1fr));
        overflow-x: auto;
    }

    .kh-order-progress li {
        white-space: nowrap;
    }
}

/* Purchase flow and customer workspace refresh */
.kh-purchase-hero {
    padding-top: 38px;
    padding-bottom: 0;
    background: #eef1f5;
}

.kh-purchase-hero__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.kh-purchase-hero .kh-commerce-heading h1 {
    margin-bottom: 9px;
    font-size: 36px;
}

.kh-purchase-hero .kh-commerce-heading p {
    max-width: 670px;
    font-size: 14px;
}

.kh-purchase-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 4px;
}

.kh-purchase-assurance span {
    display: inline-flex;
    min-height: 35px;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #d4dbe5;
    border-radius: 6px;
    background: rgba(255, 255, 255, .75);
    color: #465164;
    font-size: 10px;
    font-weight: 800;
}

.kh-purchase-assurance i {
    color: var(--khc-success);
}

.kh-purchase-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 30px 0 0;
    padding: 0;
    border-top: 1px solid #d5dbe4;
    list-style: none;
}

.kh-purchase-steps li {
    position: relative;
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 11px;
    padding: 13px 20px 13px 0;
    color: #778193;
}

.kh-purchase-steps li::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 46px;
    height: 1px;
    background: #cbd2dc;
    content: "";
}

.kh-purchase-steps li:last-child::after {
    display: none;
}

.kh-purchase-steps li > span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c7ced9;
    border-radius: 50%;
    background: #fff;
    color: #667184;
    font-size: 10px;
    font-weight: 800;
}

.kh-purchase-steps li div,
.kh-purchase-steps li strong,
.kh-purchase-steps li small {
    display: block;
}

.kh-purchase-steps li strong {
    color: inherit;
    font-size: 11px;
}

.kh-purchase-steps li small {
    margin-top: 2px;
    color: #8790a0;
    font-size: 8px;
}

.kh-purchase-steps li.is-active,
.kh-purchase-steps li.is-complete {
    color: var(--khc-ink);
}

.kh-purchase-steps li.is-active > span {
    border-color: var(--khc-brand);
    background: var(--khc-brand);
    color: #fff;
}

.kh-purchase-steps li.is-complete > span {
    border-color: var(--khc-success);
    background: var(--khc-success);
    color: #fff;
}

.kh-cart-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.kh-cart-toolbar .kh-kicker {
    margin-bottom: 3px;
}

.kh-cart-toolbar h2 {
    margin: 0;
    font-size: 20px;
}

.kh-cart-item[data-product-type="vps"] {
    border-left-color: #1d65a6;
}

.kh-cart-item[data-product-type="cloud-backup"] {
    border-left-color: #087f8c;
}

.kh-cart-item[data-product-type="corporate-email"] {
    border-left-color: #7a4396;
}

.kh-cart-item[data-product-type="web-design"] {
    border-left-color: #b7791f;
}

.kh-cart-item__type {
    display: block;
    margin-bottom: 4px;
    color: var(--khc-accent-blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-cart-service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: -4px 0 16px;
    color: #6a7485;
    font-size: 9px;
}

.kh-cart-service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kh-cart-service-meta i {
    color: var(--khc-accent-cyan);
}

.kh-summary-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--khc-border);
}

.kh-summary-heading > div {
    min-width: 0;
    flex: 1;
}

.kh-summary-heading .kh-kicker {
    margin-bottom: 2px;
}

.kh-summary-heading h2 {
    margin: 0;
    font-size: 17px;
}

.kh-summary-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-summary-edit {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    color: #5d6676;
    text-decoration: none;
}

.kh-summary-edit:hover,
.kh-summary-edit:focus-visible {
    border-color: var(--khc-brand);
    color: var(--khc-brand);
}

.kh-summary-discount dt,
.kh-summary-discount dd {
    color: var(--khc-success) !important;
}

.kh-summary-assurance {
    display: grid;
    gap: 8px;
    margin: 18px -22px -22px;
    padding: 16px 22px;
    border-top: 1px solid var(--khc-border);
    background: #f7f9fb;
}

.kh-summary-assurance span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #5c6676;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.45;
}

.kh-summary-assurance i {
    margin-top: 2px;
    color: var(--khc-success);
}

.kh-summary-assurance--checkout {
    margin-top: 14px;
}

.kh-checkout-section__heading > div {
    min-width: 0;
    flex: 1;
}

.kh-checkout-section__link {
    flex: 0 0 auto;
    margin-top: 7px;
    color: var(--khc-brand);
    font-size: 9px;
    font-weight: 800;
}

.kh-checkout-account-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--khc-border);
}

.kh-checkout-account-status span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5f6979;
    font-size: 9px;
    font-weight: 800;
}

.kh-checkout-account-status .is-verified,
.kh-checkout-account-status .is-verified i {
    color: var(--khc-success);
}

.kh-checkout-account-status .is-pending,
.kh-checkout-account-status .is-pending i {
    color: var(--khc-warning);
}

.kh-payment-option {
    position: relative;
}

.kh-payment-option > span {
    min-width: 0;
    flex: 1;
}

.kh-payment-option > em {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 4px;
    background: var(--khc-success-soft);
    color: var(--khc-success);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.kh-payment-option.is-disabled > em {
    background: #edf0f4;
    color: #6d7787;
}

.kh-inline-check {
    align-items: center;
    min-height: 49px;
    padding: 10px 11px;
    border: 1px solid #e0e5ec;
    border-radius: 6px;
    background: #fbfcfd;
}

.kh-inline-check > span {
    min-width: 0;
    flex: 1;
}

.kh-inline-check > em {
    flex: 0 0 auto;
    padding: 3px 6px;
    border-radius: 4px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
}

.kh-inline-check > em.is-optional {
    background: #edf0f4;
    color: #687284;
}

.kh-panel-layout {
    grid-template-columns: 258px minmax(0, 1fr);
    gap: 28px;
}

.kh-panel-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 18px;
    border-bottom: 1px solid #363c4e;
    color: #fff;
    text-decoration: none;
}

.kh-panel-nav__brand > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #40384f;
    color: #69d1d5;
}

.kh-panel-nav__brand strong,
.kh-panel-nav__brand small {
    display: block;
}

.kh-panel-nav__brand strong {
    color: #fff;
    font-size: 13px;
}

.kh-panel-nav__brand small {
    margin-top: 1px;
    color: #aeb5c5;
    font-size: 8px;
}

.kh-panel-nav__user {
    align-items: flex-start;
}

.kh-panel-session {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    margin-top: 7px !important;
    color: #82d2bd !important;
    font-size: 7px !important;
    font-weight: 800;
}

.kh-panel-nav__label {
    display: block;
    padding: 10px 11px 5px;
    color: #858ea1;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-panel-nav__new-service {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px;
    border: 1px solid #555d72;
    border-radius: 6px;
    background: #2d3346;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.kh-panel-nav__new-service:hover,
.kh-panel-nav__new-service:focus-visible {
    border-color: #69d1d5;
    background: #363d51;
    color: #fff;
    text-decoration: none;
}

.kh-panel-welcome-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
}

.kh-panel-welcome-meta span {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid #d8dee7;
    border-radius: 5px;
    background: #fff;
    color: #626c7c;
    font-size: 8px;
    font-weight: 800;
}

.kh-panel-welcome-meta span.is-success {
    border-color: #c2e4d8;
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-panel-welcome-meta span.is-warning {
    border-color: #ead7a7;
    background: var(--khc-warning-soft);
    color: var(--khc-warning);
}

.kh-metric-grid article > div small {
    margin-top: 4px;
    color: #8a93a2;
    font-size: 7px;
    font-weight: 600;
}

.kh-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 18px;
}

.kh-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
    align-items: start;
    gap: 18px;
}

.kh-profile-section {
    margin: 0;
}

.kh-section-icon,
.kh-profile-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kh-section-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 6px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-profile-status {
    min-height: 34px;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    background: #fff;
    color: var(--khc-muted);
    font-size: 9px;
    font-weight: 800;
}

.kh-profile-status.is-verified {
    border-color: #bee3d6;
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-profile-status.is-pending {
    border-color: #ead7a7;
    background: var(--khc-warning-soft);
    color: var(--khc-warning);
}

.kh-profile-form {
    display: grid;
    gap: 18px;
}

.kh-profile-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--khc-border);
}

.kh-profile-form__footer small,
.kh-profile-form__footer a {
    color: var(--khc-muted);
    font-size: 9px;
    line-height: 1.5;
}

.kh-profile-form__footer a {
    color: var(--khc-brand);
    font-weight: 800;
}

.kh-profile-security__rules {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 13px 14px;
    border: 1px solid #e1e6ed;
    border-radius: 6px;
    background: #f8fafc;
    list-style: none;
}

.kh-profile-security__rules li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #586274;
    font-size: 9px;
    font-weight: 700;
}

.kh-profile-security__rules i {
    color: var(--khc-success);
}

@media (max-width: 1099.98px) {
    .kh-profile-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .kh-profile-status {
        margin-top: 12px;
    }

    .kh-profile-form .kh-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-profile-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .kh-profile-form__footer .kh-button {
        width: 100%;
    }
}

.kh-dashboard-grid > .kh-panel-section,
.kh-dashboard-side .kh-panel-section {
    margin-bottom: 0;
}

.kh-quick-actions nav {
    display: grid;
    gap: 4px;
}

.kh-quick-actions nav a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 10px;
    min-height: 55px;
    padding: 8px 0;
    border-bottom: 1px solid #e8ecf2;
    color: var(--khc-ink);
    text-decoration: none;
}

.kh-quick-actions nav a:last-child {
    border-bottom: 0;
}

.kh-quick-actions nav a > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-quick-actions nav a > div {
    min-width: 0;
}

.kh-quick-actions nav strong,
.kh-quick-actions nav small {
    display: block;
}

.kh-quick-actions nav strong {
    font-size: 10px;
}

.kh-quick-actions nav small {
    margin-top: 3px;
    color: var(--khc-muted);
    font-size: 8px;
}

.kh-quick-actions nav a > i {
    color: #9098a6;
    font-size: 9px;
}

.kh-quick-actions nav a:hover strong,
.kh-quick-actions nav a:focus-visible strong,
.kh-quick-actions nav a:hover > i,
.kh-quick-actions nav a:focus-visible > i {
    color: var(--khc-brand);
}

.kh-order-result {
    max-width: 790px;
    padding: 44px;
    text-align: left;
}

.kh-order-result .kh-confirmation-icon,
.kh-order-result > .kh-kicker,
.kh-order-result > h1,
.kh-order-result > p {
    display: block;
    text-align: center;
}

.kh-order-result > p {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.kh-result-next {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.kh-result-next li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 13px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: #fafbfd;
}

.kh-result-next li > span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccd3dd;
    border-radius: 50%;
    background: #fff;
    color: #667184;
    font-size: 8px;
    font-weight: 800;
}

.kh-result-next li.is-complete > span {
    border-color: var(--khc-success);
    background: var(--khc-success);
    color: #fff;
}

.kh-result-next strong,
.kh-result-next small {
    display: block;
}

.kh-result-next strong {
    color: var(--khc-ink);
    font-size: 10px;
}

.kh-result-next small {
    margin-top: 4px;
    color: var(--khc-muted);
    font-size: 8px;
    line-height: 1.45;
}

.kh-result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

@media (max-width: 1199.98px) {
    .kh-dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-quick-actions nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .kh-quick-actions nav a {
        border: 1px solid #e2e6ed;
        border-radius: 6px;
        padding: 10px;
    }
}

@media (max-width: 991.98px) {
    .kh-purchase-hero__row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .kh-purchase-assurance {
        justify-content: flex-start;
    }

    .kh-panel-nav__brand {
        display: none;
    }

    .kh-panel-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .kh-panel-nav__label {
        display: none;
    }

    .kh-panel-session {
        color: var(--khc-success) !important;
    }

    .kh-panel-nav__new-service {
        border-color: var(--khc-border);
        background: var(--khc-brand-soft);
        color: var(--khc-brand);
    }
}

@media (max-width: 767.98px) {
    .kh-purchase-hero .kh-commerce-heading h1 {
        font-size: 30px;
    }

    .kh-purchase-steps li {
        min-height: 64px;
        padding-right: 8px;
    }

    .kh-purchase-steps li::after {
        right: 8px;
        width: 18px;
    }

    .kh-purchase-steps li > span {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .kh-cart-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .kh-cart-service-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-inline-check {
        align-items: flex-start;
    }

    .kh-inline-check > em {
        display: none;
    }

    .kh-quick-actions nav {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-result-next {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kh-purchase-hero {
        padding-top: 28px;
    }

    .kh-purchase-assurance span {
        flex: 1 1 auto;
        justify-content: center;
    }

    .kh-purchase-steps li {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .kh-purchase-steps li::after {
        display: none;
    }

    .kh-purchase-steps li small {
        display: none;
    }

    .kh-cart-item__heading {
        align-items: flex-start;
    }

    .kh-checkout-section__link {
        display: none;
    }

    .kh-payment-option > em {
        display: none;
    }

    .kh-order-result {
        padding: 32px 20px;
    }

    .kh-result-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .kh-result-actions .kh-button {
        width: 100%;
    }
}

/* Authentication providers and conditional corporate fields */
[data-corporate-field][hidden] {
    display: none !important;
}

[data-corporate-field]:not([hidden]) {
    animation: kh-field-reveal .24s ease both;
}

@keyframes kh-field-reveal {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kh-auth-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    color: #7d8695;
    font-size: 10px;
    font-weight: 700;
}

.kh-auth-divider::before,
.kh-auth-divider::after {
    height: 1px;
    flex: 1;
    background: #e0e5ec;
    content: "";
}

.kh-auth-divider span {
    padding: 0 12px;
}

.kh-google-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #cfd6e1;
    border-radius: 6px;
    background: #fff;
    color: #293140;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.kh-google-button:hover:not(:disabled),
.kh-google-button:focus-visible:not(:disabled) {
    border-color: #9ea8b7;
    background: #fafbfd;
    box-shadow: 0 6px 16px rgba(29, 37, 54, .07);
}

.kh-google-button:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.kh-auth-primary-form {
    display: grid;
    gap: 18px;
    margin: 0;
}

.kh-external-auth-form {
    margin: 0;
}

.kh-google-mark {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5eb;
    border-radius: 50%;
    background: #fff;
    color: #2855a7;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.kh-auth-provider-note {
    display: block;
    margin-top: -9px;
    color: #7a8392;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.kh-plan-count {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 3px 7px;
    border: 1px solid #e0e5eb;
    border-radius: 4px;
    background: #fff;
    color: #687284;
    font-size: 8px;
    font-weight: 800;
}

.kh-product-card__price em {
    color: var(--kh-card-accent);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.kh-plan-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kh-plan-option > span {
    min-height: 148px;
}

/* Domain finder */
.kh-domain-hero {
    position: relative;
    clear: both;
    min-height: 430px;
    overflow: hidden;
    padding: 92px 0 124px;
    background-color: #191427;
    background-image: url("../assets/images/domain-registration-bg-img.webp");
    background-position: center;
    background-size: cover;
}

.kh-domain-hero::before,
.kh-home-domain::before {
    position: absolute;
    inset: 0;
    background: rgba(18, 15, 31, .84);
    content: "";
}

.kh-domain-hero > .container,
.kh-home-domain > .container {
    position: relative;
    z-index: 1;
}

.kh-domain-hero__content {
    max-width: 690px;
}

.kh-domain-hero .kh-kicker,
.kh-home-domain .kh-kicker {
    color: #5ad5d4;
}

.kh-domain-hero h1 {
    max-width: 650px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: 0;
}

.kh-domain-hero p {
    max-width: 660px;
    margin: 0;
    color: #d9dce6;
    font-size: 16px;
    line-height: 1.75;
}

.kh-domain-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.kh-domain-trust span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 6px;
    background: rgba(20, 18, 32, .58);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.kh-domain-trust i {
    color: #5ad5d4;
}

.kh-domain-finder {
    position: relative;
    z-index: 2;
    clear: both;
    margin-top: -68px;
    padding-bottom: 70px;
}

.kh-domain-search-shell {
    padding: 30px;
    border: 1px solid #dce2eb;
    border-top: 4px solid var(--khc-brand);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(18, 24, 42, .13);
}

.kh-domain-search-shell h2 {
    margin: 0 0 6px;
    color: var(--khc-ink);
    font-size: 27px;
    line-height: 1.3;
    letter-spacing: 0;
}

.kh-domain-search-shell > p {
    margin: 0 0 20px;
    color: var(--khc-muted);
    font-size: 13px;
}

.kh-domain-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.kh-domain-input-wrap,
.kh-home-domain__input {
    position: relative;
    min-width: 0;
}

.kh-domain-input-wrap i,
.kh-home-domain__input > i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: var(--khc-brand);
    transform: translateY(-50%);
}

.kh-domain-input-wrap input,
.kh-home-domain__input input {
    width: 100%;
    height: 56px;
    padding: 0 18px 0 49px;
    border: 1px solid #cfd6e1;
    border-radius: 6px;
    background: #fbfcfd;
    color: var(--khc-ink);
    font: inherit;
    font-size: 13px;
    outline: none;
}

.kh-domain-input-wrap input:focus,
.kh-home-domain__input input:focus {
    border-color: var(--khc-brand);
    box-shadow: 0 0 0 3px rgba(102, 36, 131, .12);
}

.kh-domain-form > button,
.kh-home-domain__form > button {
    min-height: 56px;
    padding: 0 22px;
    border: 1px solid var(--khc-brand);
    border-radius: 6px;
    background: var(--khc-brand);
    color: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.kh-domain-form > button:hover,
.kh-domain-form > button:focus-visible,
.kh-home-domain__form > button:hover,
.kh-home-domain__form > button:focus-visible {
    border-color: var(--khc-brand-dark);
    background: var(--khc-brand-dark);
}

.kh-domain-form > button:disabled,
.kh-home-domain__form > button:disabled {
    cursor: wait;
    opacity: .7;
}

.kh-domain-extension-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.kh-domain-extension-chips button {
    min-height: 31px;
    padding: 4px 10px;
    border: 1px solid #d9dfe8;
    border-radius: 5px;
    background: #fff;
    color: #566173;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

.kh-domain-extension-chips button:hover,
.kh-domain-extension-chips button:focus-visible {
    border-color: var(--khc-brand);
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-domain-result {
    min-height: 32px;
    margin-top: 18px;
    color: #687284;
    font-size: 10px;
    line-height: 1.6;
}

.kh-domain-results-shell {
    display: grid;
    gap: 13px;
}

.kh-domain-results-note {
    margin: 0 !important;
    color: #667184 !important;
    font-size: 9px !important;
}

.kh-domain-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kh-domain-result-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, .65fr) auto;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 14px;
    border: 1px solid #dce2eb;
    border-left: 4px solid #8a93a2;
    border-radius: 7px;
    background: #fff;
    color: var(--khc-ink);
    text-align: left;
}

.kh-domain-result-card.is-available {
    border-left-color: var(--khc-success);
}

.kh-domain-result-card.is-taken {
    border-left-color: #b5473c;
}

.kh-domain-result-card__heading,
.kh-domain-result-card__price {
    min-width: 0;
}

.kh-domain-result-card__heading {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow-wrap: anywhere;
    font-size: 11px;
    font-weight: 800;
}

.kh-domain-result-card.is-available .kh-domain-result-card__heading i {
    color: var(--khc-success);
}

.kh-domain-result-card.is-taken .kh-domain-result-card__heading i {
    color: #b5473c;
}

.kh-domain-result-card__price strong,
.kh-domain-result-card__price small {
    display: block;
}

.kh-domain-result-card__price strong {
    color: var(--khc-ink);
    font-size: 13px;
}

.kh-domain-result-card__price small {
    margin-top: 3px;
    color: #717b8b;
    font-size: 7px;
    line-height: 1.45;
}

.kh-domain-result-card__action {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid var(--khc-brand);
    border-radius: 5px;
    color: var(--khc-brand);
    font-size: 8px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.kh-domain-result-card__action:hover,
.kh-domain-result-card__action:focus-visible {
    background: var(--khc-brand);
    color: #fff;
    text-decoration: none;
}

.kh-domain-pricing {
    clear: both;
    padding: 62px 0 76px;
    background: #f2f4f7;
}

.kh-domain-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.kh-domain-section-heading h2 {
    margin: 0;
    color: var(--khc-ink);
    font-size: 28px;
    letter-spacing: 0;
}

.kh-domain-section-heading > p {
    max-width: 360px;
    margin: 0;
    color: var(--khc-muted);
    font-size: 11px;
    text-align: right;
}

.kh-domain-price-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.kh-domain-price-grid article {
    display: grid;
    gap: 7px;
    min-width: 0;
    padding: 14px;
    border: 1px solid #dce2eb;
    border-top: 3px solid var(--khc-brand);
    border-radius: 7px;
    background: #fff;
}

.kh-domain-price-grid strong {
    color: var(--khc-ink);
    font-size: 13px;
}

.kh-domain-price-grid span,
.kh-domain-price-grid span small,
.kh-domain-price-grid em {
    display: block;
}

.kh-domain-price-grid span {
    color: var(--khc-brand);
    font-size: 11px;
    font-weight: 800;
}

.kh-domain-price-grid span small,
.kh-domain-price-grid em {
    color: #717b8b;
    font-size: 7px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
}

/* Home domain search */
.kh-home-domain {
    position: relative;
    clear: both;
    width: 100%;
    overflow: hidden;
    padding: 78px 0;
    background-color: #191427;
    background-image: url("../assets/images/domain-registration-banner.webp");
    background-position: center;
    background-size: cover;
}

.kh-home-domain__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 25px;
}

.kh-home-domain__heading > div {
    max-width: 720px;
}

.kh-home-domain h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0;
}

.kh-home-domain__heading p {
    margin: 0;
    color: #d6d9e2;
    font-size: 13px;
    line-height: 1.7;
}

.kh-home-domain__heading > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: #70d7d8;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.kh-home-domain__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    max-width: 980px;
}

.kh-home-domain__input input {
    border-color: rgba(255, 255, 255, .35);
    background: #fff;
}

.kh-home-domain__form > button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-color: #5fcfd0;
    background: var(--khc-brand);
}

.kh-home-domain__extensions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.kh-home-domain__extensions span,
.kh-home-domain__extensions em {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 4px;
    color: #f2f3f7;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

.kh-home-domain__extensions em {
    border-color: transparent;
    color: #aeb5c4;
}

.kh-home-domain__result {
    min-height: 22px;
    margin-top: 18px;
    color: #c8ccd6;
    font-size: 9px;
}

.kh-home-domain__result .kh-domain-results-note {
    color: #c8ccd6 !important;
}

.kh-home-domain__result .kh-domain-results-grid {
    grid-template-columns: minmax(0, 1fr);
}

/* Weighted campaign wheel */
.kh-wheel-page {
    clear: both;
    width: 100%;
    overflow: hidden;
    color: var(--khc-ink);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.kh-wheel-stage {
    min-height: 680px;
    padding: 78px 0;
    background: #f1f3f6;
}

.kh-wheel-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    align-items: center;
    gap: 64px;
}

.kh-wheel-copy {
    max-width: 600px;
}

.kh-wheel-copy h1 {
    margin: 0 0 17px;
    color: #171c2b;
    font-size: 44px;
    line-height: 1.13;
    letter-spacing: 0;
}

.kh-wheel-copy > p {
    margin: 0;
    color: #606a7a;
    font-size: 15px;
    line-height: 1.75;
}

.kh-wheel-benefits {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.kh-wheel-benefits span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #404a5b;
    font-size: 10px;
    font-weight: 800;
}

.kh-wheel-benefits i {
    display: inline-flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e6f4f3;
    color: #087f8c;
}

.kh-wheel-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 13px;
    border: 1px solid #d7dee8;
    border-left: 4px solid #7b8494;
    border-radius: 6px;
    background: #fff;
    color: #4e5869;
    font-size: 10px;
    line-height: 1.55;
}

.kh-wheel-message.is-success {
    border-left-color: var(--khc-success);
    background: var(--khc-success-soft);
    color: var(--khc-success);
}

.kh-wheel-award {
    display: grid;
    width: 210px;
    gap: 2px;
    margin: 18px 0;
    padding: 13px 15px;
    border: 1px solid #d8dee7;
    border-top: 4px solid var(--khc-brand);
    border-radius: 7px;
    background: #fff;
}

.kh-wheel-award span,
.kh-wheel-award small {
    color: #687284;
    font-size: 8px;
    font-weight: 700;
}

.kh-wheel-award strong {
    color: var(--khc-brand);
    font-size: 31px;
    line-height: 1.1;
}

.kh-wheel-machine {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 35px;
    border: 1px solid #d8dee7;
    border-top: 4px solid #29233d;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(27, 32, 49, .12);
}

.kh-wheel {
    --wheel-rotation: 0deg;
    position: relative;
    width: min(440px, 78vw);
    aspect-ratio: 1;
    overflow: hidden;
    border: 10px solid #29233d;
    border-radius: 50%;
    background: conic-gradient(
        #662483 0deg 36deg,
        #087f8c 36deg 72deg,
        #1d65a6 72deg 108deg,
        #b5473c 108deg 144deg,
        #9a6700 144deg 180deg,
        #08705a 180deg 216deg,
        #4c5d75 216deg 252deg,
        #8b3f72 252deg 288deg,
        #28666e 288deg 324deg,
        #30374a 324deg 360deg);
    box-shadow: inset 0 0 0 8px #fff, 0 12px 32px rgba(30, 35, 52, .18);
    transform: rotate(var(--wheel-rotation));
}

.kh-wheel::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 7px solid #fff;
    border-radius: 50%;
    background: #29233d;
    box-shadow: 0 4px 16px rgba(15, 18, 30, .28);
    content: "";
    transform: translate(-50%, -50%);
}

.kh-wheel.is-spinning {
    transition: transform 5.4s cubic-bezier(.12, .68, .08, 1);
}

.kh-wheel > span {
    position: absolute;
    z-index: 1;
    inset: 15px 50% 50% 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .24);
    transform: rotate(calc((var(--segment) * 36deg) + 18deg));
    transform-origin: 100% 100%;
}

.kh-wheel-pointer {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 50%;
    width: 0;
    height: 0;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-top: 0;
    border-bottom: 42px solid #d42f44;
    filter: drop-shadow(0 3px 3px rgba(28, 31, 43, .26));
    transform: translateX(-50%) rotate(180deg);
}

.kh-wheel-action {
    margin-top: 25px;
}

.kh-wheel-action button {
    display: inline-flex;
    min-width: 184px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--khc-brand);
    border-radius: 6px;
    background: var(--khc-brand);
    color: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.kh-wheel-action button:disabled {
    border-color: #9ba3b0;
    background: #7e8796;
    cursor: not-allowed;
}

.kh-wheel-terms {
    padding: 64px 0 76px;
    background: #fff;
}

.kh-wheel-terms h2 {
    margin: 0 0 22px;
    color: var(--khc-ink);
    font-size: 25px;
    letter-spacing: 0;
}

.kh-wheel-term-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.kh-wheel-term-grid article {
    min-height: 160px;
    padding: 20px;
    border: 1px solid #dde2ea;
    border-top: 3px solid var(--khc-accent-cyan);
    border-radius: 7px;
    background: #fafbfd;
}

.kh-wheel-term-grid article > i {
    color: var(--khc-accent-cyan);
    font-size: 18px;
}

.kh-wheel-term-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--khc-ink);
    font-size: 12px;
}

.kh-wheel-term-grid p {
    margin: 6px 0 0;
    color: #667184;
    font-size: 10px;
    line-height: 1.6;
}

.legal-required-value {
    color: #8f5f00;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .kh-plan-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kh-domain-price-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .kh-domain-results-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel-layout {
        gap: 36px;
    }
}

@media (max-width: 991.98px) {
    .kh-plan-selector,
    .kh-domain-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-domain-hero {
        min-height: 390px;
        padding-top: 72px;
        background-position: 63% center;
    }

    .kh-domain-section-heading,
    .kh-home-domain__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .kh-domain-section-heading > p {
        max-width: 650px;
        text-align: left;
    }

    .kh-wheel-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel-copy {
        max-width: 760px;
    }
}

@media (max-width: 767.98px) {
    .kh-domain-hero {
        min-height: 360px;
        padding: 56px 0 100px;
    }

    .kh-domain-hero h1,
    .kh-wheel-copy h1 {
        font-size: 34px;
    }

    .kh-domain-search-shell {
        padding: 21px;
    }

    .kh-domain-form,
    .kh-home-domain__form {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-form > button,
    .kh-home-domain__form > button {
        width: 100%;
        justify-content: center;
    }

    .kh-domain-result-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 9px;
    }

    .kh-domain-result-card__action {
        justify-self: start;
    }

    .kh-home-domain {
        padding: 56px 0;
    }

    .kh-home-domain h2 {
        font-size: 29px;
    }

    .kh-wheel-stage {
        min-height: 0;
        padding: 52px 0;
    }

    .kh-wheel-machine {
        padding: 27px 18px;
    }

    .kh-wheel-term-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kh-plan-selector,
    .kh-domain-price-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-plan-option > span {
        min-height: 0;
    }

    .kh-domain-hero h1,
    .kh-wheel-copy h1 {
        font-size: 30px;
    }

    .kh-domain-trust {
        display: grid;
    }

    .kh-domain-finder {
        margin-top: -54px;
    }

    .kh-domain-search-shell {
        padding: 18px;
    }

    .kh-domain-search-shell h2 {
        font-size: 22px;
    }

    .kh-wheel-machine {
        margin-right: -4px;
        margin-left: -4px;
    }

    .kh-wheel {
        width: min(350px, 78vw);
        border-width: 8px;
    }

    .kh-wheel::after {
        width: 56px;
        height: 56px;
        border-width: 5px;
    }

    .kh-wheel > span {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-corporate-field]:not([hidden]) {
        animation: none;
    }

    .kh-wheel.is-spinning {
        transition-duration: .01ms;
    }
}

/* Commerce catalog, domain flows and campaign refinements */
.kh-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kh-plan-catalog-card {
    --kh-card-accent: #662483;
    --kh-card-soft: #f3edf7;
    min-height: 560px;
    border-top: 4px solid var(--kh-card-accent);
    box-shadow: 0 10px 28px rgba(24, 30, 48, .06);
}

.kh-plan-catalog-card[data-commerce-category="cloud-backup"] {
    --kh-card-accent: #087f8c;
    --kh-card-soft: #e7f5f4;
}

.kh-plan-catalog-card[data-commerce-category="corporate-email"] {
    --kh-card-accent: #1d65a6;
    --kh-card-soft: #eaf2f9;
}

.kh-plan-catalog-card[data-commerce-category="web-project"] {
    --kh-card-accent: #a3473c;
    --kh-card-soft: #fbefed;
}

.kh-plan-catalog-card[data-commerce-category="web-hosting"] {
    --kh-card-accent: #08705a;
    --kh-card-soft: #e8f6f1;
}

.kh-plan-catalog-card .kh-product-icon {
    border-color: color-mix(in srgb, var(--kh-card-accent), #fff 72%);
    background: var(--kh-card-soft);
    color: var(--kh-card-accent);
}

.kh-product-card__labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.kh-plan-family {
    display: block;
    margin-top: 20px;
    color: var(--kh-card-accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-plan-catalog-card h2 {
    margin-top: 5px;
}

.kh-plan-catalog-card > p {
    min-height: 52px;
}

.kh-plan-catalog-card .kh-spec-list {
    margin-bottom: 14px;
}

.kh-term-offer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: auto;
    padding-top: 13px;
}

.kh-term-offer span {
    display: grid;
    align-content: center;
    min-height: 46px;
    padding: 6px;
    border: 1px solid color-mix(in srgb, var(--kh-card-accent), #fff 78%);
    border-radius: 5px;
    background: var(--kh-card-soft);
    color: #555f70;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
}

.kh-term-offer b {
    color: var(--kh-card-accent);
    font-size: 8px;
}

.kh-plan-catalog-card .kh-product-card__price {
    margin-top: 14px;
}

.kh-plan-catalog-card > .kh-button {
    margin-top: 15px;
}

.kh-period-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 22px;
}

.kh-period-selector label {
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.kh-period-selector input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kh-period-selector span {
    display: grid;
    min-height: 94px;
    align-content: center;
    gap: 4px;
    padding: 13px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: #fff;
    text-align: center;
    transition: border-color .2s ease, background-color .2s ease;
}

.kh-period-selector input:checked + span {
    border-color: var(--khc-brand);
    background: var(--khc-brand-soft);
    box-shadow: 0 0 0 2px rgba(102, 36, 131, .08);
}

.kh-period-selector strong {
    color: var(--khc-ink);
    font-size: 12px;
}

.kh-period-selector em {
    color: var(--khc-success);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.kh-period-selector small {
    color: var(--khc-muted);
    font-size: 8px;
}

.kh-summary-term-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    padding: 13px;
    border: 1px solid #cde7de;
    border-radius: 6px;
    background: var(--khc-success-soft);
}

.kh-summary-term-benefit > i {
    margin-top: 2px;
    color: var(--khc-success);
}

.kh-summary-term-benefit strong,
.kh-summary-term-benefit span {
    display: block;
}

.kh-summary-term-benefit strong {
    color: #075b49;
    font-size: 10px;
}

.kh-summary-term-benefit span {
    margin-top: 3px;
    color: #3e6d63;
    font-size: 8px;
    line-height: 1.5;
}

.kh-line-price del {
    display: block;
    color: #7c8594;
    font-size: 9px;
}

.kh-line-saving,
.kh-order-saving {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: var(--khc-success);
    font-size: 9px;
    font-weight: 800;
}

.kh-domain-cart-lock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #647083;
    font-size: 9px;
    font-weight: 700;
}

.kh-order-finance .is-saving dt,
.kh-order-finance .is-saving dd {
    color: var(--khc-success);
    font-weight: 800;
}

.kh-domain-hero--finder {
    min-height: 0;
    padding: 58px 0;
    background-image: url("../assets/images/domain-registration-bg-img.webp");
    background-position: center;
}

.kh-domain-hero--finder::before {
    background: rgba(22, 17, 39, .76);
}

.kh-domain-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 48px;
}

.kh-domain-hero-grid > * {
    min-width: 0;
}

.kh-domain-hero--finder .kh-domain-hero__content {
    max-width: 560px;
}

.kh-domain-hero--finder h1 {
    font-size: 43px;
}

.kh-domain-hero--finder .kh-domain-search-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 26px;
    border-top-color: #52c6c7;
    box-shadow: 0 24px 54px rgba(8, 8, 20, .28);
}

.kh-domain-search-shell__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.kh-domain-search-shell > *,
.kh-domain-form,
.kh-domain-input-wrap,
.kh-domain-extension-chips,
.kh-domain-result {
    min-width: 0;
    max-width: 100%;
}

.kh-domain-search-shell__top .kh-kicker {
    margin: 0;
}

.kh-domain-search-shell__top a {
    color: var(--khc-brand);
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}

.kh-domain-result-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.kh-domain-result-card__action--secondary {
    border-color: #cfd6e1;
    background: #fff;
    color: #4e596a;
}

.kh-domain-pricing {
    padding: 70px 0;
}

.kh-domain-price-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.kh-domain-price-grid article {
    display: flex;
    min-height: 224px;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-top-width: 1px;
    box-shadow: 0 8px 22px rgba(24, 30, 48, .05);
}

.kh-domain-price-grid article.is-popular {
    border-top: 4px solid var(--khc-brand);
}

.kh-domain-price-grid article header,
.kh-domain-price-grid dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.kh-domain-price-grid article header > strong {
    font-size: 21px;
}

.kh-domain-price-grid article header > span {
    padding: 3px 6px;
    border-radius: 4px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-domain-price-grid dl {
    display: grid;
    gap: 7px;
    margin: 0;
}

.kh-domain-price-grid dt {
    color: #6a7485;
    font-size: 12px;
}

.kh-domain-price-grid dd {
    margin: 0;
    color: var(--khc-ink);
    font-size: 14px;
    font-weight: 800;
}

.kh-domain-price-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e9ef;
}

.kh-domain-price-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid var(--khc-brand);
    border-radius: 5px;
    background: var(--khc-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.kh-domain-price-actions a.is-secondary {
    background: #fff;
    color: var(--khc-brand);
}

.kh-domain-price-actions a:hover,
.kh-domain-price-actions a:focus-visible {
    background: #4f1670;
    color: #fff;
}

.kh-domain-transfer {
    clear: both;
    padding: 72px 0;
    background: #fff;
}

.kh-domain-transfer__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
    align-items: center;
    gap: 64px;
}

.kh-domain-transfer h2 {
    margin: 0 0 12px;
    color: var(--khc-ink);
    font-size: 31px;
    letter-spacing: 0;
}

.kh-domain-transfer p {
    color: var(--khc-muted);
    font-size: 13px;
    line-height: 1.7;
}

.kh-domain-transfer__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 23px;
}

.kh-domain-transfer__steps span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #465163;
    font-size: 9px;
    font-weight: 800;
}

.kh-domain-transfer__steps b {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e7f5f4;
    color: #087f8c;
}

.kh-domain-transfer form {
    display: grid;
    gap: 10px;
    padding: 25px;
    border: 1px solid var(--khc-border);
    border-top: 4px solid #087f8c;
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: var(--khc-shadow);
}

.kh-domain-transfer form > label {
    color: var(--khc-ink);
    font-size: 10px;
    font-weight: 800;
}

.kh-domain-transfer form > div {
    position: relative;
}

.kh-domain-transfer form i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #087f8c;
    transform: translateY(-50%);
}

.kh-domain-transfer input {
    width: 100%;
    height: 50px;
    padding: 0 14px 0 43px;
    border: 1px solid #cfd6e1;
    border-radius: 5px;
    background: #fff;
    color: var(--khc-ink);
    font: inherit;
    font-size: 12px;
}

.kh-domain-transfer button {
    min-height: 47px;
    border: 0;
    border-radius: 5px;
    background: var(--khc-brand);
    color: #fff;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.kh-domain-transfer button:hover,
.kh-domain-transfer button:focus-visible {
    background: #4f1766;
}

.kh-domain-transfer small {
    color: #6c7687;
    font-size: 8px;
}

.kh-home-domain {
    background-color: #171326;
    background-image: url("../assets/images/domain-registration-bg-img.webp");
    background-position: center;
}

.kh-home-domain::before {
    background: rgba(21, 17, 37, .8);
}

.kh-domain-owner-page {
    min-height: 70vh;
    padding: 40px 0 84px;
    background: #f2f4f7;
}

.kh-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
    color: var(--khc-brand);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.kh-domain-owner-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 32px 34px;
    border-left: 5px solid #159d94;
    border-radius: 6px;
    background: #202437;
    box-shadow: 0 16px 38px rgba(28, 33, 49, .12);
}

.kh-domain-owner-heading > div {
    max-width: 820px;
}

.kh-domain-owner-heading h1 {
    margin-bottom: 8px;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 38px;
    line-height: 1.18;
}

.kh-domain-owner-heading p {
    margin: 0;
    color: #d5d9e2;
    font-size: 14px;
    line-height: 1.7;
}

.kh-domain-owner-heading .kh-kicker {
    color: #59d4ce;
}

.kh-domain-owner-heading__assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
}

.kh-domain-owner-heading__assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #eef0f5;
    font-size: 11px;
    font-weight: 700;
}

.kh-domain-owner-heading__assurance i {
    color: #59d4ce;
}

.kh-domain-owner-extension {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 5px;
    background: #6f278b;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.kh-domain-owner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 28px;
}

.kh-domain-owner-main {
    display: grid;
    gap: 16px;
}

.kh-domain-owner-main .kh-form-section {
    padding: 30px;
    border-top-color: #6f278b;
    box-shadow: 0 12px 30px rgba(27, 32, 48, .06);
}

.kh-domain-owner-main .kh-form-section legend {
    margin-bottom: 22px;
    font-size: 20px;
}

.kh-domain-owner-main .kh-form-grid {
    gap: 19px 16px;
}

.kh-domain-owner-main .kh-form-grid > label > span:first-child,
.kh-domain-epp label > span:first-child {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
}

.kh-domain-owner-main input:not([type="radio"]):not([type="checkbox"]),
.kh-domain-owner-main textarea {
    min-height: 50px;
    font-size: 14px;
}

.kh-domain-operation-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kh-domain-operation-switch label {
    margin: 0;
    cursor: pointer;
}

.kh-domain-operation-switch input {
    position: absolute;
    opacity: 0;
}

.kh-domain-operation-switch label > span {
    display: grid;
    min-height: 126px;
    align-content: center;
    gap: 7px;
    padding: 20px;
    border: 1px solid var(--khc-border);
    border-radius: 6px;
    background: #fff;
}

.kh-domain-operation-switch input:checked + span {
    border-color: var(--khc-brand);
    background: var(--khc-brand-soft);
}

.kh-domain-operation-switch i {
    color: var(--khc-brand);
    font-size: 19px;
}

.kh-domain-operation-switch strong,
.kh-domain-operation-switch small {
    display: block;
}

.kh-domain-operation-switch strong {
    color: var(--khc-ink);
    font-size: 14px;
}

.kh-domain-operation-switch small {
    color: var(--khc-muted);
    font-size: 11px;
    line-height: 1.45;
}

.kh-domain-epp {
    margin-top: 14px;
    padding: 15px;
    border-left: 4px solid #087f8c;
    background: #eef8f7;
}

.kh-account-type-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.kh-account-type-switch label {
    cursor: pointer;
}

.kh-account-type-switch input {
    position: absolute;
    opacity: 0;
}

.kh-account-type-switch label > span {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--khc-border);
    border-radius: 5px;
    background: #fff;
    color: #4f596a;
    font-size: 12px;
}

.kh-account-type-switch input:checked + span {
    border-color: #6f278b;
    background: #f5edf8;
    color: #6f278b;
    box-shadow: inset 0 0 0 1px #6f278b;
}

.kh-domain-epp[hidden],
[data-domain-company][hidden],
[data-domain-tax][hidden],
[data-domain-identity][hidden] {
    display: none !important;
}

.kh-domain-owner-summary {
    position: sticky;
    top: 28px;
    padding: 28px;
    border: 1px solid var(--khc-border);
    border-top: 4px solid var(--khc-brand);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--khc-shadow);
}

.kh-domain-owner-summary h2 {
    margin: 9px 0 0;
    overflow-wrap: anywhere;
    color: #181d2e;
    font-size: 24px;
    line-height: 1.3;
}

.kh-domain-owner-summary dl {
    display: grid;
    gap: 0;
    margin: 17px 0;
}

.kh-domain-owner-summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #e6eaf0;
}

.kh-domain-owner-summary dt,
.kh-domain-owner-summary dd {
    font-size: 12px;
}

.kh-domain-owner-summary dt {
    color: #697486;
}

.kh-domain-owner-summary dd {
    margin: 0;
    color: var(--khc-ink);
    font-weight: 800;
    text-align: right;
}

.kh-domain-owner-summary .kh-domain-owner-price {
    align-items: center;
    margin: 4px 0;
    padding: 16px 14px;
    border: 0;
    border-radius: 4px;
    background: #f3eaf6;
}

.kh-domain-owner-summary .kh-domain-owner-price dd {
    color: #6f278b;
    font-size: 20px;
}

.kh-domain-owner-summary > p {
    margin: 15px 0;
    color: #697486;
    font-size: 10px;
    line-height: 1.6;
}

.kh-domain-owner-summary .kh-button {
    min-height: 52px;
    white-space: normal;
    line-height: 1.35;
}

.kh-domain-owner-assurance {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.kh-domain-owner-assurance span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #657083;
    font-size: 10px;
    font-weight: 700;
}

.kh-domain-owner-assurance i {
    color: var(--khc-success);
}

.kh-domain-panel-header {
    align-items: flex-end;
}

.kh-domain-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.kh-domain-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.kh-domain-panel-card {
    overflow: hidden;
    border: 1px solid var(--khc-border);
    border-top: 4px solid #087f8c;
    border-radius: 7px;
    background: #fff;
}

.kh-domain-panel-card header,
.kh-domain-panel-card footer {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px;
}

.kh-domain-panel-card header {
    border-bottom: 1px solid #e5e9ef;
}

.kh-domain-panel-card header > span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e7f5f4;
    color: #087f8c;
}

.kh-domain-panel-card header > div {
    min-width: 0;
    margin-right: auto;
}

.kh-domain-panel-card h2 {
    margin: 2px 0 0;
    overflow-wrap: anywhere;
    font-size: 15px;
}

.kh-domain-panel-card header small {
    color: #697486;
    font-size: 7px;
    text-transform: uppercase;
}

.kh-domain-panel-card header em {
    padding: 4px 7px;
    border-radius: 4px;
    background: var(--khc-success-soft);
    color: var(--khc-success);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
}

.kh-domain-panel-card dl {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 5px 16px;
}

.kh-domain-panel-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #edf0f4;
}

.kh-domain-panel-card dt,
.kh-domain-panel-card dd {
    font-size: 8px;
}

.kh-domain-panel-card dt {
    color: #6a7485;
}

.kh-domain-panel-card dd {
    margin: 0;
    color: var(--khc-ink);
    font-weight: 800;
    text-align: right;
}

.kh-domain-panel-card footer {
    justify-content: space-between;
    color: #667184;
    font-size: 8px;
}

.kh-domain-panel-card footer a {
    color: var(--khc-brand);
    font-weight: 800;
    text-decoration: none;
}

.kh-wheel-stage {
    background-color: #eef2f5;
    background-image: none;
}

.kh-wheel-machine {
    border-top-color: #087f8c;
}

.kh-wheel {
    background: conic-gradient(
        #697386 0deg 27.6923deg,
        #662483 27.6923deg 55.3846deg,
        #087f8c 55.3846deg 83.0769deg,
        #8a93a2 83.0769deg 110.7692deg,
        #1d65a6 110.7692deg 138.4615deg,
        #a3473c 138.4615deg 166.1538deg,
        #08705a 166.1538deg 193.8461deg,
        #596273 193.8461deg 221.5384deg,
        #8b3f72 221.5384deg 249.2307deg,
        #28666e 249.2307deg 276.9230deg,
        #8a6400 276.9230deg 304.6153deg,
        #334f78 304.6153deg 332.3076deg,
        #4c1d62 332.3076deg 360deg);
}

.kh-wheel > span {
    --segment-angle: calc((var(--segment) * 27.692307deg) + 13.846153deg);
    font-size: 11px;
    inset: 50% auto auto 50%;
    display: flex;
    width: 72px;
    height: 30px;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    transform: translate(-50%, -50%)
        rotate(var(--segment-angle))
        translateY(-158px)
        rotate(calc(-1 * var(--segment-angle)));
    transform-origin: center;
}

.kh-wheel > span.is-empty {
    max-width: 70px;
    font-size: 7px;
    line-height: 1.15;
}

@media (max-width: 1199.98px) {
    .kh-domain-hero-grid {
        grid-template-columns: minmax(0, .75fr) minmax(480px, 1.25fr);
        gap: 28px;
    }

    .kh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-domain-price-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .kh-domain-hero--finder {
        padding: 34px 0 42px;
        background-position: center;
    }

    .kh-domain-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .kh-domain-hero-grid .kh-domain-search-shell {
        grid-row: 1;
    }

    .kh-domain-hero-grid .kh-domain-hero__content {
        grid-row: 2;
    }

    .kh-domain-hero--finder .kh-domain-hero__content p,
    .kh-domain-hero--finder .kh-domain-trust {
        display: none;
    }

    .kh-domain-hero--finder .kh-domain-hero__content h1 {
        margin: 0;
        font-size: 27px;
    }

    .kh-domain-owner-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-owner-summary {
        position: static;
    }

    .kh-domain-transfer__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .kh-domain-panel-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .kh-product-grid,
    .kh-period-selector,
    .kh-domain-price-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-plan-catalog-card {
        min-height: 0;
    }

    .kh-domain-hero--finder {
        min-height: 0;
        padding: 18px 0 28px;
    }

    .kh-domain-hero--finder .kh-domain-search-shell {
        padding: 17px;
    }

    .kh-domain-hero--finder .kh-domain-search-shell h2 {
        font-size: 20px;
    }

    .kh-domain-hero--finder .kh-domain-search-shell > p {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .kh-domain-extension-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .kh-domain-result-card__actions {
        justify-content: flex-start;
    }

    .kh-domain-owner-heading,
    .kh-domain-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .kh-domain-owner-heading h1 {
        font-size: 27px;
    }

    .kh-domain-owner-heading {
        padding: 26px;
    }

    .kh-domain-owner-main .kh-form-section {
        padding: 24px;
    }

    .kh-domain-operation-switch {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-panel-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .kh-domain-price-grid article {
        min-height: 0;
    }

    .kh-domain-transfer {
        padding: 52px 0;
    }

    .kh-domain-transfer h2 {
        font-size: 25px;
    }
}

@media (max-width: 575.98px) {
    .kh-term-offer {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-hero-grid {
        gap: 20px;
    }

    .kh-domain-hero--finder .kh-domain-hero__content h1 {
        font-size: 23px;
    }

    .kh-domain-search-shell__top {
        align-items: flex-start;
    }

    .kh-domain-result-card__actions,
    .kh-domain-result-card__action {
        width: 100%;
    }

    .kh-domain-transfer__steps {
        display: grid;
    }

    .kh-domain-owner-page {
        padding-top: 26px;
    }

    .kh-domain-owner-heading {
        padding: 22px 19px;
    }

    .kh-domain-owner-heading h1 {
        font-size: 25px;
    }

    .kh-domain-owner-heading__assurance,
    .kh-account-type-switch,
    .kh-domain-owner-main .kh-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-owner-main .kh-form-section,
    .kh-domain-owner-summary {
        padding: 20px;
    }

    .kh-wheel > span {
        width: 58px;
        font-size: 8px;
        transform: translate(-50%, -50%)
            rotate(var(--segment-angle))
            translateY(-123px)
            rotate(calc(-1 * var(--segment-angle)));
    }

    .kh-wheel > span.is-empty {
        max-width: 52px;
        font-size: 6px;
    }
}

/* Campaign wheel v2: 13 equal segments and radial labels share one geometry. */
.kh-wheel-stage {
    position: relative;
    min-height: 720px;
    padding: 76px 0 82px;
    border-bottom: 1px solid #e5dfeb;
    background: #f5f2f7;
}

.kh-wheel-stage::before {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image:
        linear-gradient(rgba(102, 36, 131, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 36, 131, .045) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    pointer-events: none;
}

.kh-wheel-stage .container {
    position: relative;
    z-index: 1;
}

.kh-wheel-layout {
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: 72px;
}

.kh-wheel-copy {
    max-width: 590px;
}

.kh-wheel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #662483;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-wheel-copy h1 {
    max-width: 570px;
    color: #171329;
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: 0;
}

.kh-wheel-copy > p {
    max-width: 550px;
    color: #606477;
    font-size: 16px;
}

.kh-wheel-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0;
}

.kh-wheel-benefits span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
    gap: 1px 9px;
    padding: 12px;
    border: 1px solid #e0dae6;
    border-radius: 6px;
    background: #fff;
    color: #222036;
    box-shadow: 0 8px 24px rgba(51, 34, 68, .055);
}

.kh-wheel-benefits i {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    background: #f0e8f4;
    color: #662483;
}

.kh-wheel-benefits b {
    align-self: end;
    overflow-wrap: anywhere;
    font-size: 11px;
}

.kh-wheel-benefits small {
    color: #727487;
    font-size: 8px;
    font-weight: 600;
}

.kh-wheel-message {
    border-color: #ded8e5;
    background: #fff;
    color: #505266;
    font-size: 12px;
}

.kh-wheel-message.is-success {
    border-color: #a7ddd0;
    border-left-color: #08705a;
    background: #eaf7f3;
    color: #075948;
}

.kh-wheel-message.is-error {
    border-color: #efc4ca;
    border-left-color: #b42336;
    background: #fff2f3;
    color: #8f1f30;
}

.kh-wheel-award {
    width: min(100%, 290px);
    padding: 16px 18px;
    border-color: #ded8e5;
    border-top-color: #662483;
    background: #fff;
    box-shadow: 0 10px 28px rgba(68, 39, 84, .08);
}

.kh-wheel-award span,
.kh-wheel-award small {
    color: #6b6d7f;
    font-size: 10px;
}

.kh-wheel-award strong {
    color: #662483;
    font-size: 38px;
}

.kh-wheel-countdown {
    display: flex;
    width: min(100%, 290px);
    align-items: center;
    gap: 12px;
    margin: -8px 0 18px;
    padding: 12px 14px;
    border: 1px solid #e2d7e7;
    border-left: 4px solid #b67d08;
    border-radius: 7px;
    background: #fffaf0;
    color: #4e4451;
    box-shadow: 0 8px 22px rgba(72, 48, 79, .06);
}

.kh-wheel-countdown[hidden] {
    display: none;
}

.kh-wheel-countdown > i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 6px;
    background: #f8e9bf;
    color: #946400;
}

.kh-wheel-countdown > div {
    display: grid;
    gap: 2px;
}

.kh-wheel-countdown span {
    color: #786d78;
    font-size: 9px;
    font-weight: 700;
}

.kh-wheel-countdown strong {
    color: #3b2f3f;
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.kh-wheel-countdown.is-expired {
    border-left-color: #a13b49;
    background: #fff2f3;
}

.kh-wheel-copy > .kh-button {
    border-color: #662483;
    background: #662483;
    color: #fff;
}

.kh-wheel-machine {
    min-width: 0;
    padding: 22px 28px 30px;
    border: 1px solid #dcd5e3;
    border-top: 5px solid #662483;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(55, 34, 70, .16);
}

.kh-wheel-machine__topline {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
    padding-bottom: 13px;
    border-bottom: 1px solid #e4e8ee;
    color: #5e6878;
    font-size: 10px;
    font-weight: 800;
}

.kh-wheel-machine__topline span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.kh-wheel-machine__topline i {
    color: #6a2385;
}

.kh-wheel-frame {
    position: relative;
    display: grid;
    width: min(500px, 76vw);
    aspect-ratio: 1;
    place-items: center;
    padding: 13px;
    border: 2px solid #d9d2e0;
    border-radius: 50%;
    background: #f7f4f9;
    box-shadow:
        inset 0 0 0 6px #fff,
        0 18px 38px rgba(57, 38, 70, .15);
}

.kh-wheel {
    --label-radius: 176px;
    width: 100%;
    border: 9px solid #31253a;
    background:
        repeating-conic-gradient(
            transparent 0deg 26.9deg,
            rgba(255, 255, 255, .82) 26.9deg 27.692307deg),
        conic-gradient(
            #667085 0deg 27.692307deg,
            #662483 27.692307deg 55.384614deg,
            #0f8c8f 55.384614deg 83.076921deg,
            #8a93a3 83.076921deg 110.769228deg,
            #3659a5 110.769228deg 138.461535deg,
            #bf5262 138.461535deg 166.153842deg,
            #158267 166.153842deg 193.846149deg,
            #747d8c 193.846149deg 221.538456deg,
            #963d76 221.538456deg 249.230763deg,
            #27747c 249.230763deg 276.923070deg,
            #b67d08 276.923070deg 304.615377deg,
            #3b5f92 304.615377deg 332.307684deg,
            #512267 332.307684deg 360deg);
    box-shadow:
        inset 0 0 0 6px rgba(255, 255, 255, .92),
        inset 0 0 24px rgba(21, 25, 37, .24);
}

.kh-wheel::before {
    position: absolute;
    inset: 48px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.kh-wheel::after {
    display: none;
}

.kh-wheel > span {
    --segment-angle: calc((var(--segment) * 27.692307deg) + 13.846153deg);
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 88px;
    height: 42px;
    place-content: center;
    gap: 1px;
    color: #fff;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .34);
    transform:
        translate(-50%, -50%)
        rotate(var(--segment-angle))
        translateY(calc(-1 * var(--label-radius)))
        rotate(calc((-1 * var(--segment-angle)) + var(--wheel-label-rotation, 0deg)));
    transform-origin: center;
    transition: none;
}

.kh-wheel.is-spinning {
    transition: transform 8.5s cubic-bezier(.1, .72, .06, 1);
}

.kh-wheel.is-spinning > span {
    transition: transform 8.5s cubic-bezier(.1, .72, .06, 1);
}

.kh-wheel > span b {
    font-size: 14px;
    font-weight: 900;
}

.kh-wheel > span small {
    color: rgba(255, 255, 255, .9);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
}

.kh-wheel > span.is-empty {
    width: 78px;
}

.kh-wheel > span.is-empty b {
    font-size: 11px;
}

.kh-wheel > span.is-empty small {
    max-width: 68px;
    font-size: 7px;
    line-height: 1.1;
}

.kh-wheel-hub {
    position: absolute;
    z-index: 5;
    display: grid;
    width: 78px;
    aspect-ratio: 1;
    place-items: center;
    border: 7px solid #fff;
    border-radius: 50%;
    background: #31253a;
    color: #7de0d7;
    box-shadow: 0 6px 18px rgba(20, 23, 35, .34);
    font-size: 23px;
}

.kh-wheel-machine.is-celebrating .kh-wheel-hub {
    animation: khWheelHubCelebrate .72s ease both;
}

@keyframes khWheelHubCelebrate {
    0%,
    100% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.14);
        box-shadow:
            0 6px 18px rgba(20, 23, 35, .34),
            0 0 0 12px rgba(112, 221, 210, .18);
    }
}

.kh-wheel-pointer {
    top: 52px;
    border-right-width: 20px;
    border-left-width: 20px;
    border-bottom: 46px solid #e13d52;
    filter: drop-shadow(0 4px 4px rgba(28, 31, 43, .3));
}

.kh-wheel-action {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 20px;
}

.kh-wheel-action button {
    min-width: 230px;
    min-height: 52px;
    border-color: #6a2385;
    background: #6a2385;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(106, 35, 133, .2);
}

.kh-wheel-action button:not(:disabled):hover,
.kh-wheel-action button:not(:disabled):focus-visible {
    background: #4f1766;
    transform: translateY(-1px);
}

.kh-wheel-action small {
    color: #7b8493;
    font-size: 8px;
}

.kh-wheel-terms {
    background: #f4f6f8;
}

.kh-wheel-term-grid article {
    border-top-color: #6a2385;
    background: #fff;
}

.kh-wheel-term-grid article:nth-child(2) {
    border-top-color: #087f8c;
}

.kh-wheel-term-grid article:nth-child(3) {
    border-top-color: #b17a00;
}

@media (max-width: 1199.98px) {
    .kh-wheel-layout {
        grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
        gap: 38px;
    }

    .kh-wheel-copy h1 {
        font-size: 39px;
    }

    .kh-wheel-benefits {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel {
        --label-radius: 151px;
    }
}

@media (max-width: 991.98px) {
    .kh-wheel-stage {
        padding: 54px 0 64px;
    }

    .kh-wheel-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .kh-wheel-copy {
        max-width: none;
    }

    .kh-wheel-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kh-wheel-machine {
        width: min(100%, 620px);
        justify-self: center;
    }
}

@media (max-width: 575.98px) {
    .kh-wheel-stage {
        padding: 34px 0 44px;
    }

    .kh-wheel-copy h1 {
        font-size: 31px;
    }

    .kh-wheel-copy > p {
        font-size: 14px;
    }

    .kh-wheel-benefits {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel-machine {
        padding: 16px 10px 22px;
    }

    .kh-wheel-machine__topline {
        padding-right: 6px;
        padding-left: 6px;
        font-size: 8px;
    }

    .kh-wheel-frame {
        width: min(340px, calc(100vw - 44px));
        padding: 9px;
    }

    .kh-wheel {
        --label-radius: 111px;
        border-width: 7px;
    }

    .kh-wheel::before {
        inset: 34px;
    }

    .kh-wheel > span {
        width: 60px;
        height: 34px;
    }

    .kh-wheel > span b {
        font-size: 10px;
    }

    .kh-wheel > span small {
        font-size: 5px;
    }

    .kh-wheel > span.is-empty {
        width: 52px;
    }

    .kh-wheel > span.is-empty b {
        font-size: 8px;
    }

    .kh-wheel > span.is-empty small {
        max-width: 46px;
        font-size: 4px;
    }

    .kh-wheel-hub {
        width: 60px;
        border-width: 5px;
        font-size: 18px;
    }

    .kh-wheel-pointer {
        top: 43px;
        border-right-width: 16px;
        border-left-width: 16px;
        border-bottom-width: 38px;
    }

    .kh-wheel-action button {
        width: min(100%, 260px);
    }
}

/* Hosting catalog rows */
.kh-plan-catalog-card .kh-plan-identity > p {
    min-height: 52px;
    margin-bottom: 18px;
    font-size: 14px;
}

.kh-plan-catalog-card .kh-plan-details {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.kh-plan-catalog-card .kh-plan-purchase {
    margin-top: auto;
}

.kh-plan-catalog-card[data-commerce-featured="true"] {
    background:
        linear-gradient(90deg, var(--kh-card-soft) 0, #fff 18%, #fff 100%);
    box-shadow: 0 11px 30px rgba(24, 30, 48, .08);
}

.kh-plan-catalog-card .kh-product-card__price small {
    display: block;
    margin-bottom: 4px;
    color: var(--khc-muted);
    font-weight: 700;
}

.kh-plan-catalog-card .kh-product-card__price span {
    color: var(--khc-ink);
    font-weight: 800;
}

.kh-plan-catalog-card .kh-plan-purchase > .kh-button {
    width: 100%;
    margin-top: 15px;
}

.kh-plan-cart-form,
.kh-plan-cart-form .kh-button {
    width: 100%;
    margin: 0;
}

.kh-plan-cart-form .kh-button {
    min-height: 46px;
}

@media (min-width: 1100px) {
    .kh-plan-catalog-card[data-commerce-category="web-hosting"] {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(230px, .9fr) minmax(520px, 2.2fr) minmax(210px, .8fr);
        grid-template-rows: auto;
        min-height: 0;
        align-items: center;
        gap: 28px;
        padding: 20px 24px;
        border-top: 1px solid var(--khc-border);
        border-left: 4px solid var(--kh-card-accent);
        box-shadow: 0 8px 24px rgba(24, 30, 48, .055);
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-product-card__top {
        justify-content: flex-start;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-product-card__labels {
        justify-content: flex-start;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-product-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-plan-family {
        margin-top: 12px;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] h2 {
        margin: 4px 0;
        font-size: 19px;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-plan-identity > p {
        min-height: 0;
        margin: 0;
        color: var(--khc-muted);
        font-size: 12px;
        line-height: 1.5;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-plan-details {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-spec-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-spec-list > div {
        min-width: 0;
        flex-direction: column;
        gap: 3px;
        padding: 5px 15px;
        border-right: 1px solid #e7edf1;
        border-bottom: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-spec-list > div:first-child {
        padding-left: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-spec-list > div:last-child {
        border-right: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-spec-list dd {
        overflow-wrap: anywhere;
        text-align: left;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-term-offer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0;
        padding: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-term-offer span {
        min-height: 34px;
        grid-template-columns: auto auto;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 4px 7px;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-plan-purchase {
        display: grid;
        align-content: center;
        margin: 0;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-product-card__price {
        margin: 0 0 10px;
        padding: 0;
        text-align: center;
    }

    .kh-plan-catalog-card[data-commerce-category="web-hosting"] .kh-plan-purchase > .kh-button {
        min-height: 46px;
        margin: 0;
    }
}

@media (min-width: 760px) and (max-width: 1099px) {
    .kh-plan-catalog-card[data-commerce-category="web-hosting"] {
        grid-column: span 2;
    }
}

/* Domain finder polish */
.kh-domain-hero--finder .kh-domain-search-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-top: 5px solid #52c6c7;
    background:
        linear-gradient(180deg, rgba(244, 250, 250, .9) 0, #fff 128px);
}

.kh-domain-hero--finder .kh-domain-search-shell::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 132px;
    height: 5px;
    background: #662483;
    content: "";
}

.kh-domain-hero--finder .kh-domain-search-shell h2 {
    max-width: 620px;
    margin-bottom: 7px;
    color: #111827;
    font-size: 25px;
    line-height: 1.25;
}

.kh-domain-form {
    gap: 10px;
    padding: 7px;
    border: 1px solid #d9e0e8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(23, 34, 55, .08);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.kh-domain-form:focus-within {
    border-color: #52c6c7;
    box-shadow: 0 0 0 4px rgba(82, 198, 199, .16), 0 14px 30px rgba(23, 34, 55, .1);
}

.kh-domain-form .kh-domain-input-wrap {
    min-height: 54px;
    border: 0;
    background: #f7f9fb;
}

.kh-domain-form .kh-domain-input-wrap input {
    min-width: 0;
    height: 54px;
    font-size: 15px;
    font-weight: 650;
}

.kh-domain-form > button {
    min-width: 138px;
    min-height: 54px;
    border-radius: 5px;
    box-shadow: 0 7px 18px rgba(102, 36, 131, .2);
}

.kh-domain-extension-chips {
    gap: 7px;
    margin-top: 15px;
}

.kh-domain-extension-chips button {
    min-height: 32px;
    padding: 6px 10px;
    border-color: #dce2ea;
    background: #fff;
    color: #414b5c;
    font-size: 11px;
    font-weight: 750;
}

.kh-domain-extension-chips button:hover,
.kh-domain-extension-chips button:focus-visible {
    border-color: #52c6c7;
    background: #eaf8f7;
    color: #075f62;
}

.kh-domain-result {
    margin-top: 14px;
    border: 1px solid #e1e6ed;
    border-left: 4px solid #52c6c7;
    background: #f8fafc;
}

.kh-domain-result-card {
    border-radius: 6px;
    box-shadow: 0 5px 16px rgba(24, 30, 48, .05);
}

.kh-domain-price-grid article {
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kh-domain-price-grid article:hover {
    border-color: #cdd5df;
    box-shadow: 0 13px 30px rgba(24, 30, 48, .09);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .kh-domain-form {
        padding: 6px;
    }

    .kh-domain-form .kh-domain-input-wrap,
    .kh-domain-form .kh-domain-input-wrap input,
    .kh-domain-form > button {
        min-height: 50px;
    }

    .kh-domain-form .kh-domain-input-wrap input {
        height: 50px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kh-domain-price-grid article {
        transition: none;
    }

    .kh-domain-price-grid article:hover {
        transform: none;
    }

    .kh-wheel > span {
        transition-duration: .01ms !important;
    }

    .kh-wheel.is-spinning {
        transition-duration: .01ms !important;
    }
}

@media (max-width: 575.98px) {
    .kh-wheel-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin: 20px 0 24px;
    }

    .kh-wheel-benefits span {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        gap: 5px;
        padding: 9px 5px;
        text-align: center;
    }

    .kh-wheel-benefits i {
        grid-row: auto;
        width: 30px;
        height: 30px;
    }

    .kh-wheel-benefits b {
        font-size: 9px;
    }

    .kh-wheel-benefits small {
        font-size: 7px;
        line-height: 1.3;
    }
}

.kh-auth-help-link {
    display: flex;
    justify-content: flex-end;
    margin-top: -4px;
}

.kh-auth-help-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--khc-brand);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.kh-auth-help-link a:hover,
.kh-auth-help-link a:focus-visible {
    text-decoration: underline;
}

.kh-validation--success {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-color: #a7ddd0;
    border-left: 4px solid #08705a;
    background: #eaf7f3;
    color: #075948;
}

/* Catalog, domain and compact mobile layout refinements */
.kh-plan-catalog-card .kh-category-badge {
    font-size: 11px;
}

.kh-plan-catalog-card .kh-plan-family {
    font-size: 11px;
}

.kh-plan-catalog-card .kh-term-offer span,
.kh-plan-catalog-card .kh-term-offer b {
    font-size: 11px;
    line-height: 1.35;
}

.kh-plan-catalog-card .kh-product-card__price small,
.kh-plan-catalog-card .kh-product-card__price em {
    font-size: 11px;
}

@media (min-width: 1100px) {
    .kh-product-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .kh-product-grid .kh-plan-catalog-card {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns:
            minmax(245px, .92fr)
            minmax(520px, 2.1fr)
            minmax(220px, .8fr);
        grid-template-rows: auto;
        min-height: 0;
        align-items: center;
        gap: 28px;
        padding: 21px 24px;
        border-top: 1px solid var(--khc-border);
        border-left: 4px solid var(--kh-card-accent);
        box-shadow: 0 8px 24px rgba(24, 30, 48, .055);
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__top {
        min-height: 0;
        justify-content: flex-start;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__labels {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-family {
        margin-top: 12px;
    }

    .kh-product-grid .kh-plan-catalog-card h2 {
        margin: 4px 0;
        font-size: 20px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-identity > p {
        min-height: 0;
        margin: 0;
        color: var(--khc-muted);
        font-size: 13px;
        line-height: 1.55;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-details {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div {
        min-width: 0;
        min-height: 54px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 6px 15px;
        border-right: 1px solid #e7edf1;
        border-bottom: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div:first-child {
        padding-left: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div:last-child {
        border-right: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list dt {
        font-size: 11px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list dd {
        max-width: 100%;
        font-size: 13px;
        overflow-wrap: break-word;
        text-align: left;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-term-offer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0;
        padding: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-term-offer span {
        min-height: 40px;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 5px 8px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase {
        display: grid;
        align-content: center;
        margin: 0;
        padding-left: 22px;
        border-left: 1px solid #e7ebf1;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price {
        margin: 0 0 10px;
        padding: 0;
        text-align: center;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase > .kh-button {
        min-height: 46px;
        margin: 0;
        font-size: 12px;
        box-shadow: 0 7px 18px rgba(102, 36, 131, .18);
    }
}

@media (min-width: 768px) and (max-width: 1099.98px) {
    .kh-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-product-grid .kh-plan-catalog-card {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(220px, .85fr) minmax(0, 1.5fr);
        grid-template-rows: auto auto;
        min-height: 0;
        align-items: start;
        gap: 20px;
        padding: 22px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) minmax(230px, .55fr);
        align-items: center;
        gap: 20px;
        margin: 0;
        padding-top: 16px;
        border-top: 1px solid #e8ecf2;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price,
    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase > .kh-button {
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-top: 0;
    }
}

.kh-domain-hero--finder .kh-domain-search-shell {
    border-top-color: var(--khc-brand);
    background: linear-gradient(180deg, #f8f4fa 0, #fff 132px);
}

.kh-domain-hero--finder .kh-domain-search-shell::after {
    background: #4f1670;
}

.kh-domain-search-shell__top .kh-kicker,
.kh-domain-search-shell__top a {
    color: var(--khc-brand);
}

.kh-domain-search-shell__top a {
    font-size: 11px;
}

.kh-domain-form {
    border-color: #d9d3e2;
}

.kh-domain-form:focus-within {
    border-color: var(--khc-brand);
    box-shadow:
        0 0 0 4px rgba(102, 36, 131, .13),
        0 14px 30px rgba(23, 34, 55, .1);
}

.kh-domain-form .kh-domain-input-wrap {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid #d7dce5;
    border-radius: 6px;
    background: #f8f9fb;
}

.kh-domain-form .kh-domain-input-wrap:focus-within {
    border-color: var(--khc-brand);
    box-shadow: 0 0 0 2px rgba(102, 36, 131, .08);
}

.kh-domain-form .kh-domain-input-wrap i {
    position: static;
    display: inline-flex;
    width: 50px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd7e4;
    color: var(--khc-brand);
    transform: none;
}

.kh-domain-form .kh-domain-input-wrap input,
.kh-domain-form .kh-domain-input-wrap input:focus {
    height: 52px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.kh-domain-extension-chips button:hover,
.kh-domain-extension-chips button:focus-visible {
    border-color: var(--khc-brand);
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
}

.kh-domain-result {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #ded8e6;
    border-left: 4px solid var(--khc-brand);
    background: #faf8fc;
    color: #596476;
    font-size: 12px;
    text-align: center;
}

.kh-domain-result--wide {
    margin-top: 0;
}

.kh-domain-results-section {
    clear: both;
    padding: 34px 0 40px;
    border-bottom: 1px solid #e3e7ed;
    background: #f2f4f7;
}

.kh-domain-results-section[hidden] {
    display: none;
}

.kh-domain-results-section .kh-domain-result {
    scroll-margin-top: 110px;
}

.kh-domain-result--wide.has-results {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.kh-domain-result--wide.has-results .kh-domain-results-note {
    margin-bottom: 10px !important;
    color: #667184 !important;
}

.kh-domain-result--wide.has-results .kh-domain-result-card {
    min-height: 108px;
    border-color: #dce2eb;
    box-shadow: 0 8px 22px rgba(24, 30, 48, .07);
}

.kh-domain-results-shell {
    width: 100%;
}

.kh-domain-results-note {
    color: #667184 !important;
    font-size: 11px !important;
    line-height: 1.5;
    text-align: center;
}

.kh-domain-results-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.kh-domain-result-card {
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(135px, .8fr)
        minmax(112px, .55fr);
    gap: 12px;
    min-height: 92px;
    padding: 15px 16px;
}

.kh-domain-result-card__heading {
    min-width: 0;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: normal;
}

.kh-domain-result-card__heading span {
    min-width: 0;
}

.kh-domain-result-card__price strong {
    font-size: 16px;
}

.kh-domain-result-card__price small {
    font-size: 11px;
    line-height: 1.45;
}

.kh-domain-result-card__action {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
}

.kh-domain-result-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-items: stretch;
}

.kh-domain-price-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x proximity;
    scrollbar-color: #b6a1c1 #e5e8ee;
    scrollbar-width: thin;
}

.kh-domain-price-grid article {
    min-width: 0;
    min-height: 210px;
    flex: 0 0 278px;
    scroll-snap-align: start;
}

.kh-domain-section-heading > p {
    font-size: 13px;
    line-height: 1.6;
}

.kh-home-domain__form > button {
    border-color: var(--khc-brand);
    background: var(--khc-brand);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(102, 36, 131, .24);
}

.kh-home-domain__form > button i {
    color: inherit !important;
}

.kh-home-domain__form > button:hover,
.kh-home-domain__form > button:focus-visible {
    border-color: var(--khc-brand-dark);
    background: var(--khc-brand-dark);
    color: #fff !important;
}

.safe-and-stream-con .safe-and-stream-wrap .wrap1 {
    position: relative;
    display: flex;
    height: 160px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 24px 18px;
    border: 1px solid #e4e6ec;
    border-top: 4px solid var(--khc-brand);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(24, 30, 48, .055);
}

.safe-and-stream-con .safe-and-stream-wrap .wrap1:nth-child(even) {
    border-top-color: #128c91;
}

.safe-and-stream-con .kh-support-stat__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--khc-brand-soft);
    color: var(--khc-brand);
    font-size: 15px;
}

.safe-and-stream-con .wrap1:nth-child(even) .kh-support-stat__icon {
    background: #e8f6f6;
    color: #087f8c;
}

.safe-and-stream-con .data-centers-con .data-count {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
}

.safe-and-stream-con .data-centers-con .data-text {
    color: #5e6675;
    font-size: 14px;
    line-height: 1.4;
}

#wa-toggle,
#kh-ai-toggle {
    width: 58px;
    height: 58px;
    box-sizing: border-box;
}

@media (max-width: 767.98px) {
    .kh-domain-results-section {
        padding: 22px 0 28px;
    }

    .kh-domain-results-section .kh-domain-result {
        scroll-margin-top: 82px;
    }

    .kh-domain-result-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        min-height: 0;
    }

    .kh-domain-result-card__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .kh-domain-result-card__action {
        width: 100%;
        justify-self: stretch;
    }

    .kh-domain-price-grid {
        grid-template-columns: none;
    }

    .kh-domain-price-grid article {
        min-height: 0;
        flex-basis: min(82vw, 270px);
    }

    .safe-and-stream-con .safe-and-stream-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .safe-and-stream-con .safe-and-stream-wrap .wrap1 {
        height: auto;
        min-height: 132px;
        padding: 18px 10px;
    }

    .safe-and-stream-con .data-centers-con .data-count {
        font-size: 25px;
    }

    .safe-and-stream-con .data-centers-con .data-text {
        font-size: 12px;
    }

    .safe-and-stream-con .heading-title-con p br {
        display: none;
    }

    .kh-cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: grid;
        gap: 8px;
        padding: 12px;
    }

    .kh-cookie-banner__copy strong {
        margin-bottom: 2px;
        font-size: 14px;
    }

    .kh-cookie-banner__copy p {
        font-size: 11px;
        line-height: 1.4;
    }

    .kh-cookie-banner__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 0;
    }

    .kh-cookie-banner__actions .kh-button {
        min-height: 38px;
        padding: 6px 8px;
        font-size: 10px;
        line-height: 1.25;
    }

    .kh-cookie-banner__actions [data-cookie-accept] {
        grid-column: 1 / -1;
    }

    .kh-cookie-modal {
        padding: 8px;
    }

    .kh-cookie-modal__panel {
        max-height: calc(100vh - 16px);
        padding: 16px 14px;
    }

    .kh-cookie-modal__heading {
        margin-bottom: 10px;
    }

    .kh-cookie-modal__heading h2 {
        font-size: 20px;
    }

    .kh-cookie-option {
        gap: 12px;
        padding: 11px 0;
    }

    .kh-cookie-option strong {
        font-size: 13px;
    }

    .kh-cookie-option span {
        font-size: 11px;
        line-height: 1.35;
    }

    .kh-cookie-modal__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-top: 12px;
    }
}

@media (max-width: 575.98px) {
    .kh-domain-search-shell__top {
        align-items: center;
    }

    .kh-domain-form .kh-domain-input-wrap {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .kh-domain-form .kh-domain-input-wrap i {
        width: 44px;
    }

    .kh-domain-result-card__actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-domain-section-heading {
        margin-bottom: 18px;
    }

    .kh-domain-section-heading h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .safe-and-stream-con {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .safe-and-stream-con .heading-title-con h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .safe-and-stream-con .heading-title-con p {
        margin-bottom: 24px;
        font-size: 13px;
        line-height: 1.6;
    }

    .safe-and-stream-con .safe-and-stream-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #wa-toggle,
    #kh-ai-toggle {
        width: 54px;
        height: 54px;
    }

    #wa-widget,
    #kh-ai-widget {
        right: 14px;
    }

    #wa-widget {
        bottom: 14px;
    }

    #kh-ai-widget {
        bottom: 80px;
    }
}

@media (max-width: 575.98px) {
    .kh-hosting-platform-filter {
        display: grid;
        gap: 10px;
        margin: -10px 0 18px;
        padding: 12px;
    }

    .kh-hosting-platform-filter[hidden] {
        display: none;
    }

    .kh-hosting-platform-filter > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kh-hosting-platform-filter button {
        min-height: 66px;
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 7px;
        padding: 8px;
    }

    .kh-hosting-platform-filter button > i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .kh-hosting-platform-filter button strong {
        font-size: 10px;
    }

    .kh-hosting-platform-filter button small {
        font-size: 8px;
        line-height: 1.25;
    }

    .kh-cart-item__controls {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-period-form {
        width: 100%;
    }

    .kh-period-form label {
        width: auto;
        flex: 1;
    }
}

/* Campaign wheel v3: one responsive composition across all screen sizes. */
.kh-wheel-page {
    overflow: hidden;
    background: #eef1f5;
}

.kh-wheel-stage {
    min-height: 0;
    padding: 48px 0 58px;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #dfe3e9;
    background: #f3f5f8;
}

.kh-wheel-stage::before {
    opacity: .7;
    background-image:
        linear-gradient(rgba(102, 36, 131, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 127, 140, .03) 1px, transparent 1px);
    background-size: 56px 56px;
}

.kh-wheel-stage .container {
    max-width: 1240px;
}

.kh-wheel-layout {
    display: grid;
    grid-template-areas: "machine copy";
    grid-template-columns: minmax(520px, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: 58px;
}

.kh-wheel-machine {
    grid-area: machine;
    width: 100%;
    min-width: 0;
    padding: 22px 26px 26px;
    border: 1px solid #d8dde5;
    border-top: 4px solid #662483;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(38, 29, 52, .14);
}

.kh-wheel-copy {
    grid-area: copy;
    max-width: 520px;
}

.kh-wheel-eyebrow {
    margin-bottom: 14px;
    color: #087f8c;
    font-size: 11px;
}

.kh-wheel-copy h1 {
    max-width: 510px;
    margin-bottom: 16px;
    color: #181b2a;
    font-size: 41px;
    line-height: 1.14;
}

.kh-wheel-copy > p {
    max-width: 510px;
    color: #606979;
    font-size: 15px;
    line-height: 1.7;
}

.kh-wheel-benefits {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin: 22px 0;
}

.kh-wheel-benefits span {
    min-height: 60px;
    padding: 11px 12px;
    border-color: #e1e5eb;
    border-radius: 6px;
    box-shadow: none;
}

.kh-wheel-benefits span:nth-child(2) i {
    background: #e8f5f4;
    color: #087f8c;
}

.kh-wheel-benefits span:nth-child(3) i {
    background: #fff3db;
    color: #946400;
}

.kh-wheel-benefits b {
    font-size: 12px;
}

.kh-wheel-benefits small {
    font-size: 9px;
}

.kh-wheel-machine__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e9ef;
}

.kh-wheel-machine__title {
    display: grid;
    gap: 2px;
}

.kh-wheel-machine__title span {
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-wheel-machine__title strong {
    color: #1d2230;
    font-size: 20px;
    line-height: 1.2;
}

.kh-wheel-machine__topline {
    display: grid;
    width: min(250px, 100%);
    margin: 0;
    padding: 0;
    border: 0;
    gap: 7px;
}

.kh-wheel-machine__topline span {
    min-height: 30px;
    padding: 5px 8px;
    border: 1px solid #e0e4eb;
    border-radius: 5px;
    background: #f7f8fa;
    color: #566173;
    font-size: 9px;
}

.kh-wheel-machine__topline span:first-child i {
    color: #946400;
}

.kh-wheel-right-expiry {
    color: #667085;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
}

.kh-wheel-frame {
    width: min(460px, 100%);
    margin: 0 auto;
    padding: 13px;
    border: 1px solid #283044;
    background: #283044;
    box-shadow:
        inset 0 0 0 5px #fff,
        0 18px 40px rgba(30, 36, 52, .2);
}

.kh-wheel-frame::after {
    position: absolute;
    inset: 7px;
    z-index: 2;
    border: 1px dashed rgba(255, 255, 255, .55);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.kh-wheel {
    --label-radius: 160px;
    border: 9px solid #fff;
    background:
        repeating-conic-gradient(
            transparent 0deg 26.9deg,
            rgba(255, 255, 255, .78) 26.9deg 27.692307deg),
        conic-gradient(
            #5e6878 0deg 27.692307deg,
            #662483 27.692307deg 55.384614deg,
            #087f8c 55.384614deg 83.076921deg,
            #737d8d 83.076921deg 110.769228deg,
            #2f5ea8 110.769228deg 138.461535deg,
            #b4445a 138.461535deg 166.153842deg,
            #08705a 166.153842deg 193.846149deg,
            #657080 193.846149deg 221.538456deg,
            #8b3f72 221.538456deg 249.230763deg,
            #286d75 249.230763deg 276.923070deg,
            #a56f00 276.923070deg 304.615377deg,
            #3d5f91 304.615377deg 332.307684deg,
            #4f1f67 332.307684deg 360deg);
    box-shadow:
        inset 0 0 0 4px rgba(25, 30, 43, .14),
        inset 0 0 24px rgba(17, 22, 34, .2);
}

.kh-wheel::before {
    inset: 46px;
    border-color: rgba(255, 255, 255, .28);
}

.kh-wheel > span {
    width: 84px;
    height: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .42);
}

.kh-wheel > span b {
    font-size: 14px;
}

.kh-wheel > span small {
    font-size: 7px;
}

.kh-wheel > span.is-empty b {
    font-size: 11px;
}

.kh-wheel-hub {
    width: 82px;
    border: 6px solid #fff;
    background: #22293a;
    color: #6ed8d2;
    box-shadow:
        0 7px 20px rgba(18, 23, 35, .34),
        inset 0 0 0 2px rgba(255, 255, 255, .1);
}

.kh-wheel-pointer {
    top: -12px;
    z-index: 8;
    border-right-width: 19px;
    border-left-width: 19px;
    border-bottom: 44px solid #e13d52;
    filter:
        drop-shadow(0 4px 4px rgba(28, 31, 43, .28))
        drop-shadow(0 0 0 #fff);
}

.kh-wheel-action {
    gap: 7px;
    margin-top: 20px;
}

.kh-wheel-action button {
    width: min(100%, 360px);
    min-height: 52px;
    border-radius: 6px;
    background: #662483;
    font-size: 13px;
}

.kh-wheel-action small {
    color: #697385;
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
}

.kh-wheel-message,
.kh-wheel-award,
.kh-wheel-countdown {
    width: 100%;
    max-width: 360px;
}

.kh-wheel-award {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2px 14px;
}

.kh-wheel-award strong {
    grid-row: 1 / 3;
    grid-column: 2;
}

.kh-wheel-countdown {
    margin-top: -5px;
}

.kh-wheel-copy > .kh-button {
    min-height: 46px;
    border-radius: 6px;
}

.kh-wheel-terms {
    padding: 48px 0 58px;
    background: #fff;
}

.kh-wheel-terms h2 {
    color: #1d2230;
    font-size: 27px;
}

.kh-wheel-term-grid {
    gap: 14px;
}

.kh-wheel-term-grid article {
    min-height: 170px;
    border: 1px solid #e0e4ea;
    border-top: 4px solid #662483;
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(35, 42, 56, .055);
}

/* Domain page lower bands. */
.kh-domain-pricing {
    border-bottom: 1px solid #e0e4ea;
    background: #eef1f5;
}

.kh-domain-transfer {
    border-bottom: 1px solid #e1e5eb;
    background: #f9fafc;
}

.kh-domain-transfer__layout {
    gap: 54px;
}

.kh-domain-transfer__layout > div:first-child {
    position: relative;
    padding-left: 22px;
}

.kh-domain-transfer__layout > div:first-child::before {
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background: #087f8c;
    content: "";
}

.kh-domain-transfer form {
    padding: 24px;
    border: 1px solid #dfe3e9;
    border-top: 4px solid #662483;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(31, 37, 50, .08);
}

.kh-domain-scenarios {
    border-bottom: 1px solid #dde2e9;
    background: #edf1f5;
}

.kh-domain-scenarios .kh-seo-list {
    display: grid;
    max-width: 1040px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.kh-domain-scenarios .kh-seo-list li {
    min-height: 68px;
    margin: 0;
    border: 1px solid #dde2e9;
    border-radius: 7px;
    box-shadow: 0 7px 18px rgba(31, 37, 50, .04);
}

.kh-domain-scenarios .kh-seo-list li:nth-child(even) {
    border-left: 4px solid #087f8c;
}

.kh-domain-scenarios .kh-seo-list li:nth-child(odd) {
    border-left: 4px solid #662483;
}

.kh-domain-faq-section {
    background: #fafbfc;
}

.kh-domain-faq-section .kh-faq article {
    border: 1px solid #e0e4ea;
    border-left: 4px solid #662483;
    border-radius: 0 7px 7px 0;
    box-shadow: 0 8px 22px rgba(31, 37, 50, .055);
}

.kh-domain-faq-section .kh-faq article:nth-child(even) {
    border-left-color: #087f8c;
}

.kh-domain-faq-section .kh-seo-related a {
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(31, 37, 50, .04);
}

@media (max-width: 991.98px) {
    .kh-wheel-stage {
        padding: 38px 0 48px;
    }

    .kh-wheel-layout {
        grid-template-areas:
            "machine"
            "copy";
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .kh-wheel-machine,
    .kh-wheel-copy {
        width: min(100%, 650px);
        justify-self: center;
    }

    .kh-wheel-copy {
        max-width: 650px;
    }

    .kh-wheel-copy h1,
    .kh-wheel-copy > p {
        max-width: 620px;
    }

    .kh-wheel-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kh-domain-transfer__layout > div:first-child {
        padding-left: 18px;
    }
}

@media (max-width: 767.98px) {
    .kh-wheel-copy h1 {
        font-size: 35px;
    }

    .kh-wheel-benefits {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel-terms {
        padding: 38px 0 44px;
    }

    .kh-wheel-term-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-wheel-term-grid article {
        min-height: 0;
    }

    .kh-domain-scenarios .kh-seo-list {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kh-wheel-stage {
        padding: 22px 0 36px;
    }

    .kh-wheel-layout {
        gap: 28px;
    }

    .kh-wheel-machine {
        padding: 14px 12px 20px;
    }

    .kh-wheel-machine__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 17px;
        padding: 0 2px 13px;
    }

    .kh-wheel-machine__title strong {
        font-size: 18px;
    }

    .kh-wheel-machine__topline {
        width: 100%;
        justify-content: flex-start;
    }

    .kh-wheel-right-expiry {
        text-align: left;
    }

    .kh-wheel-frame {
        width: min(360px, 100%);
        padding: 9px;
    }

    .kh-wheel {
        --label-radius: clamp(84px, 29vw, 108px);
        border-width: 6px;
    }

    .kh-wheel::before {
        inset: 34px;
    }

    .kh-wheel > span {
        width: 58px;
        height: 32px;
    }

    .kh-wheel > span b {
        font-size: 10px;
    }

    .kh-wheel > span small {
        font-size: 5px;
    }

    .kh-wheel > span.is-empty {
        width: 50px;
    }

    .kh-wheel > span.is-empty b {
        font-size: 8px;
    }

    .kh-wheel > span.is-empty small {
        display: none;
    }

    .kh-wheel-hub {
        width: 58px;
        border-width: 5px;
        font-size: 17px;
    }

    .kh-wheel-pointer {
        top: -10px;
        border-right-width: 15px;
        border-left-width: 15px;
        border-bottom-width: 36px;
    }

    .kh-wheel-action button {
        width: 100%;
    }

    .kh-wheel-copy h1 {
        font-size: 30px;
    }

    .kh-wheel-copy > p {
        font-size: 14px;
    }

    .kh-wheel-award {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .kh-domain-transfer__layout > div:first-child {
        padding-left: 14px;
    }

    .kh-domain-transfer form {
        padding: 18px 14px;
    }
}

/* Mobile catalog cards use compact horizontal rows instead of tall desktop cards. */
@media (max-width: 767.98px) {
    .kh-product-grid {
        gap: 12px;
    }

    .kh-product-grid .kh-plan-catalog-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 116px;
        grid-template-areas:
            "identity purchase"
            "details details";
        min-height: 0;
        align-items: start;
        gap: 14px 12px;
        padding: 15px 14px;
        border-top: 1px solid var(--khc-border);
        border-left: 4px solid var(--kh-card-accent);
        border-radius: 6px;
        box-shadow: 0 7px 20px rgba(24, 30, 48, .055);
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-identity {
        grid-area: identity;
        min-width: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__top {
        min-height: 0;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 15px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__labels {
        min-width: 0;
        justify-content: flex-start;
        gap: 4px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-category-badge,
    .kh-product-grid .kh-plan-catalog-card .kh-status {
        max-width: 100%;
        padding: 5px 7px;
        font-size: 9px;
        line-height: 1.25;
        white-space: normal;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-family {
        margin-top: 10px;
        font-size: 9px;
    }

    .kh-product-grid .kh-plan-catalog-card h2 {
        margin: 3px 0;
        font-size: 21px;
        line-height: 1.15;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-identity > p {
        display: -webkit-box;
        min-height: 0;
        margin: 6px 0 0;
        overflow: hidden;
        color: var(--khc-muted);
        font-size: 11px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-details {
        display: grid;
        grid-area: details;
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 10px;
        min-width: 0;
        margin: 0;
        padding-top: 11px;
        border-top: 1px solid #e8ecf2;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        min-width: 0;
        margin: 0;
        border: 1px solid #e7ebf1;
        border-radius: 5px;
        background: #fbfcfd;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div {
        min-width: 0;
        min-height: 47px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        padding: 7px 8px;
        border-right: 1px solid #e7ebf1;
        border-bottom: 1px solid #e7ebf1;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div:nth-child(2n) {
        border-right: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list dt {
        font-size: 10px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-spec-list dd {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.3;
        overflow-wrap: anywhere;
        text-align: left;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-term-offer {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-term-offer span {
        min-height: 0;
        grid-template-columns: auto;
        gap: 0;
        padding: 5px 6px;
        font-size: 10px;
        line-height: 1.25;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-term-offer b {
        font-size: 10px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase {
        display: grid;
        grid-area: purchase;
        align-content: start;
        gap: 8px;
        min-width: 0;
        margin: 0;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price small {
        font-size: 9px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price span {
        font-size: 19px;
        line-height: 1.2;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price em {
        display: none;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-purchase > .kh-button,
    .kh-product-grid .kh-plan-catalog-card .kh-plan-cart-form .kh-button {
        min-height: 42px;
        margin: 0;
        padding: 7px 8px;
        font-size: 11px;
        line-height: 1.25;
        box-shadow: 0 6px 16px rgba(102, 36, 131, .16);
    }
}

@media (max-width: 374.98px) {
    .kh-product-grid .kh-plan-catalog-card {
        grid-template-columns: minmax(0, 1fr) 105px;
        gap: 12px 9px;
        padding: 13px 11px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-plan-details {
        grid-template-columns: minmax(0, 1fr);
        gap: 7px;
    }

    .kh-product-grid .kh-plan-catalog-card .kh-product-card__price span {
        font-size: 17px;
    }
}

/* Authentication forms lead the first viewport on phones. */
@media (max-width: 767.98px) {
    .kh-auth-page {
        min-height: 0;
        padding: 18px 0 42px;
    }

    .kh-auth-page > .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .kh-auth-layout {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 20px;
    }

    .kh-auth-layout > .kh-auth-form {
        grid-row: 1;
        min-width: 0;
        width: 100%;
        gap: 14px;
        padding: 20px 17px;
        border-top-width: 4px;
        box-shadow: 0 13px 34px rgba(27, 31, 48, .09);
    }

    .kh-auth-layout > .kh-auth-intro {
        grid-row: 2;
        max-width: none;
        padding: 18px 17px 18px 20px;
        border: 1px solid #e1e6ed;
        border-radius: 6px;
        background: #fff;
    }

    .kh-auth-layout > .kh-auth-intro::before {
        top: 18px;
        bottom: 18px;
    }

    .kh-auth-intro .kh-kicker {
        font-size: 10px;
    }

    .kh-auth-intro h1 {
        margin: 6px 0 8px;
        font-size: 25px;
        line-height: 1.15;
    }

    .kh-auth-intro > p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .kh-auth-intro ul {
        grid-template-columns: minmax(0, 1fr);
        gap: 7px;
        margin-top: 14px;
    }

    .kh-auth-intro li {
        min-height: 30px;
        font-size: 12px;
    }

    .kh-auth-intro li i {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .kh-auth-intro .kh-security-block {
        margin-top: 14px;
        padding: 12px;
    }

    .kh-auth-form .kh-form-title--with-icon {
        align-items: center;
        gap: 11px;
    }

    .kh-auth-form .kh-form-title__icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 15px;
    }

    .kh-auth-form .kh-form-title h2 {
        font-size: 21px;
    }

    .kh-auth-form .kh-form-title p {
        font-size: 12px;
        line-height: 1.45;
    }

    .kh-auth-form .kh-form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
    }

    .kh-auth-form label > span:first-child,
    .kh-auth-form .kh-inline-check {
        font-size: 12px;
    }

    .kh-auth-form input:not([type="checkbox"]):not([type="radio"]),
    .kh-auth-form select {
        min-height: 46px;
    }

    .kh-auth-form .kh-button--wide,
    .kh-auth-form .kh-google-button {
        min-height: 46px;
    }

    .kh-auth-provider-note {
        margin-top: -5px;
        font-size: 10px;
    }
}

/* Son katman, genel form kurallarından sonra destek ekranı vurgularını korur. */
.kh-admin-filter.kh-admin-filter--tickets {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, .45fr) auto;
}

.kh-panel-form.kh-ticket-reply-form {
    border-top-color: #18a7ad;
}

@media (max-width: 991.98px) {
    .kh-admin-filter.kh-admin-filter--tickets {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Mobil kimlik doğrulama formlarında checkbox metin alanı yüksekliği almamalıdır. */
.kh-auth-form .kh-inline-check {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
}

.kh-auth-form .kh-inline-check input[type="checkbox"] {
    display: block;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    flex: 0 0 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 3px;
    box-shadow: none !important;
    accent-color: #70258f;
}

.kh-auth-form .kh-inline-check > span {
    display: block;
    margin: 0 !important;
    line-height: 1.55;
}

.kh-support-header {
    margin-bottom: 18px;
}

.kh-support-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.kh-support-overview article {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #fff;
}

.kh-support-overview article > span,
.kh-support-section-heading > span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f1e8f5;
    color: #70258f;
}

.kh-support-overview article:nth-child(2) > span {
    background: #e6f6f4;
    color: #087f72;
}

.kh-support-overview article:nth-child(3) > span {
    background: #eef2f8;
    color: #315b89;
}

.kh-support-overview article div {
    display: grid;
}

.kh-support-overview strong {
    color: #151b2b;
    font-size: 19px;
}

.kh-support-overview small {
    color: #687284;
    font-size: 12px;
}

.kh-support-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.kh-support-section-heading h2 {
    margin: 0 0 3px;
    color: #151b2b;
    font-size: 18px;
}

.kh-support-section-heading p {
    margin: 0;
    color: #687284;
    font-size: 12px;
    line-height: 1.5;
}

.kh-support-create-form {
    border-top-color: #70258f;
}

.kh-ticket-history--enhanced {
    border-top-color: #18a7ad;
}

.kh-ticket-history--enhanced article {
    padding: 0;
    border: 0;
}

.kh-ticket-history--enhanced article + article {
    margin-top: 9px;
}

.kh-ticket-history--enhanced .kh-ticket-link {
    padding: 13px 36px 13px 13px;
    border: 1px solid #e0e5ec;
    border-radius: 7px;
    background: #fbfcfd;
}

.kh-ticket-history--enhanced .kh-ticket-link:hover,
.kh-ticket-history--enhanced .kh-ticket-link:focus-visible {
    border-color: #bea1ca;
    background: #f8f3fa;
}

.kh-ticket-history--enhanced .kh-ticket-link > i {
    right: 14px;
    bottom: 16px;
}

@media (max-width: 767.98px) {
    .kh-auth-form .kh-inline-check {
        align-items: center !important;
        padding: 12px 14px;
    }

    .kh-support-overview {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .kh-support-overview article {
        min-height: 66px;
        padding: 11px 13px;
    }

    .kh-support-header .kh-button {
        width: 100%;
    }
}

/* Destek merkezi 2026: bilet listesi ve talep yazışmaları. */
.kh-support-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
    align-items: start;
    gap: 22px;
}

.kh-support-inbox {
    min-width: 0;
}

.kh-support-inbox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.kh-support-inbox__count {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #dce2eb;
    border-radius: 6px;
    background: #fff;
    color: #596477;
    font-size: 11px;
    font-weight: 800;
}

.kh-ticket-list {
    display: grid;
    gap: 10px;
}

.kh-ticket-row {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(24, 30, 48, .045);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kh-ticket-row:hover,
.kh-ticket-row:focus-within {
    border-color: #b99ac7;
    box-shadow: 0 12px 28px rgba(68, 29, 85, .09);
    transform: translateY(-1px);
}

.kh-ticket-row__link {
    position: relative;
    display: grid;
    grid-template-columns: 4px minmax(0, 1fr) auto;
    min-height: 144px;
    color: inherit;
    text-decoration: none;
}

.kh-ticket-row__state {
    width: 4px;
    height: 100%;
    background: #70258f;
}

.kh-ticket-row__state.is-customer-action {
    background: #c07a05;
}

.kh-ticket-row__state.is-team-action {
    background: #087f72;
}

.kh-ticket-row__state.is-progress {
    background: #356aa0;
}

.kh-ticket-row__state.is-complete {
    background: #778092;
}

.kh-ticket-row__content {
    min-width: 0;
    padding: 17px 18px;
}

.kh-ticket-row__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kh-ticket-row__number {
    color: #70258f;
    font-size: 11px;
    font-weight: 900;
}

.kh-ticket-row h3 {
    margin: 9px 0 6px;
    color: #171c2b;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.kh-ticket-row p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #5e6879;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kh-ticket-row p strong {
    color: #30394b;
}

.kh-ticket-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 12px;
    color: #697486;
    font-size: 10px;
}

.kh-ticket-row__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kh-ticket-row__meta i {
    color: #70258f;
}

.kh-ticket-row__action {
    display: flex;
    min-width: 126px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 18px;
    border-left: 1px solid #e5e9ef;
    color: #70258f;
    font-size: 11px;
    font-weight: 900;
}

.kh-ticket-row__action i {
    transition: transform .2s ease;
}

.kh-ticket-row:hover .kh-ticket-row__action i,
.kh-ticket-row:focus-within .kh-ticket-row__action i {
    transform: translateX(3px);
}

.kh-status.is-customer-action {
    background: #fff4da;
    color: #805600;
}

.kh-status.is-team-action,
.kh-status.is-open {
    background: #e7f6f2;
    color: #08705a;
}

.kh-status.is-progress {
    background: #eaf1f8;
    color: #285d91;
}

.kh-status.is-complete {
    background: #eef0f3;
    color: #515b6c;
}

.kh-support-create-panel {
    min-width: 0;
}

.kh-support-create-form {
    position: sticky;
    top: 104px;
    padding: 22px;
    border: 1px solid #dce2eb;
    border-top: 3px solid #70258f;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(24, 30, 48, .06);
}

.kh-support-create-form .kh-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kh-support-security-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    border-left: 3px solid #18a7ad;
    background: #f2faf9;
    color: #526174;
    font-size: 10px;
    line-height: 1.5;
}

.kh-support-security-note i {
    margin-top: 2px;
    color: #087f72;
}

.kh-support-empty {
    display: grid;
    min-height: 280px;
    place-items: center;
    align-content: center;
    padding: 32px;
    border: 1px dashed #ccd4df;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.kh-support-empty > span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1e8f5;
    color: #70258f;
    font-size: 20px;
}

.kh-support-empty h3 {
    margin: 14px 0 5px;
    font-size: 17px;
}

.kh-support-empty p {
    max-width: 430px;
    margin: 0 0 16px;
    color: #687284;
    font-size: 12px;
    line-height: 1.6;
}

.kh-panel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: #758093;
    font-size: 11px;
}

.kh-panel-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #70258f;
    font-weight: 800;
    text-decoration: none;
}

.kh-panel-breadcrumb > i {
    font-size: 8px;
}

.kh-ticket-title-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.kh-ticket-title-meta .kh-kicker {
    margin: 0;
}

.kh-ticket-page-header--chat {
    margin-bottom: 18px;
}

.kh-ticket-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
    align-items: start;
    gap: 18px;
}

.kh-ticket-thread {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d9e0e9;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(24, 30, 48, .07);
}

.kh-ticket-thread__header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    border-bottom: 1px solid #e1e6ed;
    background: #fff;
}

.kh-ticket-thread__identity {
    display: flex;
    align-items: center;
    gap: 11px;
}

.kh-ticket-thread__identity > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #eee3f3;
    color: #70258f;
}

.kh-ticket-thread__identity h2 {
    margin: 0 0 3px;
    color: #171c2b;
    font-size: 15px;
}

.kh-ticket-thread__identity p {
    margin: 0;
    color: #6a7485;
    font-size: 10px;
}

.kh-ticket-thread__count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid #dce2eb;
    border-radius: 6px;
    color: #626d7e;
    font-size: 10px;
    font-weight: 800;
}

.kh-ticket-thread__entries {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: #f5f7fa;
}

.kh-ticket-thread__start {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 0 5px;
    color: #7a8494;
    font-size: 9px;
    text-align: center;
}

.kh-ticket-thread__start::before,
.kh-ticket-thread__start::after {
    height: 1px;
    flex: 1;
    background: #dfe4eb;
    content: "";
}

.kh-ticket-entry {
    overflow: hidden;
    border: 1px solid #dce2eb;
    border-left: 4px solid #087f72;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(24, 30, 48, .035);
}

.kh-ticket-entry.is-staff {
    border-left-color: #70258f;
}

.kh-ticket-entry__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-bottom: 1px solid #e5e9ef;
    background: #f3faf9;
}

.kh-ticket-entry.is-staff .kh-ticket-entry__header {
    background: #faf6fc;
}

.kh-ticket-entry__avatar {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #dff2ee;
    color: #08705a;
}

.kh-ticket-entry.is-staff .kh-ticket-entry__avatar {
    background: #eadcf0;
    color: #70258f;
}

.kh-ticket-entry__header > div {
    display: grid;
    gap: 1px;
}

.kh-ticket-entry__header strong {
    color: #1c2332;
    font-size: 12px;
}

.kh-ticket-entry__header span,
.kh-ticket-entry__header time {
    color: #707b8c;
    font-size: 9px;
}

.kh-ticket-entry__header time {
    white-space: nowrap;
}

.kh-ticket-entry__body {
    padding: 15px 16px 17px;
}

.kh-ticket-entry__body p {
    margin: 0;
    color: #30394b;
    font-size: 13px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.kh-ticket-reply-editor {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-top: 1px solid #dfe5ec;
    background: #fff;
}

.kh-ticket-reply-editor__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.kh-ticket-reply-editor__heading h2 {
    margin: 0 0 3px;
    color: #1c2332;
    font-size: 15px;
}

.kh-ticket-reply-editor__heading p,
.kh-ticket-reply-editor__heading > span {
    margin: 0;
    color: #707b8c;
    font-size: 9px;
}

.kh-ticket-reply-editor > label {
    color: #242b3a;
    font-size: 11px;
    font-weight: 900;
}

.kh-ticket-reply-editor__field textarea {
    width: 100%;
    min-height: 112px;
    max-height: 220px;
    resize: vertical;
}

.kh-ticket-reply-editor__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.kh-ticket-reply-editor__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #737e8e;
    font-size: 9px;
}

.kh-ticket-reply-editor__footer > span i {
    color: #087f72;
}

.kh-ticket-reply-editor__footer .kh-button {
    min-width: 150px;
}

.kh-ticket-thread__closed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid #dfe5ec;
    background: #f8f9fb;
}

.kh-ticket-thread__closed > i {
    color: #70258f;
}

.kh-ticket-thread__closed div {
    display: grid;
    flex: 1;
}

.kh-ticket-thread__closed strong {
    font-size: 12px;
}

.kh-ticket-thread__closed span,
.kh-ticket-thread__closed a {
    color: #687284;
    font-size: 10px;
}

.kh-ticket-context {
    position: sticky;
    top: 104px;
    overflow: hidden;
    border: 1px solid #dce2eb;
    border-top: 3px solid #18a7ad;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(24, 30, 48, .05);
}

.kh-ticket-context__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid #e2e7ed;
}

.kh-ticket-context__heading > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e7f6f4;
    color: #087f72;
}

.kh-ticket-context__heading h2 {
    margin: 0 0 2px;
    font-size: 14px;
}

.kh-ticket-context__heading p {
    margin: 0;
    color: #6c7687;
    font-size: 9px;
}

.kh-ticket-context dl {
    margin: 0;
    padding: 4px 16px;
}

.kh-ticket-context dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f4;
}

.kh-ticket-context dt {
    color: #747e8e;
    font-size: 10px;
}

.kh-ticket-context dd {
    margin: 0;
    color: #222938;
    font-size: 10px;
    font-weight: 800;
    text-align: right;
    overflow-wrap: anywhere;
}

.kh-ticket-context__note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 12px;
    padding: 11px;
    background: #f3f6fa;
    color: #5e6879;
}

.kh-ticket-context__note i {
    margin-top: 2px;
    color: #70258f;
}

.kh-ticket-context__note p {
    margin: 0;
    font-size: 9px;
    line-height: 1.55;
}

@media (max-width: 1199.98px) {
    .kh-support-workspace {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    }

    .kh-ticket-row__action {
        min-width: 48px;
        padding: 14px;
    }

    .kh-ticket-row__action span {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .kh-support-workspace,
    .kh-ticket-workspace {
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-support-create-form,
    .kh-ticket-context {
        position: static;
    }

    .kh-ticket-context {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .kh-support-inbox__header,
    .kh-ticket-thread__header {
        align-items: flex-start;
    }

    .kh-ticket-row__link {
        grid-template-columns: 4px minmax(0, 1fr);
        min-height: 0;
    }

    .kh-ticket-row__content {
        padding: 15px;
    }

    .kh-ticket-row__action {
        display: none;
    }

    .kh-ticket-row__meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px 12px;
    }

    .kh-ticket-row__meta span:last-child {
        grid-column: 1 / -1;
    }

    .kh-support-create-form {
        padding: 18px;
    }

    .kh-ticket-page-header--chat .kh-button {
        width: 100%;
    }

    .kh-ticket-thread__entries {
        padding: 14px;
    }

    .kh-ticket-entry__header {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .kh-ticket-entry__header time {
        grid-column: 2;
    }

    .kh-ticket-reply-editor__footer {
        align-items: flex-start;
    }

    .kh-ticket-reply-editor__footer > span {
        max-width: 58%;
    }
}

@media (max-width: 479.98px) {
    .kh-support-overview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kh-support-overview article {
        display: grid;
        min-width: 0;
        justify-items: center;
        padding: 10px 5px;
        text-align: center;
    }

    .kh-support-overview article > span {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .kh-support-overview strong {
        font-size: 15px;
    }

    .kh-support-overview small {
        font-size: 9px;
        line-height: 1.25;
    }

    .kh-support-section-heading > span {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .kh-ticket-row__topline {
        align-items: flex-start;
    }

    .kh-ticket-row__topline .kh-status {
        max-width: 52%;
        text-align: right;
        white-space: normal;
    }

    .kh-ticket-thread__header {
        padding: 12px 14px;
    }

    .kh-ticket-thread__count {
        display: none;
    }

    .kh-ticket-thread__identity > span {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .kh-ticket-entry__header {
        padding: 10px 12px;
    }

    .kh-ticket-entry__body {
        padding: 13px;
    }

    .kh-ticket-reply-editor {
        padding: 14px;
    }

    .kh-ticket-reply-editor__footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .kh-ticket-reply-editor__footer > span {
        max-width: none;
    }

    .kh-ticket-reply-editor__footer .kh-button {
        width: 100%;
    }
}

/* Yönetici destek merkezi: filtre, talep listesi ve doğrudan yanıt ekranı. */
.kh-admin-support-page > .container { max-width: 1480px; }

.kh-admin-support-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dce2eb;
}

.kh-admin-support-header h1 {
    margin: 4px 0 6px;
    color: #171c2b;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.kh-admin-support-header p {
    max-width: 760px;
    margin: 0;
    color: #626d7e;
    font-size: 13px;
    line-height: 1.65;
}

.kh-admin-support-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.kh-admin-support-total {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-left: 3px solid #18a7ad;
    background: #fff;
    color: #667184;
    font-size: 11px;
}

.kh-admin-support-total strong { color: #171c2b; font-size: 18px; }

.kh-admin-support-filter {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(230px, .36fr) auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
    padding: 15px;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(24, 30, 48, .045);
}

.kh-admin-support-filter label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #4f5a6d;
    font-size: 11px;
    font-weight: 800;
}

.kh-admin-support-filter input,
.kh-admin-support-filter select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ced7e4;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    font-size: 12px;
}

.kh-admin-support-filter input { padding: 9px 12px 9px 38px; }
.kh-admin-support-filter select { padding: 9px 11px; }
.kh-admin-support-filter__field { position: relative; display: block; }

.kh-admin-support-filter__field > i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: #70258f;
    transform: translateY(-50%);
}

.kh-admin-support-filter .kh-button { min-height: 44px; }
.kh-admin-ticket-list { display: grid; gap: 9px; }

.kh-admin-ticket-card {
    overflow: hidden;
    border: 1px solid #dce2eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(24, 30, 48, .04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kh-admin-ticket-card:hover,
.kh-admin-ticket-card:focus-within {
    border-color: #b99ac7;
    box-shadow: 0 12px 28px rgba(68, 29, 85, .085);
    transform: translateY(-1px);
}

.kh-admin-ticket-card > a {
    display: grid;
    grid-template-columns: 4px minmax(330px, 1.15fr) minmax(280px, .8fr) minmax(110px, auto);
    min-height: 124px;
    align-items: stretch;
    color: inherit;
    text-decoration: none;
}

.kh-admin-ticket-card__state { width: 4px; height: 100%; background: #70258f; }
.kh-admin-ticket-card__state.is-team-action { background: #087f72; }
.kh-admin-ticket-card__state.is-customer-action { background: #c07a05; }
.kh-admin-ticket-card__state.is-progress { background: #356aa0; }
.kh-admin-ticket-card__state.is-complete { background: #778092; }

.kh-admin-ticket-card__main {
    display: grid;
    min-width: 0;
    align-content: center;
    padding: 16px 18px;
}

.kh-admin-ticket-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kh-admin-ticket-card__number { color: #70258f; font-size: 10px; font-weight: 900; }

.kh-admin-ticket-card__subject {
    margin: 8px 0;
    color: #171c2b;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.kh-admin-ticket-card__customer {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: #647084;
}

.kh-admin-ticket-card__customer > i { color: #087f72; }

.kh-admin-ticket-card__customer > span {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 9px;
}

.kh-admin-ticket-card__customer strong,
.kh-admin-ticket-card__customer small { overflow-wrap: anywhere; }
.kh-admin-ticket-card__customer strong { color: #333b4b; font-size: 11px; }
.kh-admin-ticket-card__customer small { color: #727d8e; font-size: 10px; }

.kh-admin-ticket-card__meta {
    display: grid;
    min-width: 0;
    align-content: center;
    gap: 8px;
    padding: 16px 18px;
    border-left: 1px solid #e5e9ef;
    color: #687386;
    font-size: 10px;
}

.kh-admin-ticket-card__meta > span,
.kh-admin-ticket-card__meta > time {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: center;
    gap: 5px;
}

.kh-admin-ticket-card__meta i { color: #70258f; text-align: center; }
.kh-admin-ticket-card__meta strong { color: #3e4758; overflow-wrap: anywhere; }

.kh-admin-ticket-card__open {
    display: flex;
    min-width: 118px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-left: 1px solid #e5e9ef;
    background: #fbfafc;
    color: #70258f;
    font-size: 11px;
    font-weight: 900;
}

.kh-admin-ticket-card__open i { transition: transform .2s ease; }
.kh-admin-ticket-card:hover .kh-admin-ticket-card__open i,
.kh-admin-ticket-card:focus-within .kh-admin-ticket-card__open i { transform: translateX(3px); }

.kh-admin-ticket-workspace { grid-template-columns: minmax(0, 1fr) minmax(280px, 330px); }
.kh-admin-ticket-reply { background: #fff; }

.kh-admin-reply-controls {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) auto;
    align-items: end;
    gap: 12px;
}

.kh-admin-reply-controls label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #242b3a;
    font-size: 11px;
    font-weight: 900;
}

.kh-admin-reply-controls select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ced7e4;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    padding: 9px 11px;
}

.kh-admin-reply-controls .kh-button { min-width: 170px; min-height: 44px; }
.kh-admin-support-empty { min-height: 330px; }

@media (max-width: 1199.98px) {
    .kh-admin-ticket-card > a { grid-template-columns: 4px minmax(300px, 1fr) minmax(230px, .65fr) 54px; }
    .kh-admin-ticket-card__open { min-width: 54px; }
    .kh-admin-ticket-card__open span { display: none; }
}

@media (max-width: 991.98px) {
    .kh-admin-support-header { align-items: flex-start; }
    .kh-admin-support-header__actions { align-items: stretch; flex-direction: column; }
    .kh-admin-support-filter { grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr); }
    .kh-admin-support-filter .kh-button { grid-column: 1 / -1; width: 100%; }
    .kh-admin-ticket-card > a { grid-template-columns: 4px minmax(0, 1fr) 52px; }
    .kh-admin-ticket-card__meta { grid-column: 2; padding-top: 0; border-left: 0; }
    .kh-admin-ticket-card__open { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 767.98px) {
    .kh-admin-support-header { display: grid; gap: 14px; }
    .kh-admin-support-header__actions { display: grid; grid-template-columns: auto minmax(0, 1fr); }
    .kh-admin-support-header__actions .kh-button { width: 100%; }
    .kh-admin-support-filter { grid-template-columns: minmax(0, 1fr); padding: 13px; }
    .kh-admin-support-filter .kh-button { grid-column: 1; }
    .kh-admin-ticket-card > a { grid-template-columns: 4px minmax(0, 1fr); }
    .kh-admin-ticket-card__main { padding: 14px; }
    .kh-admin-ticket-card__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 12px; padding: 0 14px 14px; }
    .kh-admin-ticket-card__meta > time { grid-column: 1 / -1; }
    .kh-admin-ticket-card__open { display: none; }
}

@media (max-width: 575.98px) {
    .kh-admin-support-header__actions { grid-template-columns: minmax(0, 1fr); }
    .kh-admin-support-total { justify-content: center; }
    .kh-admin-ticket-card__topline { align-items: flex-start; }
    .kh-admin-ticket-card__topline .kh-status { max-width: 58%; text-align: right; white-space: normal; }
    .kh-admin-ticket-card__customer > span { display: grid; }
    .kh-admin-ticket-card__meta { grid-template-columns: minmax(0, 1fr); }
    .kh-admin-ticket-card__meta > time { grid-column: 1; }
    .kh-admin-reply-controls { grid-template-columns: minmax(0, 1fr); }
    .kh-admin-reply-controls .kh-button { width: 100%; }
}

/* Destek merkezi V3: okunaklı bilet kaydı, net işlem alanı ve kurumsal operasyon tablosu. */
.kh-support-desk-page > .container,
.kh-ops-support-page > .container {
    width: calc(100% - 48px);
    max-width: 1560px;
}

.kh-support-desk,
.kh-ops-support-page {
    color: #171c2b;
}

.kh-desk-heading,
.kh-ops-heading,
.kh-case-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.kh-desk-heading h1,
.kh-ops-heading h1,
.kh-case-heading h1 {
    margin: 5px 0 7px;
    color: #171c2b;
    font-size: 32px;
    line-height: 1.18;
}

.kh-desk-heading p,
.kh-ops-heading p,
.kh-case-heading p {
    max-width: 760px;
    margin: 0;
    color: #606b7e;
    font-size: 14px;
    line-height: 1.65;
}

.kh-desk-heading .kh-button,
.kh-ops-heading .kh-button,
.kh-case-heading .kh-button {
    flex: 0 0 auto;
}

.kh-desk-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 36, 51, .045);
}

.kh-desk-summary > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
}

.kh-desk-summary > div + div {
    border-left: 1px solid #e3e8ef;
}

.kh-desk-summary__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 16px;
}

.kh-desk-summary__icon.is-purple { background: #f0e7f4; color: #70258f; }
.kh-desk-summary__icon.is-amber { background: #fff3dc; color: #966000; }
.kh-desk-summary__icon.is-teal { background: #e3f5f2; color: #087f72; }

.kh-desk-summary > div > span:last-child {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.kh-desk-summary small {
    color: #697486;
    font-size: 12px;
    font-weight: 700;
}

.kh-desk-summary strong {
    color: #171c2b;
    font-size: 21px;
    line-height: 1.15;
}

.kh-support-desk-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(350px, .68fr);
    align-items: start;
    gap: 24px;
}

.kh-ticket-register,
.kh-request-panel,
.kh-case-record,
.kh-case-sidebar,
.kh-ops-reply,
.kh-ops-register {
    min-width: 0;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(30, 36, 51, .05);
}

.kh-register-heading,
.kh-case-record__header {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border-bottom: 1px solid #e1e6ed;
}

.kh-register-heading > div,
.kh-case-record__header > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.kh-register-heading__icon,
.kh-case-record__header > div > span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #efe6f3;
    color: #70258f;
}

.kh-register-heading h2,
.kh-case-record__header h2 {
    margin: 0 0 3px;
    color: #171c2b;
    font-size: 17px;
}

.kh-register-heading p,
.kh-case-record__header p {
    margin: 0;
    color: #6b7688;
    font-size: 12px;
}

.kh-register-heading > strong,
.kh-case-record__header > strong {
    flex: 0 0 auto;
    color: #5c687a;
    font-size: 12px;
}

.kh-register-list {
    display: grid;
}

.kh-register-ticket {
    margin: 0;
    border-bottom: 1px solid #e5e9ef;
}

.kh-register-ticket:last-child {
    border-bottom: 0;
}

.kh-register-ticket > a {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    min-height: 142px;
    align-items: center;
    padding: 0 18px;
    color: inherit;
    text-decoration: none;
    transition: background-color .18s ease;
}

.kh-register-ticket > a:hover,
.kh-register-ticket > a:focus-visible {
    background: #fbfafc;
}

.kh-register-ticket__marker,
.kh-ops-ticket__status-dot {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f5f2;
    color: #087f72;
    font-size: 12px;
}

.kh-register-ticket__marker.is-customer-action { background: #fff2d8; color: #926000; }
.kh-register-ticket__marker.is-progress { background: #e7f0f8; color: #2c6092; }
.kh-register-ticket__marker.is-complete { background: #edf0f3; color: #606a7a; }

.kh-register-ticket__body {
    display: grid;
    min-width: 0;
    align-content: center;
    gap: 7px;
    padding: 18px 12px 18px 4px;
}

.kh-register-ticket__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kh-register-ticket__top > strong {
    color: #70258f;
    font-size: 12px;
}

.kh-register-ticket__subject {
    color: #181e2d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.kh-register-ticket__preview {
    display: block;
    overflow: hidden;
    color: #596578;
    font-size: 13px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-register-ticket__preview b { color: #374052; }

.kh-register-ticket__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 17px;
    color: #727d8e;
    font-size: 11px;
}

.kh-register-ticket__meta > span,
.kh-register-ticket__meta > time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kh-register-ticket__meta i { color: #70258f; }

.kh-register-ticket__open {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9dfe8;
    border-radius: 6px;
    color: #70258f;
    transition: border-color .18s ease, background-color .18s ease;
}

.kh-register-ticket > a:hover .kh-register-ticket__open {
    border-color: #70258f;
    background: #70258f;
    color: #fff;
}

.kh-request-panel {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border-top: 3px solid #70258f;
}

.kh-request-form {
    display: grid;
    gap: 15px;
    padding: 22px;
}

.kh-request-form > header,
.kh-ops-reply > header,
.kh-case-sidebar > header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e8ee;
}

.kh-request-form > header > span,
.kh-ops-reply > header > span,
.kh-case-sidebar > header > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #efe6f3;
    color: #70258f;
    font-size: 16px;
}

.kh-request-form h2,
.kh-ops-reply h2,
.kh-case-sidebar h2 {
    margin: 0 0 3px;
    color: #171c2b;
    font-size: 17px;
}

.kh-request-form header p,
.kh-ops-reply header p,
.kh-case-sidebar header p {
    margin: 0;
    color: #6d7788;
    font-size: 12px;
}

.kh-request-form > label,
.kh-request-form__grid label,
.kh-ops-reply > label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #30384a;
    font-size: 12px;
    font-weight: 800;
}

.kh-request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.kh-request-form input,
.kh-request-form select,
.kh-request-form textarea,
.kh-ops-reply select,
.kh-ops-reply textarea,
.kh-case-reply textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cfd7e2;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    font-size: 13px;
}

.kh-request-form input,
.kh-request-form select,
.kh-ops-reply select { padding: 10px 12px; }

.kh-request-form textarea,
.kh-ops-reply textarea,
.kh-case-reply textarea {
    padding: 12px 13px;
    line-height: 1.55;
    resize: vertical;
}

.kh-request-form input:focus,
.kh-request-form select:focus,
.kh-request-form textarea:focus,
.kh-ops-reply select:focus,
.kh-ops-reply textarea:focus,
.kh-case-reply textarea:focus {
    border-color: #70258f;
    box-shadow: 0 0 0 3px rgba(112, 37, 143, .1);
    outline: 0;
}

.kh-request-form__notice,
.kh-ops-reply__audit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 11px 12px;
    border-left: 3px solid #18a7ad;
    background: #f2faf9;
    color: #566377;
    font-size: 11px;
    line-height: 1.5;
}

.kh-request-form__notice i,
.kh-ops-reply__audit i { margin-top: 2px; color: #087f72; }

.kh-request-form > .kh-button,
.kh-ops-reply > .kh-button { width: 100%; min-height: 48px; }

.kh-support-empty--clean {
    min-height: 390px;
    border: 0;
    box-shadow: none;
}

.kh-case-heading {
    align-items: center;
    margin-bottom: 20px;
    padding: 21px 24px;
    border-left: 4px solid #70258f;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 36, 51, .045);
}

.kh-case-heading__main { min-width: 0; }

.kh-case-heading__main > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.kh-case-number {
    color: #70258f;
    font-size: 12px;
    font-weight: 900;
}

.kh-case-heading h1 {
    font-size: 27px;
    overflow-wrap: anywhere;
}

.kh-case-layout,
.kh-ops-case-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(285px, 330px);
    align-items: start;
    gap: 22px;
}

.kh-ops-case-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 400px);
}

.kh-case-record {
    overflow: hidden;
}

.kh-case-timeline {
    display: grid;
    padding: 6px 22px 10px;
}

.kh-case-entry {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    min-width: 0;
}

.kh-case-entry__rail {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-top: 22px;
}

.kh-case-entry__rail::after {
    position: absolute;
    top: 54px;
    bottom: -10px;
    left: 16px;
    width: 1px;
    background: #dce2ea;
    content: "";
}

.kh-case-entry:last-child .kh-case-entry__rail::after { display: none; }

.kh-case-entry__rail > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 33px;
    height: 33px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #e2f4f1;
    color: #087f72;
    box-shadow: 0 0 0 1px #cddedb;
    font-size: 12px;
}

.kh-case-entry.is-staff .kh-case-entry__rail > span {
    background: #eee3f3;
    color: #70258f;
    box-shadow: 0 0 0 1px #ddcbe5;
}

.kh-case-entry__content {
    min-width: 0;
    padding: 20px 0 22px 4px;
    border-bottom: 1px solid #e4e8ee;
}

.kh-case-entry:last-child .kh-case-entry__content { border-bottom: 0; }

.kh-case-entry__content > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.kh-case-entry__content > header > div {
    display: grid;
    gap: 2px;
}

.kh-case-entry__content strong {
    color: #1b2231;
    font-size: 14px;
}

.kh-case-entry.is-staff .kh-case-entry__content strong { color: #70258f; }

.kh-case-entry__content header span,
.kh-case-entry__content time {
    color: #737e8f;
    font-size: 11px;
}

.kh-case-entry__content time { flex: 0 0 auto; white-space: nowrap; }

.kh-case-entry__content > p {
    margin: 0;
    color: #303a4c;
    font-size: 14px;
    line-height: 1.72;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.kh-case-entry.is-staff .kh-case-entry__content {
    margin: 8px 0;
    padding: 17px 18px;
    border: 1px solid #e4d9e9;
    border-left: 3px solid #70258f;
    border-radius: 6px;
    background: #fcf9fd;
}

.kh-case-reply {
    display: grid;
    gap: 12px;
    padding: 21px 22px;
    border-top: 1px solid #dce2e9;
    background: #f8f9fb;
}

.kh-case-reply > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.kh-case-reply h2 { margin: 0 0 3px; font-size: 17px; }
.kh-case-reply header p { margin: 0; color: #687487; font-size: 12px; }
.kh-case-reply header > span { color: #707c8e; font-size: 11px; }
.kh-case-reply > label { color: #30384a; font-size: 12px; font-weight: 800; }
.kh-case-reply textarea { min-height: 128px; background: #fff; }

.kh-case-reply > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kh-case-reply > footer > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #697587;
    font-size: 11px;
}

.kh-case-reply > footer > span i { color: #087f72; }
.kh-case-reply > footer .kh-button { min-width: 158px; }

.kh-case-closed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-top: 1px solid #dce2e9;
    background: #f7f8fa;
}

.kh-case-closed > i { color: #70258f; }
.kh-case-closed > div { display: grid; flex: 1; gap: 2px; }
.kh-case-closed strong { font-size: 13px; }
.kh-case-closed span, .kh-case-closed a { color: #687487; font-size: 11px; }

.kh-case-sidebar,
.kh-ops-reply {
    position: sticky;
    top: 96px;
    overflow: hidden;
}

.kh-case-sidebar { border-top: 3px solid #18a7ad; }

.kh-case-sidebar > header {
    margin: 0 18px;
    padding: 17px 0;
}

.kh-case-sidebar > header > span {
    background: #e3f5f2;
    color: #087f72;
}

.kh-case-sidebar dl {
    margin: 0;
    padding: 0 18px 8px;
}

.kh-case-sidebar dl > div {
    display: grid;
    grid-template-columns: minmax(90px, .75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8ebf0;
}

.kh-case-sidebar dt { color: #727d8e; font-size: 11px; }

.kh-case-sidebar dd {
    margin: 0;
    color: #262e3e;
    font-size: 11px;
    font-weight: 800;
    text-align: right;
    overflow-wrap: anywhere;
}

.kh-case-sidebar__note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 10px 18px 18px;
    padding: 12px;
    border-left: 3px solid #70258f;
    background: #f7f4f9;
}

.kh-case-sidebar__note i { margin-top: 2px; color: #70258f; }
.kh-case-sidebar__note p { margin: 0; color: #5f6a7c; font-size: 11px; line-height: 1.55; }

.kh-ops-heading {
    padding-bottom: 21px;
    border-bottom: 1px solid #d7dee8;
}

.kh-ops-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    background: #fff;
}

.kh-ops-summary > div {
    display: grid;
    gap: 5px;
    padding: 15px 18px;
}

.kh-ops-summary > div + div { border-left: 1px solid #e3e8ef; }
.kh-ops-summary small { color: #697486; font-size: 11px; font-weight: 700; }
.kh-ops-summary strong { color: #171c2b; font-size: 20px; }

.kh-ops-filter {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(230px, .38fr) auto auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
    padding: 15px;
    border: 1px solid #d7dee8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(30, 36, 51, .04);
}

.kh-ops-filter > label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #414b5d;
    font-size: 12px;
    font-weight: 800;
}

.kh-ops-filter input,
.kh-ops-filter select {
    width: 100%;
    min-height: 45px;
    border: 1px solid #cfd7e2;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    font-size: 13px;
}

.kh-ops-filter input { padding: 10px 12px 10px 40px; }
.kh-ops-filter select { padding: 10px 12px; }

.kh-ops-filter__input { position: relative; display: block; }

.kh-ops-filter__input > i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #70258f;
    transform: translateY(-50%);
}

.kh-ops-filter .kh-button { min-height: 45px; }

.kh-ops-filter__clear {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: #70258f;
    font-size: 12px;
    font-weight: 800;
}

.kh-ops-register { overflow: hidden; }

.kh-ops-register__head,
.kh-ops-ticket > a {
    display: grid;
    grid-template-columns: minmax(330px, 1.45fr) minmax(220px, .9fr) minmax(170px, .65fr) 126px 38px;
    align-items: center;
    gap: 16px;
}

.kh-ops-register__head {
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid #dce2ea;
    background: #f5f7fa;
    color: #6b7688;
    font-size: 11px;
    font-weight: 800;
}

.kh-ops-ticket { border-bottom: 1px solid #e2e7ed; }
.kh-ops-ticket:last-child { border-bottom: 0; }

.kh-ops-ticket > a {
    min-height: 112px;
    padding: 14px 18px;
    color: inherit;
    text-decoration: none;
    transition: background-color .18s ease;
}

.kh-ops-ticket > a:hover,
.kh-ops-ticket > a:focus-visible { background: #fbfafc; }

.kh-ops-ticket__case {
    display: grid;
    grid-template-columns: 13px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.kh-ops-ticket__status-dot {
    width: 10px;
    height: 10px;
    background: #087f72;
}

.kh-ops-ticket__status-dot.is-customer-action { background: #c07a05; }
.kh-ops-ticket__status-dot.is-progress { background: #356aa0; }
.kh-ops-ticket__status-dot.is-complete { background: #778092; }

.kh-ops-ticket__case > span:last-child,
.kh-ops-ticket__customer,
.kh-ops-ticket__routing,
.kh-ops-ticket__time {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.kh-ops-ticket__case .kh-status { width: max-content; max-width: 100%; }

.kh-ops-ticket__case strong {
    color: #171c2b;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.kh-ops-ticket small,
.kh-ops-ticket__time small { color: #707b8c; font-size: 11px; overflow-wrap: anywhere; }
.kh-ops-ticket__customer strong, .kh-ops-ticket__routing strong, .kh-ops-ticket__time strong { color: #343d4f; font-size: 12px; overflow-wrap: anywhere; }
.kh-ops-ticket__routing small.is-high { color: #a45d00; font-weight: 800; }
.kh-ops-ticket__routing small.is-urgent { color: #b42318; font-weight: 900; }

.kh-ops-ticket__open {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7dee8;
    border-radius: 6px;
    color: #70258f;
}

.kh-ops-ticket > a:hover .kh-ops-ticket__open { border-color: #70258f; background: #70258f; color: #fff; }

.kh-ops-case-tools {
    display: grid;
    min-width: 0;
    gap: 16px;
}

.kh-ops-reply {
    z-index: 2;
    display: grid;
    gap: 15px;
    padding: 20px;
    border-top: 3px solid #70258f;
}

.kh-ops-reply > header { padding-bottom: 14px; }

.kh-ops-reply > label > span:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.kh-ops-reply > label b { color: #707b8c; font-size: 10px; }
.kh-ops-reply textarea { min-height: 168px; }
.kh-case-sidebar--admin { position: static; }

@media (max-width: 1199.98px) {
    .kh-support-desk-grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .72fr); }
    .kh-ops-register__head,
    .kh-ops-ticket > a { grid-template-columns: minmax(290px, 1.3fr) minmax(190px, .8fr) minmax(150px, .6fr) 110px 34px; gap: 12px; }
    .kh-ops-case-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, 360px); }
}

@media (max-width: 991.98px) {
    .kh-support-desk-page > .container,
    .kh-ops-support-page > .container { width: 100%; }
    .kh-support-desk-grid,
    .kh-case-layout,
    .kh-ops-case-layout { grid-template-columns: minmax(0, 1fr); }
    .kh-request-panel,
    .kh-case-sidebar,
    .kh-ops-reply { position: static; }
    .kh-ops-register__head { display: none; }
    .kh-ops-ticket > a {
        grid-template-columns: minmax(0, 1.4fr) minmax(190px, .8fr) 34px;
        gap: 14px;
    }
    .kh-ops-ticket__routing { grid-column: 1; padding-left: 25px; }
    .kh-ops-ticket__time { grid-column: 2; grid-row: 2; }
    .kh-ops-ticket__open { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 767.98px) {
    .kh-support-desk-page,
    .kh-ops-support-page { padding-top: 22px; }
    .kh-desk-heading,
    .kh-ops-heading,
    .kh-case-heading { display: grid; align-items: start; gap: 16px; }
    .kh-desk-heading h1,
    .kh-ops-heading h1 { font-size: 28px; }
    .kh-case-heading h1 { font-size: 23px; }
    .kh-desk-heading .kh-button,
    .kh-ops-heading .kh-button,
    .kh-case-heading .kh-button { width: 100%; }
    .kh-desk-summary { grid-template-columns: minmax(0, 1fr); }
    .kh-desk-summary > div { min-height: 72px; padding: 13px 16px; }
    .kh-desk-summary > div + div { border-top: 1px solid #e3e8ef; border-left: 0; }
    .kh-register-ticket > a { grid-template-columns: 38px minmax(0, 1fr) 32px; min-height: 0; padding: 0 13px; }
    .kh-register-ticket__marker { width: 28px; height: 28px; }
    .kh-register-ticket__body { padding: 15px 8px 15px 0; }
    .kh-register-ticket__top { align-items: flex-start; }
    .kh-register-ticket__top .kh-status { max-width: 58%; white-space: normal; text-align: right; }
    .kh-register-ticket__subject { font-size: 15px; }
    .kh-register-ticket__preview { font-size: 12px; white-space: normal; }
    .kh-register-ticket__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 10px; }
    .kh-register-ticket__meta time { grid-column: 1 / -1; }
    .kh-request-form__grid { grid-template-columns: minmax(0, 1fr); }
    .kh-case-heading { padding: 18px; }
    .kh-case-timeline { padding: 4px 15px 8px; }
    .kh-case-entry { grid-template-columns: 38px minmax(0, 1fr); }
    .kh-case-entry__rail::after { left: 14px; }
    .kh-case-entry__rail > span { width: 29px; height: 29px; }
    .kh-case-entry__content > header { display: grid; gap: 6px; }
    .kh-case-entry__content time { white-space: normal; }
    .kh-case-entry.is-staff .kh-case-entry__content { padding: 14px; }
    .kh-case-entry__content > p { font-size: 13px; line-height: 1.65; }
    .kh-case-reply > footer { align-items: stretch; flex-direction: column; }
    .kh-case-reply > footer .kh-button { width: 100%; }
    .kh-ops-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kh-ops-summary > div:nth-child(3) { border-left: 0; }
    .kh-ops-summary > div:nth-child(n+3) { border-top: 1px solid #e3e8ef; }
    .kh-ops-filter { grid-template-columns: minmax(0, 1fr); }
    .kh-ops-filter__clear { min-height: 34px; }
    .kh-ops-ticket > a { grid-template-columns: minmax(0, 1fr) 32px; padding: 15px; }
    .kh-ops-ticket__customer,
    .kh-ops-ticket__routing,
    .kh-ops-ticket__time { grid-column: 1; padding-left: 25px; }
    .kh-ops-ticket__customer { grid-row: 2; }
    .kh-ops-ticket__routing { grid-row: 3; }
    .kh-ops-ticket__time { grid-row: 4; }
    .kh-ops-ticket__open { grid-column: 2; grid-row: 1 / span 4; }
}

@media (max-width: 479.98px) {
    .kh-register-heading,
    .kh-case-record__header { padding: 14px; }
    .kh-register-heading__icon,
    .kh-case-record__header > div > span { width: 35px; height: 35px; flex-basis: 35px; }
    .kh-register-heading p,
    .kh-case-record__header p { display: none; }
    .kh-register-heading > strong,
    .kh-case-record__header > strong { font-size: 11px; }
    .kh-request-form,
    .kh-ops-reply { padding: 17px; }
    .kh-case-sidebar dl > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
    .kh-case-sidebar dd { text-align: left; }
    .kh-case-entry.is-staff .kh-case-entry__content { margin-right: 0; }
    .kh-ops-summary small { font-size: 10px; }
    .kh-ops-summary strong { font-size: 18px; }
    .kh-ops-ticket__case .kh-status { white-space: normal; }
}

/* Destek merkezi V4: müşteri ve yönetici için birleşik bilet çalışma alanı. */
.kh-helpdesk-page {
    color: #171c2b;
    background: #f3f5f8;
}

.kh-helpdesk-page > .container {
    width: calc(100% - 40px);
    max-width: 1660px;
}

.kh-helpdesk-page .kh-panel-content {
    min-width: 0;
}

.kh-helpdesk-home__header,
.kh-helpdesk-admin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.kh-helpdesk-home__header h1,
.kh-helpdesk-admin-header h1 {
    margin: 5px 0 8px;
    color: #171c2b;
    font-size: 34px;
    line-height: 1.16;
}

.kh-helpdesk-home__header p,
.kh-helpdesk-admin-header p {
    max-width: 760px;
    margin: 0;
    color: #606b7e;
    font-size: 14px;
    line-height: 1.65;
}

.kh-helpdesk-stats,
.kh-helpdesk-admin-metrics {
    display: grid;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(27, 34, 48, .045);
}

.kh-helpdesk-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kh-helpdesk-stats > div,
.kh-helpdesk-admin-metrics > article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
}

.kh-helpdesk-stats > div + div,
.kh-helpdesk-admin-metrics > article + article {
    border-left: 1px solid #e3e7ed;
}

.kh-helpdesk-stats > div > span,
.kh-helpdesk-admin-metrics article > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 16px;
}

.kh-helpdesk-stats .is-purple,
.kh-helpdesk-admin-metrics .is-purple { background: #efe7f3; color: #70258f; }
.kh-helpdesk-stats .is-teal,
.kh-helpdesk-admin-metrics .is-teal { background: #e3f4f1; color: #087f72; }
.kh-helpdesk-stats .is-amber,
.kh-helpdesk-admin-metrics .is-amber { background: #fff2dc; color: #9a6100; }
.kh-helpdesk-admin-metrics .is-red { background: #fdebea; color: #b42318; }

.kh-helpdesk-stats > div > div,
.kh-helpdesk-admin-metrics article > div {
    display: grid;
    gap: 3px;
}

.kh-helpdesk-stats strong,
.kh-helpdesk-admin-metrics strong {
    color: #171c2b;
    font-size: 21px;
    line-height: 1.1;
}

.kh-helpdesk-stats small,
.kh-helpdesk-admin-metrics small {
    color: #687487;
    font-size: 12px;
    font-weight: 700;
}

.kh-helpdesk-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr);
    align-items: start;
    gap: 22px;
}

.kh-helpdesk-ticket-panel,
.kh-helpdesk-new-ticket,
.kh-helpdesk-queue {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(27, 34, 48, .05);
}

.kh-helpdesk-panel-title,
.kh-helpdesk-queue__header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border-bottom: 1px solid #e1e6ed;
}

.kh-helpdesk-panel-title h2,
.kh-helpdesk-queue__header h2,
.kh-helpdesk-new-ticket h2 {
    margin: 0 0 4px;
    color: #171c2b;
    font-size: 18px;
}

.kh-helpdesk-panel-title p,
.kh-helpdesk-queue__header p,
.kh-helpdesk-new-ticket header p {
    margin: 0;
    color: #6a7587;
    font-size: 12px;
}

.kh-helpdesk-panel-title > span,
.kh-helpdesk-queue__header > span {
    flex: 0 0 auto;
    color: #687487;
    font-size: 12px;
    font-weight: 800;
}

.kh-helpdesk-ticket-list {
    display: grid;
}

.kh-helpdesk-ticket-item {
    border-bottom: 1px solid #e5e9ef;
}

.kh-helpdesk-ticket-item:last-child {
    border-bottom: 0;
}

.kh-helpdesk-ticket-item > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 14px;
    min-height: 132px;
    padding: 18px 20px;
    color: inherit;
    text-decoration: none;
    transition: background-color .18s ease;
}

.kh-helpdesk-ticket-item > a:hover,
.kh-helpdesk-ticket-item > a:focus-visible {
    background: #faf8fb;
}

.kh-helpdesk-ticket-item__icon,
.kh-helpdesk-new-ticket > form > header > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #efe7f3;
    color: #70258f;
}

.kh-helpdesk-ticket-item.is-customer-action .kh-helpdesk-ticket-item__icon { background: #fff2dc; color: #9a6100; }
.kh-helpdesk-ticket-item.is-complete .kh-helpdesk-ticket-item__icon { background: #edf0f4; color: #626d7e; }
.kh-helpdesk-ticket-item.is-progress .kh-helpdesk-ticket-item__icon { background: #e8f1fa; color: #356aa0; }

.kh-helpdesk-ticket-item__content {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.kh-helpdesk-ticket-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kh-helpdesk-ticket-item__top > b {
    color: #70258f;
    font-size: 11px;
}

.kh-helpdesk-ticket-item__content > strong {
    color: #171c2b;
    font-size: 16px;
    line-height: 1.35;
}

.kh-helpdesk-ticket-item__message {
    overflow: hidden;
    color: #606b7d;
    font-size: 12px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-helpdesk-ticket-item__message b { color: #30394a; }

.kh-helpdesk-ticket-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    color: #737e8f;
    font-size: 11px;
}

.kh-helpdesk-ticket-item__meta > * + *::before {
    margin-right: 14px;
    color: #c1c7d0;
    content: "•";
}

.kh-helpdesk-ticket-item__arrow,
.kh-helpdesk-queue-item__open {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5dce6;
    border-radius: 6px;
    color: #70258f;
}

.kh-helpdesk-ticket-item > a:hover .kh-helpdesk-ticket-item__arrow,
.kh-helpdesk-queue-item > a:hover .kh-helpdesk-queue-item__open {
    border-color: #70258f;
    background: #70258f;
    color: #fff;
}

.kh-helpdesk-new-ticket {
    position: sticky;
    top: 94px;
    border-top: 3px solid #70258f;
}

.kh-helpdesk-new-ticket > form {
    display: grid;
    gap: 15px;
    padding: 20px;
}

.kh-helpdesk-new-ticket > form > header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e8ee;
}

.kh-helpdesk-new-ticket label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: #343d4e;
    font-size: 12px;
    font-weight: 800;
}

.kh-helpdesk-new-ticket input,
.kh-helpdesk-new-ticket select,
.kh-helpdesk-new-ticket textarea {
    width: 100%;
    border: 1px solid #cfd7e2;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    font-size: 13px;
}

.kh-helpdesk-new-ticket input,
.kh-helpdesk-new-ticket select { min-height: 45px; padding: 10px 12px; }
.kh-helpdesk-new-ticket textarea { min-height: 132px; padding: 12px; resize: vertical; }

.kh-helpdesk-new-ticket input:focus,
.kh-helpdesk-new-ticket select:focus,
.kh-helpdesk-new-ticket textarea:focus,
.kh-helpdesk-composer textarea:focus,
.kh-helpdesk-status-select select:focus {
    outline: 0;
    border-color: #70258f;
    box-shadow: 0 0 0 3px rgba(112, 37, 143, .11);
}

.kh-helpdesk-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, .5fr);
    gap: 12px;
}

.kh-helpdesk-security {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 12px;
    border-left: 3px solid #087f72;
    background: #f1f8f7;
    color: #566274;
    font-size: 11px;
    line-height: 1.5;
}

.kh-helpdesk-security i { margin-top: 2px; color: #087f72; }
.kh-helpdesk-new-ticket .kh-button { width: 100%; min-height: 48px; }

.kh-helpdesk-empty {
    display: grid;
    min-height: 300px;
    place-items: center;
    align-content: center;
    gap: 9px;
    padding: 40px 24px;
    text-align: center;
}

.kh-helpdesk-empty > span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #efe7f3;
    color: #70258f;
    font-size: 20px;
}

.kh-helpdesk-empty h3 { margin: 4px 0 0; font-size: 18px; }
.kh-helpdesk-empty p { max-width: 430px; margin: 0; color: #687487; font-size: 13px; line-height: 1.55; }
.kh-helpdesk-empty a { color: #70258f; font-size: 12px; font-weight: 800; }

.kh-helpdesk-detail {
    min-width: 0;
}

.kh-helpdesk-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #7a8494;
    font-size: 12px;
}

.kh-helpdesk-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #70258f;
    font-weight: 800;
    text-decoration: none;
}

.kh-helpdesk-breadcrumb strong { color: #4e5869; font-size: 11px; }

.kh-helpdesk-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 246px;
    height: clamp(680px, calc(100vh - 170px), 820px);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d4dce6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(24, 31, 46, .08);
}

.kh-helpdesk-inbox {
    display: grid;
    min-width: 0;
    grid-template-rows: auto minmax(0, 1fr);
    border-right: 1px solid #dfe4eb;
    background: #f7f8fa;
}

.kh-helpdesk-inbox__header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #dfe4eb;
    background: #fff;
}

.kh-helpdesk-inbox__header > div { display: grid; gap: 3px; }
.kh-helpdesk-inbox__header span { color: #171c2b; font-size: 15px; font-weight: 900; }
.kh-helpdesk-inbox__header strong { color: #737e8f; font-size: 11px; }

.kh-helpdesk-inbox__header > a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #70258f;
    color: #fff;
    text-decoration: none;
}

.kh-helpdesk-inbox__list {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.kh-helpdesk-inbox__item {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    min-height: 82px;
    padding: 14px 15px;
    border-bottom: 1px solid #e3e7ed;
    color: inherit;
    text-decoration: none;
}

.kh-helpdesk-inbox__item:hover,
.kh-helpdesk-inbox__item:focus-visible { background: #f1edf4; }
.kh-helpdesk-inbox__item.is-active { background: #eee6f2; box-shadow: inset 3px 0 #70258f; }

.kh-helpdesk-inbox__status,
.kh-helpdesk-queue-item__dot {
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: #087f72;
}

.kh-helpdesk-inbox__status.is-customer-action,
.kh-helpdesk-queue-item__dot.is-customer-action { background: #c07900; }
.kh-helpdesk-inbox__status.is-progress,
.kh-helpdesk-queue-item__dot.is-progress { background: #356aa0; }
.kh-helpdesk-inbox__status.is-complete,
.kh-helpdesk-queue-item__dot.is-complete { background: #7c8593; }

.kh-helpdesk-inbox__body {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.kh-helpdesk-inbox__body > span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px;
}

.kh-helpdesk-inbox__body b {
    overflow: hidden;
    color: #252d3c;
    font-size: 12px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-helpdesk-inbox__body time { color: #7b8595; font-size: 10px; white-space: nowrap; }
.kh-helpdesk-inbox__body small { overflow: hidden; color: #697487; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.kh-helpdesk-thread {
    display: grid;
    min-width: 0;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: #fff;
}

.kh-helpdesk-thread__header {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
    border-bottom: 1px solid #dfe4eb;
    background: #fff;
}

.kh-helpdesk-thread__identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.kh-helpdesk-thread__avatar,
.kh-helpdesk-message__avatar {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #70258f;
    color: #fff;
}

.kh-helpdesk-thread__avatar { width: 42px; height: 42px; font-size: 16px; }
.kh-helpdesk-thread__avatar.is-customer,
.kh-helpdesk-message__avatar.is-customer { background: #e4f4f1; color: #087f72; }
.kh-helpdesk-thread__identity > div { min-width: 0; }
.kh-helpdesk-thread__eyebrow { display: block; margin-bottom: 2px; color: #70258f; font-size: 10px; font-weight: 900; text-transform: uppercase; }

.kh-helpdesk-thread__identity h1 {
    overflow: hidden;
    margin: 0;
    color: #171c2b;
    font-size: 17px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-helpdesk-thread__identity p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0 0;
    color: #747e8e;
    font-size: 10px;
}

.kh-helpdesk-online {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14a075;
}

.kh-helpdesk-mobile-summary { display: none; }

.kh-helpdesk-messages {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
    padding: 22px 24px;
    background: #f4f6f9;
    overscroll-behavior: contain;
    scrollbar-color: #c6cdd8 transparent;
}

.kh-helpdesk-day {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a8493;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-helpdesk-day::before,
.kh-helpdesk-day::after { height: 1px; flex: 1; background: #d9dfe7; content: ""; }

.kh-helpdesk-message {
    display: flex;
    max-width: 84%;
    align-items: flex-start;
    gap: 9px;
}

.kh-helpdesk-message.is-inbound { align-self: flex-start; }
.kh-helpdesk-message.is-outbound { align-self: flex-end; justify-content: flex-end; }
.kh-helpdesk-message__avatar { width: 32px; height: 32px; margin-top: 22px; font-size: 12px; }

.kh-helpdesk-message__group {
    display: grid;
    min-width: 0;
    gap: 5px;
}

.kh-helpdesk-message.is-outbound .kh-helpdesk-message__group { justify-items: end; }

.kh-helpdesk-message__group > header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px;
}

.kh-helpdesk-message__group > header strong { color: #3b4556; font-size: 11px; }
.kh-helpdesk-message__group > header time { color: #7a8494; font-size: 10px; white-space: nowrap; }

.kh-helpdesk-message__bubble {
    min-width: 120px;
    padding: 13px 15px;
    border: 1px solid #d8dee7;
    border-radius: 7px 7px 7px 2px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(28, 35, 49, .04);
}

.kh-helpdesk-message.is-outbound .kh-helpdesk-message__bubble {
    border-color: #5f1e7a;
    border-radius: 7px 7px 2px 7px;
    background: #63207f;
    color: #fff;
    box-shadow: 0 5px 15px rgba(77, 26, 100, .14);
}

.kh-helpdesk-message__bubble p {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.kh-helpdesk-message__group > small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 4px;
    color: #778192;
    font-size: 9px;
}

.kh-helpdesk-message__group > small i { color: #087f72; }

.kh-helpdesk-composer {
    position: relative;
    display: grid;
    gap: 7px;
    padding: 13px 16px 15px;
    border-top: 1px solid #dce2e9;
    background: #fff;
}

.kh-helpdesk-composer > label {
    color: #343d4d;
    font-size: 11px;
    font-weight: 900;
}

.kh-helpdesk-composer__box {
    overflow: hidden;
    border: 1px solid #cfd7e2;
    border-radius: 7px;
    background: #fff;
}

.kh-helpdesk-composer textarea {
    display: block;
    width: 100%;
    min-height: 72px;
    max-height: 170px;
    padding: 11px 12px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #171c2b;
    font-size: 13px;
    line-height: 1.55;
    resize: vertical;
}

.kh-helpdesk-composer textarea:focus { box-shadow: none; }

.kh-helpdesk-composer__box:focus-within {
    border-color: #70258f;
    box-shadow: 0 0 0 3px rgba(112, 37, 143, .1);
}

.kh-helpdesk-composer__box > footer {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 12px;
    padding: 7px 8px 7px 12px;
    border-top: 1px solid #e6e9ee;
    background: #fafbfc;
}

.kh-helpdesk-composer__box > footer > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: auto;
    color: #717c8d;
    font-size: 10px;
}

.kh-helpdesk-composer__box > footer > span:first-child i { color: #087f72; }
.kh-helpdesk-composer__count { color: #737e8e; font-size: 10px; white-space: nowrap; }
.kh-helpdesk-composer__count b { color: #4a5465; }
.kh-helpdesk-composer .kh-button { min-height: 36px; padding: 8px 14px; font-size: 11px; }

.kh-helpdesk-thread__closed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid #dce2e9;
    background: #f8f9fb;
}

.kh-helpdesk-thread__closed > i { color: #70258f; }
.kh-helpdesk-thread__closed > div { display: grid; flex: 1; gap: 2px; }
.kh-helpdesk-thread__closed strong { font-size: 12px; }
.kh-helpdesk-thread__closed span, .kh-helpdesk-thread__closed a { color: #687487; font-size: 10px; }
.kh-helpdesk-thread__closed a { color: #70258f; font-weight: 900; }

.kh-helpdesk-case-info {
    min-width: 0;
    overflow-y: auto;
    border-left: 1px solid #dfe4eb;
    background: #fbfcfd;
}

.kh-helpdesk-case-info > header {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-bottom: 1px solid #dfe4eb;
    background: #fff;
}

.kh-helpdesk-case-info > header > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e4f4f1;
    color: #087f72;
}

.kh-helpdesk-case-info h2 { margin: 0 0 2px; font-size: 14px; }
.kh-helpdesk-case-info header p { margin: 0; color: #758091; font-size: 10px; }

.kh-helpdesk-case-info dl { margin: 0; padding: 8px 15px; }
.kh-helpdesk-case-info dl > div { display: grid; gap: 5px; padding: 11px 0; border-bottom: 1px solid #e5e9ef; }
.kh-helpdesk-case-info dt { color: #747f90; font-size: 10px; }
.kh-helpdesk-case-info dd { margin: 0; color: #293243; font-size: 11px; font-weight: 800; overflow-wrap: anywhere; }
.kh-helpdesk-case-info .kh-status { width: max-content; max-width: 100%; white-space: normal; }

.kh-helpdesk-case-info__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 15px 15px;
    padding: 11px;
    border-left: 3px solid #70258f;
    background: #f4eff6;
}

.kh-helpdesk-case-info__note i { margin-top: 2px; color: #70258f; }
.kh-helpdesk-case-info__note p { margin: 0; color: #5f6a7b; font-size: 10px; line-height: 1.55; }

.kh-helpdesk-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px 18px;
    color: #70258f;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.kh-helpdesk-shell--admin {
    grid-template-columns: minmax(0, 1fr) 290px;
    max-width: 1440px;
    margin: 0 auto;
}

.kh-helpdesk-thread__header--admin { min-height: 84px; }
.kh-helpdesk-composer--admin textarea { min-height: 92px; }

.kh-helpdesk-status-select {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    color: #5e697b;
    font-size: 10px;
    font-weight: 800;
}

.kh-helpdesk-status-select select {
    min-height: 34px;
    max-width: 230px;
    padding: 6px 28px 6px 9px;
    border: 1px solid #d1d8e2;
    border-radius: 6px;
    background: #fff;
    color: #30394a;
    font-size: 10px;
}

.kh-helpdesk-admin-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kh-helpdesk-queue {
    box-shadow: 0 12px 32px rgba(27, 34, 48, .055);
}

.kh-helpdesk-queue__filters {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 230px auto auto;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #e1e6ed;
    background: #f8f9fb;
}

.kh-helpdesk-queue__filters label { margin: 0; }
.kh-helpdesk-queue__filters input,
.kh-helpdesk-queue__filters select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cfd7e2;
    border-radius: 6px;
    background: #fff;
    color: #171c2b;
    font-size: 12px;
}

.kh-helpdesk-search { position: relative; display: block; }
.kh-helpdesk-search i { position: absolute; top: 50%; left: 13px; color: #70258f; transform: translateY(-50%); }
.kh-helpdesk-search input { padding: 9px 12px 9px 38px; }
.kh-helpdesk-queue__filters select { padding: 9px 11px; }
.kh-helpdesk-queue__filters .kh-button { min-height: 42px; }

.kh-helpdesk-filter-clear {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2d9e3;
    border-radius: 6px;
    background: #fff;
    color: #70258f;
    text-decoration: none;
}

.kh-helpdesk-queue__columns,
.kh-helpdesk-queue-item > a {
    display: grid;
    grid-template-columns: minmax(330px, 1.5fr) minmax(210px, .85fr) minmax(165px, .65fr) 120px 36px;
    align-items: center;
    gap: 16px;
}

.kh-helpdesk-queue__columns {
    min-height: 42px;
    padding: 0 18px;
    border-bottom: 1px solid #dfe4eb;
    color: #737e8f;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.kh-helpdesk-queue-item { border-bottom: 1px solid #e3e7ed; }
.kh-helpdesk-queue-item:last-child { border-bottom: 0; }

.kh-helpdesk-queue-item > a {
    min-height: 108px;
    padding: 14px 18px;
    color: inherit;
    text-decoration: none;
    transition: background-color .18s ease;
}

.kh-helpdesk-queue-item > a:hover,
.kh-helpdesk-queue-item > a:focus-visible { background: #faf8fb; }

.kh-helpdesk-queue-item__case {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
}

.kh-helpdesk-queue-item__case > span:last-child,
.kh-helpdesk-queue-item__customer,
.kh-helpdesk-queue-item__route,
.kh-helpdesk-queue-item__time {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.kh-helpdesk-queue-item__case .kh-status { width: max-content; max-width: 100%; }
.kh-helpdesk-queue-item__case strong { color: #171c2b; font-size: 14px; line-height: 1.35; overflow-wrap: anywhere; }
.kh-helpdesk-queue-item__case small,
.kh-helpdesk-queue-item__customer small,
.kh-helpdesk-queue-item__route small,
.kh-helpdesk-queue-item__time small { color: #707b8c; font-size: 10px; overflow-wrap: anywhere; }
.kh-helpdesk-queue-item__customer strong,
.kh-helpdesk-queue-item__route strong,
.kh-helpdesk-queue-item__time strong { color: #343d4f; font-size: 12px; overflow-wrap: anywhere; }
.kh-helpdesk-queue-item__route .is-high { color: #a45d00; font-weight: 900; }
.kh-helpdesk-queue-item__route .is-urgent { color: #b42318; font-weight: 900; }

@media (max-width: 1279.98px) {
    .kh-helpdesk-shell { grid-template-columns: 240px minmax(0, 1fr); }
    .kh-helpdesk-case-info { display: none; }
    .kh-helpdesk-shell--admin { grid-template-columns: minmax(0, 1fr) 270px; }
    .kh-helpdesk-shell--admin .kh-helpdesk-case-info { display: block; }
    .kh-helpdesk-queue__columns,
    .kh-helpdesk-queue-item > a { grid-template-columns: minmax(300px, 1.4fr) minmax(180px, .8fr) minmax(145px, .6fr) 110px 34px; gap: 12px; }
}

@media (max-width: 991.98px) {
    .kh-helpdesk-page > .container { width: 100%; }
    .kh-helpdesk-home__grid { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-new-ticket { position: static; }
    .kh-helpdesk-shell { grid-template-columns: 228px minmax(0, 1fr); }
    .kh-helpdesk-shell--admin { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-shell--admin .kh-helpdesk-case-info { display: none; }
    .kh-helpdesk-thread { grid-template-rows: auto auto minmax(0, 1fr) auto; }
    .kh-helpdesk-mobile-summary { display: block; border-bottom: 1px solid #dfe4eb; background: #fafbfc; }
    .kh-helpdesk-mobile-summary summary { padding: 10px 16px; color: #70258f; font-size: 11px; font-weight: 900; cursor: pointer; }
    .kh-helpdesk-mobile-summary summary i { margin-right: 6px; }
    .kh-helpdesk-mobile-summary dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 0; padding: 0 16px 12px; }
    .kh-helpdesk-mobile-summary dl > div { display: grid; gap: 3px; }
    .kh-helpdesk-mobile-summary dt { color: #778192; font-size: 9px; }
    .kh-helpdesk-mobile-summary dd { margin: 0; color: #30394a; font-size: 10px; font-weight: 800; overflow-wrap: anywhere; }
    .kh-helpdesk-queue__columns { display: none; }
    .kh-helpdesk-queue-item > a { grid-template-columns: minmax(0, 1.35fr) minmax(180px, .8fr) 34px; }
    .kh-helpdesk-queue-item__route { grid-column: 1; padding-left: 19px; }
    .kh-helpdesk-queue-item__time { grid-column: 2; grid-row: 2; }
    .kh-helpdesk-queue-item__open { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 767.98px) {
    .kh-helpdesk-page { padding-top: 18px; }
    .kh-helpdesk-page > .container { padding-right: 14px; padding-left: 14px; }
    .kh-helpdesk-home__header,
    .kh-helpdesk-admin-header { display: grid; align-items: start; gap: 15px; }
    .kh-helpdesk-home__header h1,
    .kh-helpdesk-admin-header h1 { font-size: 28px; }
    .kh-helpdesk-home__header .kh-button,
    .kh-helpdesk-admin-header .kh-button { width: 100%; }
    .kh-helpdesk-stats { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-stats > div { min-height: 70px; padding: 13px 15px; }
    .kh-helpdesk-stats > div + div { border-top: 1px solid #e3e7ed; border-left: 0; }
    .kh-helpdesk-ticket-item > a { grid-template-columns: 38px minmax(0, 1fr) 32px; gap: 11px; min-height: 0; padding: 15px; }
    .kh-helpdesk-ticket-item__icon { width: 38px; height: 38px; flex-basis: 38px; }
    .kh-helpdesk-ticket-item__top { align-items: flex-start; }
    .kh-helpdesk-ticket-item__top .kh-status { max-width: 60%; white-space: normal; text-align: right; }
    .kh-helpdesk-ticket-item__message { white-space: normal; }
    .kh-helpdesk-ticket-item__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 10px; }
    .kh-helpdesk-ticket-item__meta > * + *::before { display: none; }
    .kh-helpdesk-ticket-item__meta time { grid-column: 1 / -1; }
    .kh-helpdesk-form-row { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-breadcrumb { margin-bottom: 10px; }
    .kh-helpdesk-breadcrumb span,
    .kh-helpdesk-breadcrumb strong { display: none; }
    .kh-helpdesk-shell,
    .kh-helpdesk-shell--admin { display: block; height: auto; min-height: 0; }
    .kh-helpdesk-inbox { display: none; }
    .kh-helpdesk-thread { display: grid; min-height: 680px; grid-template-rows: auto auto minmax(390px, 1fr) auto; }
    .kh-helpdesk-thread__header { min-height: 74px; padding: 11px 13px; }
    .kh-helpdesk-thread__avatar { width: 38px; height: 38px; }
    .kh-helpdesk-thread__identity { gap: 10px; }
    .kh-helpdesk-thread__eyebrow { font-size: 9px; }
    .kh-helpdesk-thread__identity h1 { max-width: 58vw; font-size: 15px; }
    .kh-helpdesk-thread__identity p { font-size: 9px; }
    .kh-helpdesk-thread__header > .kh-status { max-width: 105px; padding: 6px 7px; white-space: normal; text-align: center; }
    .kh-helpdesk-messages { min-height: 390px; padding: 18px 13px; }
    .kh-helpdesk-message { max-width: 92%; gap: 7px; }
    .kh-helpdesk-message__avatar { width: 29px; height: 29px; margin-top: 20px; font-size: 10px; }
    .kh-helpdesk-message__group > header { gap: 7px; }
    .kh-helpdesk-message__group > header strong { font-size: 10px; }
    .kh-helpdesk-message__group > header time { font-size: 9px; }
    .kh-helpdesk-message__bubble { min-width: 80px; padding: 11px 12px; }
    .kh-helpdesk-message__bubble p { font-size: 13px; line-height: 1.6; }
    .kh-helpdesk-composer { position: sticky; z-index: 3; bottom: 0; padding: 11px; }
    .kh-helpdesk-composer__box > footer { flex-wrap: wrap; }
    .kh-helpdesk-composer__box > footer > span:first-child { display: none; }
    .kh-helpdesk-composer__count { margin-right: auto; }
    .kh-helpdesk-composer .kh-button { min-width: 110px; }
    .kh-helpdesk-composer--admin .kh-helpdesk-composer__box > footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
    .kh-helpdesk-status-select { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr); margin: 0; }
    .kh-helpdesk-status-select select { max-width: none; }
    .kh-helpdesk-admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kh-helpdesk-admin-metrics > article:nth-child(3) { border-left: 0; }
    .kh-helpdesk-admin-metrics > article:nth-child(n+3) { border-top: 1px solid #e3e7ed; }
    .kh-helpdesk-queue__filters { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-filter-clear { width: 100%; }
    .kh-helpdesk-queue-item > a { grid-template-columns: minmax(0, 1fr) 32px; padding: 14px; }
    .kh-helpdesk-queue-item__customer,
    .kh-helpdesk-queue-item__route,
    .kh-helpdesk-queue-item__time { grid-column: 1; padding-left: 19px; }
    .kh-helpdesk-queue-item__customer { grid-row: 2; }
    .kh-helpdesk-queue-item__route { grid-row: 3; }
    .kh-helpdesk-queue-item__time { grid-row: 4; }
    .kh-helpdesk-queue-item__open { grid-column: 2; grid-row: 1 / span 4; }
}

@media (max-width: 479.98px) {
    .kh-helpdesk-page > .container { padding-right: 10px; padding-left: 10px; }
    .kh-helpdesk-panel-title,
    .kh-helpdesk-queue__header { min-height: 68px; padding: 14px; }
    .kh-helpdesk-new-ticket > form { padding: 16px; }
    .kh-helpdesk-ticket-item > a { grid-template-columns: 34px minmax(0, 1fr) 28px; padding: 14px 11px; }
    .kh-helpdesk-ticket-item__icon { width: 34px; height: 34px; flex-basis: 34px; }
    .kh-helpdesk-ticket-item__arrow { width: 28px; height: 28px; }
    .kh-helpdesk-thread__identity h1 { max-width: 48vw; }
    .kh-helpdesk-thread__header > .kh-status { max-width: 90px; font-size: 9px; }
    .kh-helpdesk-mobile-summary dl { grid-template-columns: minmax(0, 1fr); }
    .kh-helpdesk-admin-metrics article { padding: 13px 11px; }
    .kh-helpdesk-admin-metrics article > span { width: 36px; height: 36px; flex-basis: 36px; }
    .kh-helpdesk-admin-metrics small { font-size: 10px; }
    .kh-helpdesk-admin-metrics strong { font-size: 18px; }
    .kh-helpdesk-queue-item__case .kh-status { white-space: normal; }
}

/* Destek kayıtları V5: mevcut müşteri panelini değiştirmeden liste ve kayıt ayrıntılarını düzenler. */
.kh-support-records-page,
.kh-support-detail-page {
    --kh-support-ink: #172033;
    --kh-support-muted: #687386;
    --kh-support-line: #dfe4ec;
    --kh-support-surface: #ffffff;
    --kh-support-soft: #f5f7fa;
    --kh-support-purple: #6f278b;
    --kh-support-purple-dark: #512063;
    --kh-support-teal: #087f78;
    --kh-support-amber: #a85b00;
}

.kh-support-records-page .kh-panel-content,
.kh-support-detail-page .kh-panel-content,
.kh-helpdesk-admin-page .kh-panel-content {
    min-width: 0;
}

.kh-support-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 0 22px;
    border-bottom: 1px solid var(--kh-support-line);
}

.kh-support-page-header h1,
.kh-ticket-detail-header h1 {
    margin: 6px 0 7px;
    color: var(--kh-support-ink);
    font-size: 30px;
    line-height: 1.18;
}

.kh-support-page-header p,
.kh-ticket-detail-header p {
    max-width: 680px;
    margin: 0;
    color: var(--kh-support-muted);
    font-size: 14px;
    line-height: 1.65;
}

.kh-support-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid var(--kh-support-line);
    border-radius: 7px;
    background: var(--kh-support-surface);
}

.kh-support-summary article {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    min-height: 86px;
    padding: 17px 20px;
    border-right: 1px solid var(--kh-support-line);
}

.kh-support-summary article:last-child { border-right: 0; }

.kh-support-summary article > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 6px;
    background: #f4edf7;
    color: var(--kh-support-purple);
}

.kh-support-summary article > span.is-teal { background: #e7f7f4; color: var(--kh-support-teal); }
.kh-support-summary article > span.is-amber { background: #fff3df; color: var(--kh-support-amber); }
.kh-support-summary article div { display: grid; min-width: 0; gap: 2px; }
.kh-support-summary small { color: var(--kh-support-muted); font-size: 11px; font-weight: 700; }
.kh-support-summary strong { color: var(--kh-support-ink); font-size: 23px; line-height: 1; }

.kh-support-registry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 218px;
    align-items: start;
    gap: 18px;
}

.kh-support-registry__main,
.kh-support-registry__filters,
.kh-support-create,
.kh-ticket-reply-panel,
.kh-ticket-history,
.kh-ticket-case-card {
    border: 1px solid var(--kh-support-line);
    border-radius: 7px;
    background: var(--kh-support-surface);
    box-shadow: 0 8px 24px rgba(24, 33, 51, .05);
}

.kh-support-registry__main { min-width: 0; overflow: hidden; }

.kh-support-registry__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 14px 17px;
    border-bottom: 1px solid var(--kh-support-line);
    background: #fafbfc;
}

.kh-support-registry__toolbar > div { display: grid; gap: 2px; }
.kh-support-registry__toolbar strong { color: var(--kh-support-ink); font-size: 13px; }
.kh-support-registry__toolbar small { color: var(--kh-support-muted); font-size: 11px; }

.kh-support-search {
    position: relative;
    display: block;
    width: min(320px, 46%);
    margin: 0;
}

.kh-support-search i {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 1;
    color: #7a8495;
    transform: translateY(-50%);
}

.kh-support-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 38px;
    border: 1px solid #ccd4df;
    border-radius: 5px;
    background: #fff;
    color: var(--kh-support-ink);
    font-size: 12px;
}

.kh-support-search input:focus {
    border-color: var(--kh-support-purple);
    outline: 3px solid rgba(111, 39, 139, .12);
}

.kh-support-table__head,
.kh-support-table__row {
    display: grid;
    grid-template-columns: minmax(125px, .8fr) minmax(230px, 1.55fr) minmax(145px, .9fr) 112px 26px;
    align-items: center;
    gap: 14px;
}

.kh-support-table__head {
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 1px solid var(--kh-support-line);
    color: #6d7789;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.kh-support-table__row {
    min-height: 78px;
    padding: 13px 16px;
    border-bottom: 1px solid #e7ebf0;
    color: inherit;
    text-decoration: none;
    transition: background-color .16s ease, box-shadow .16s ease;
}

.kh-support-table__row:last-child { border-bottom: 0; }
.kh-support-table__row:hover { background: #fbf8fc; box-shadow: inset 3px 0 0 var(--kh-support-purple); }
.kh-support-table__row:focus-visible { outline: 3px solid rgba(111, 39, 139, .22); outline-offset: -3px; }

.kh-support-table__department,
.kh-support-table__subject,
.kh-support-table__row time {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.kh-support-table__department {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
}

.kh-support-table__department i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 5px;
    background: #f3edf6;
    color: var(--kh-support-purple);
    font-size: 12px;
}

.kh-support-table__department b,
.kh-support-table__subject strong,
.kh-support-table__row time strong {
    overflow: hidden;
    color: var(--kh-support-ink);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-support-table__subject small,
.kh-support-table__row time small {
    overflow: hidden;
    color: var(--kh-support-muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-support-table__row .kh-status {
    display: inline-flex;
    max-width: 100%;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 9px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.kh-support-table__open {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: var(--kh-support-purple);
}

.kh-support-table__no-result {
    display: grid;
    min-height: 180px;
    place-items: center;
    align-content: center;
    gap: 5px;
    padding: 24px;
    color: var(--kh-support-muted);
    text-align: center;
}

.kh-support-table__no-result[hidden] { display: none; }
.kh-support-table__no-result i { margin-bottom: 4px; color: var(--kh-support-purple); font-size: 22px; }
.kh-support-table__no-result strong { color: var(--kh-support-ink); font-size: 14px; }
.kh-support-table__no-result span { font-size: 11px; }

.kh-support-registry__filters {
    position: sticky;
    top: 18px;
    overflow: hidden;
}

.kh-support-registry__filters header {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 51px;
    padding: 0 15px;
    border-bottom: 1px solid var(--kh-support-line);
    color: var(--kh-support-ink);
    font-size: 12px;
}

.kh-support-registry__filters header i { color: var(--kh-support-purple); }

.kh-support-registry__filters button {
    display: flex;
    width: 100%;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 15px;
    border: 0;
    border-bottom: 1px solid #eceff3;
    background: #fff;
    color: #536075;
    cursor: pointer;
    font-size: 11px;
    text-align: left;
}

.kh-support-registry__filters button:last-child { border-bottom: 0; }
.kh-support-registry__filters button:hover { background: #f8f5fa; color: var(--kh-support-purple); }
.kh-support-registry__filters button.is-active { background: #f3edf6; color: var(--kh-support-purple-dark); font-weight: 800; }
.kh-support-registry__filters button b { min-width: 26px; padding: 3px 6px; border-radius: 999px; background: #edf0f4; font-size: 9px; text-align: center; }
.kh-support-registry__filters button.is-active b { background: var(--kh-support-purple); color: #fff; }

.kh-support-create { margin-top: 20px; overflow: hidden; }
.kh-support-create > summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 13px 17px;
    background: #fafbfc;
    cursor: pointer;
    list-style: none;
}

.kh-support-create > summary::-webkit-details-marker { display: none; }
.kh-support-create > summary > span:first-child { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 6px; background: #f3edf6; color: var(--kh-support-purple); }
.kh-support-create > summary > span:nth-child(2) { display: grid; gap: 2px; }
.kh-support-create > summary strong { color: var(--kh-support-ink); font-size: 14px; }
.kh-support-create > summary small { color: var(--kh-support-muted); font-size: 11px; }
.kh-support-create > summary > i { color: var(--kh-support-purple); transition: transform .18s ease; }
.kh-support-create[open] > summary > i { transform: rotate(180deg); }
.kh-support-create > form { display: grid; gap: 15px; padding: 20px; border-top: 1px solid var(--kh-support-line); }
.kh-support-create > form > label,
.kh-support-create .kh-helpdesk-form-row label { display: grid; gap: 7px; margin: 0; }
.kh-support-create label > span:first-child { color: var(--kh-support-ink); font-size: 11px; font-weight: 800; }
.kh-support-create input,
.kh-support-create select,
.kh-support-create textarea { width: 100%; border: 1px solid #ccd4df; border-radius: 5px; background: #fff; }
.kh-support-create input,
.kh-support-create select { height: 43px; padding: 0 12px; }
.kh-support-create textarea { min-height: 150px; padding: 12px; resize: vertical; }
.kh-support-create input:focus,
.kh-support-create select:focus,
.kh-support-create textarea:focus { border-color: var(--kh-support-purple); outline: 3px solid rgba(111, 39, 139, .11); }
.kh-support-create > form > footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.kh-support-create > form > footer > span { color: var(--kh-support-muted); font-size: 10px; }
.kh-support-create > form > footer > span i { margin-right: 6px; color: var(--kh-support-teal); }

.kh-support-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--kh-support-muted);
    font-size: 11px;
}

.kh-support-breadcrumb a { display: inline-flex; align-items: center; gap: 7px; color: var(--kh-support-purple); font-weight: 800; text-decoration: none; }
.kh-support-breadcrumb a:hover { text-decoration: underline; }

.kh-ticket-detail-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 19px;
    border-bottom: 1px solid var(--kh-support-line);
}

.kh-ticket-detail-header > .kh-status { max-width: 190px; padding: 7px 11px; border-radius: 999px; text-align: center; white-space: normal; }

.kh-ticket-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 238px;
    align-items: start;
    gap: 18px;
    margin-top: 20px;
}

.kh-ticket-detail-main { display: grid; min-width: 0; gap: 18px; }
.kh-ticket-reply-panel,
.kh-ticket-history,
.kh-ticket-case-card { overflow: hidden; }

.kh-ticket-reply-panel > header,
.kh-ticket-history > header,
.kh-ticket-case-card > header {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 70px;
    padding: 13px 17px;
    border-bottom: 1px solid var(--kh-support-line);
    background: #fafbfc;
}

.kh-ticket-reply-panel > header > span,
.kh-ticket-history > header > div > span,
.kh-ticket-case-card > header > span {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 5px;
    background: #f3edf6;
    color: var(--kh-support-purple);
}

.kh-ticket-reply-panel h2,
.kh-ticket-history h2,
.kh-ticket-case-card h2 { margin: 0; color: var(--kh-support-ink); font-size: 15px; line-height: 1.25; }
.kh-ticket-reply-panel header p,
.kh-ticket-history header p,
.kh-ticket-case-card header p { margin: 2px 0 0; color: var(--kh-support-muted); font-size: 10px; }

.kh-ticket-reply-panel form { display: grid; gap: 15px; padding: 18px; }
.kh-ticket-reply-panel__identity { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.kh-ticket-reply-panel label { display: grid; gap: 6px; margin: 0; }
.kh-ticket-reply-panel label > span:first-child { color: var(--kh-support-ink); font-size: 10px; font-weight: 800; }
.kh-ticket-reply-panel input,
.kh-ticket-reply-panel textarea { width: 100%; border: 1px solid #ccd4df; border-radius: 5px; background: #fff; color: var(--kh-support-ink); }
.kh-ticket-reply-panel input { height: 41px; padding: 0 11px; background: #f5f7f9; }
.kh-ticket-reply-panel textarea { min-height: 172px; padding: 12px; resize: vertical; }
.kh-ticket-reply-panel textarea:focus { border-color: var(--kh-support-purple); outline: 3px solid rgba(111, 39, 139, .11); }
.kh-ticket-reply-panel footer { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; }
.kh-ticket-reply-panel footer > span:first-child { color: var(--kh-support-muted); font-size: 10px; }
.kh-ticket-reply-panel footer > span:first-child i { margin-right: 6px; color: var(--kh-support-teal); }

.kh-ticket-history > header { justify-content: space-between; }
.kh-ticket-history > header > div { display: flex; align-items: center; gap: 11px; }
.kh-ticket-history > header > strong { padding: 5px 9px; border-radius: 999px; background: #edf0f4; color: #606b7c; font-size: 9px; }
.kh-ticket-history__records { display: grid; gap: 13px; padding: 17px; background: var(--kh-support-soft); }

.kh-ticket-record {
    overflow: hidden;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    background: #fff;
}

.kh-ticket-record > header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 57px;
    padding: 9px 13px;
    color: #fff;
}

.kh-ticket-record.is-staff { border-color: #15816c; }
.kh-ticket-record.is-staff > header { background: #0f7566; }
.kh-ticket-record.is-customer { border-color: #64517e; }
.kh-ticket-record.is-customer > header { background: #514164; }
.kh-ticket-record__avatar { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: rgba(255, 255, 255, .13); }
.kh-ticket-record > header > div { display: grid; min-width: 0; gap: 1px; }
.kh-ticket-record > header strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.kh-ticket-record > header small { color: rgba(255, 255, 255, .78); font-size: 9px; }
.kh-ticket-record > header time { color: rgba(255, 255, 255, .88); font-size: 9px; font-weight: 700; white-space: nowrap; }
.kh-ticket-record__body { display: block; min-width: 0; min-height: 72px; padding: 15px 16px; overflow: hidden; }
.kh-ticket-record__body p { margin: 0; color: #354054; font-size: 12px; line-height: 1.7; white-space: pre-wrap; overflow-wrap: anywhere; }

.kh-ticket-case-card { position: sticky; top: 18px; }
.kh-ticket-case-card dl { margin: 0; padding: 3px 15px; }
.kh-ticket-case-card dl div { display: grid; gap: 5px; padding: 12px 0; border-bottom: 1px solid #e8ebf0; }
.kh-ticket-case-card dl div:last-child { border-bottom: 0; }
.kh-ticket-case-card dt { color: var(--kh-support-muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.kh-ticket-case-card dd { margin: 0; color: var(--kh-support-ink); font-size: 11px; font-weight: 700; overflow-wrap: anywhere; }
.kh-ticket-case-card dd .kh-status { display: inline-flex; max-width: 100%; padding: 5px 8px; border-radius: 999px; font-size: 9px; white-space: normal; }
.kh-ticket-case-card__note { display: flex; gap: 9px; margin: 0 14px 14px; padding: 11px; border-left: 3px solid var(--kh-support-teal); background: #edf8f6; }
.kh-ticket-case-card__note i { margin-top: 2px; color: var(--kh-support-teal); }
.kh-ticket-case-card__note p { margin: 0; color: #45635f; font-size: 9px; line-height: 1.55; }
.kh-ticket-case-card > a { display: flex; min-height: 43px; align-items: center; justify-content: center; gap: 7px; border-top: 1px solid var(--kh-support-line); color: var(--kh-support-purple); font-size: 10px; font-weight: 800; text-decoration: none; }
.kh-ticket-case-card > a:hover { background: #f8f4fa; }

.kh-ticket-closed-notice {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid #e5c98d;
    border-radius: 6px;
    background: #fff8e8;
}

.kh-ticket-closed-notice > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 5px; background: #f6e7be; color: #8d5a00; }
.kh-ticket-closed-notice > div { display: grid; gap: 2px; }
.kh-ticket-closed-notice strong { color: #573d0f; font-size: 11px; }
.kh-ticket-closed-notice span { color: #82662e; font-size: 10px; }
.kh-ticket-closed-notice a { color: #6d4300; font-size: 10px; font-weight: 800; }

/* Yetkili destek ekranları da aynı panel menüsünü korur. */
.kh-helpdesk-admin-page .kh-panel-layout { align-items: start; }
.kh-helpdesk-admin-page .kh-helpdesk-admin-header { padding-top: 2px; }

@media (max-width: 1199.98px) {
    .kh-support-registry { grid-template-columns: minmax(0, 1fr) 192px; }
    .kh-support-table__head,
    .kh-support-table__row { grid-template-columns: minmax(110px, .8fr) minmax(190px, 1.45fr) minmax(130px, .85fr) 96px 22px; gap: 10px; }
    .kh-ticket-detail-layout { grid-template-columns: minmax(0, 1fr) 215px; }
}

@media (max-width: 991.98px) {
    .kh-support-page-header { padding-top: 2px; }
    .kh-support-registry { grid-template-columns: minmax(0, 1fr); }
    .kh-support-registry__filters { position: static; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-row: 1; }
    .kh-support-registry__filters header { grid-column: 1 / -1; min-height: 43px; }
    .kh-support-registry__filters button { min-height: 42px; border-right: 1px solid #eceff3; border-bottom: 0; }
    .kh-support-registry__filters button:last-child { border-right: 0; }
    .kh-ticket-detail-layout { grid-template-columns: minmax(0, 1fr); }
    .kh-ticket-case-card { position: static; }
    .kh-ticket-case-card dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 16px; }
    .kh-ticket-case-card__note { margin-top: 10px; }
}

@media (max-width: 767.98px) {
    .kh-support-page-header,
    .kh-ticket-detail-header { align-items: stretch; flex-direction: column; gap: 14px; }
    .kh-support-page-header h1,
    .kh-ticket-detail-header h1 { font-size: 25px; }
    .kh-support-page-header .kh-button { width: 100%; }
    .kh-support-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .kh-support-summary article { align-items: flex-start; flex-direction: column; min-height: 106px; gap: 8px; padding: 13px 10px; }
    .kh-support-summary article > span { width: 34px; height: 34px; flex-basis: 34px; }
    .kh-support-summary small { font-size: 9px; line-height: 1.3; }
    .kh-support-summary strong { font-size: 20px; }
    .kh-support-registry__filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kh-support-registry__filters button:nth-of-type(2) { border-right: 0; }
    .kh-support-registry__filters button:nth-of-type(n+3) { border-top: 1px solid #eceff3; }
    .kh-support-registry__toolbar { align-items: stretch; flex-direction: column; gap: 11px; }
    .kh-support-search { width: 100%; }
    .kh-support-table__head { display: none; }
    .kh-support-table__row { grid-template-columns: minmax(0, 1fr) auto; gap: 10px 14px; min-height: 0; padding: 15px; }
    .kh-support-table__department { grid-column: 1; grid-row: 1; }
    .kh-support-table__subject { grid-column: 1 / -1; grid-row: 2; padding: 10px 0; border-top: 1px solid #edf0f3; border-bottom: 1px solid #edf0f3; }
    .kh-support-table__row > span:nth-child(3) { grid-column: 1; grid-row: 3; }
    .kh-support-table__row time { grid-column: 2; grid-row: 3; text-align: right; }
    .kh-support-table__open { grid-column: 2; grid-row: 1; }
    .kh-support-table__department b,
    .kh-support-table__subject strong,
    .kh-support-table__subject small { white-space: normal; }
    .kh-support-create > form { padding: 16px; }
    .kh-support-create > form > footer { align-items: stretch; flex-direction: column; }
    .kh-support-create > form > footer .kh-button { width: 100%; }
    .kh-ticket-reply-panel__identity { grid-template-columns: minmax(0, 1fr); }
    .kh-ticket-reply-panel footer { grid-template-columns: minmax(0, 1fr) auto; }
    .kh-ticket-reply-panel footer .kh-button { grid-column: 1 / -1; width: 100%; }
    .kh-ticket-case-card dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .kh-ticket-closed-notice { grid-template-columns: 34px minmax(0, 1fr); }
    .kh-ticket-closed-notice a { grid-column: 1 / -1; min-height: 36px; padding-top: 9px; border-top: 1px solid #ead7ae; text-align: center; }
}

@media (max-width: 479.98px) {
    .kh-support-records-page > .container,
    .kh-support-detail-page > .container,
    .kh-helpdesk-admin-page > .container { padding-right: 11px; padding-left: 11px; }
    .kh-support-page-header h1,
    .kh-ticket-detail-header h1 { font-size: 23px; }
    .kh-support-summary article { min-height: 102px; }
    .kh-support-summary article > span { width: 31px; height: 31px; flex-basis: 31px; }
    .kh-support-registry__filters button { padding: 0 11px; font-size: 10px; }
    .kh-support-create > summary { grid-template-columns: 34px minmax(0, 1fr) 20px; padding: 12px; }
    .kh-support-create > summary > span:first-child { width: 34px; height: 34px; }
    .kh-support-create > summary small { display: none; }
    .kh-ticket-reply-panel > header,
    .kh-ticket-history > header,
    .kh-ticket-case-card > header { padding: 12px; }
    .kh-ticket-reply-panel form,
    .kh-ticket-history__records { padding: 12px; }
    .kh-ticket-record > header { grid-template-columns: 32px minmax(0, 1fr); padding: 9px 11px; }
    .kh-ticket-record__avatar { width: 32px; height: 32px; }
    .kh-ticket-record > header time { grid-column: 2; white-space: normal; }
    .kh-ticket-record__body { padding: 13px; }
    .kh-ticket-case-card dl { grid-template-columns: minmax(0, 1fr); }
    .kh-ticket-detail-header > .kh-status { max-width: none; }
}
/* Destek görsel ekleri ve dengeli 404 ekranı */
.kh-ticket-file-picker {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.kh-ticket-file-picker > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #171b2d;
    font-weight: 700;
}

.kh-ticket-file-picker > span:first-child small {
    color: #72798a;
    font-size: 12px;
    font-weight: 600;
}

.kh-ticket-file-picker__control {
    position: relative;
    display: grid;
    min-width: 0;
    align-items: center;
    justify-items: center;
    gap: 9px;
    min-height: 112px;
    padding: 18px;
    border: 1px dashed #bfc8d8;
    border-radius: 6px;
    background: #f8f9fc;
    color: #6f278b;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

/* Tarayıcının yerel dosya alanını erişilebilir biçimde saklar; kullanıcı özel düğmeyi görür. */
.kh-ticket-file-picker__input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.kh-ticket-file-picker__control:hover {
    border-color: #8f4aa6;
    background: #fbf8fc;
}

.kh-ticket-file-picker__control:focus-within {
    border-color: #6f278b;
    box-shadow: 0 0 0 3px rgba(111, 39, 139, .12);
}

.kh-ticket-file-picker__action {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid #cdb4d7;
    border-radius: 4px;
    background: #fff;
    color: #6f278b;
    box-shadow: 0 5px 15px rgba(67, 38, 83, .06);
    font-size: 12px;
}

.kh-ticket-file-picker__selection {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #687184;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-ticket-file-picker > small {
    color: #747c8d;
    font-size: 12px;
}

.kh-ticket-attachments {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 98px));
    justify-content: start;
    gap: 8px;
    width: 100%;
}

.kh-ticket-record__attachments-section {
    display: block;
    min-width: 0;
    padding: 13px 16px 16px;
    border-top: 1px solid #e1e5ec;
    background: #f8f9fb;
}

.kh-ticket-record__attachments-section > header {
    display: flex;
    min-height: auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    color: #3e485a;
}

.kh-ticket-record__attachments-section > header span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
}

.kh-ticket-record__attachments-section > header i { color: #6f278b; }
.kh-ticket-record__attachments-section > header small { color: #778093; font-size: 10px; font-weight: 700; }

.kh-ticket-attachment {
    overflow: hidden;
    min-width: 0;
    margin: 0;
    border: 1px solid #dce1ea;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(28, 35, 51, .05);
}

.kh-ticket-attachment__preview {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 5px;
    border-bottom: 1px solid #e3e7ed;
    background: #eef1f5;
}

.kh-ticket-attachment__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

.kh-ticket-attachment__preview:hover img {
    transform: scale(1.02);
}

.kh-ticket-attachment figcaption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 6px;
    color: #252b3b;
}

.kh-ticket-attachment__download {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 5px;
    background: #f5edf8;
    color: #6f278b;
    text-decoration: none;
}

.kh-ticket-attachment__download:hover {
    background: #6f278b;
    color: #fff;
}

.kh-ticket-attachment figcaption span,
.kh-ticket-attachment figcaption strong,
.kh-ticket-attachment figcaption small {
    display: block;
    min-width: 0;
}

.kh-ticket-attachment figcaption strong {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kh-ticket-attachment figcaption small {
    margin-top: 2px;
    color: #7c8494;
    font-size: 9px;
}

.kh-ticket-record__message {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.kh-ticket-record__message.is-collapsible:not(.is-expanded) {
    max-height: 238px;
    overflow: hidden;
}

.kh-ticket-record__message.is-collapsible:not(.is-expanded)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 82%);
    content: "";
    pointer-events: none;
}

.kh-ticket-record__toggle {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    padding: 6px 10px;
    border: 1px solid #d8dce5;
    border-radius: 4px;
    background: #f8f9fb;
    color: #5d3172;
    font-size: 10px;
    font-weight: 800;
}

.kh-ticket-record__toggle i { transition: transform .2s ease; }
.kh-ticket-record__toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.kh-ticket-history {
    padding-top: 0;
}

.kh-not-found {
    min-height: clamp(500px, 65vh, 680px);
    padding: 72px 0 88px;
    background: #f5f7fa;
}

.kh-not-found__content {
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 48px 40px;
    border-top: 4px solid #6f278b;
    background: #fff;
    box-shadow: 0 18px 50px rgba(27, 32, 48, .09);
    text-align: center;
}

.kh-not-found__code {
    display: block;
    color: #6f278b;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
}

.kh-not-found__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 18px auto 22px;
    place-items: center;
    border-radius: 50%;
    background: #eaf8f4;
    color: #087f6a;
    font-size: 24px;
}

.kh-not-found h1 {
    margin: 0;
    color: #111526;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0;
}

.kh-not-found p {
    max-width: 520px;
    margin: 16px auto 0;
    color: #626b7c;
    font-size: 16px;
    line-height: 1.7;
}

.kh-not-found__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

@media (max-width: 767px) {
    .kh-ticket-attachments {
        grid-template-columns: repeat(auto-fill, minmax(82px, 94px));
    }

    .kh-ticket-file-picker__control { min-height: 104px; padding: 15px 12px; }

    .kh-not-found {
        min-height: 480px;
        padding: 38px 0 56px;
    }

    .kh-not-found__content {
        padding: 34px 20px;
    }

    .kh-not-found h1 {
        font-size: 30px;
    }

    .kh-not-found__actions {
        flex-direction: column;
    }
}

/* Sepet ve alan adı özetindeki son responsive düzeltmeler. */
.kh-quantity-form label {
    width: auto;
}

.kh-domain-owner-summary .kh-domain-owner-price {
    margin-top: 12px;
    padding: 18px 16px;
    border: 1px solid #dcc8e5;
    background: #f6eef9;
    box-shadow: 0 8px 22px rgba(102, 36, 131, .08);
}

.kh-domain-owner-summary .kh-domain-owner-price dt {
    color: #5d2b73;
    font-weight: 800;
}

.kh-domain-owner-summary .kh-domain-owner-price dd {
    font-size: 23px;
    line-height: 1.1;
}

@media (max-width: 575px) {
    .kh-quantity-control {
        grid-template-columns: 40px minmax(48px, 1fr) 40px;
        width: min(100%, 168px);
    }

    .kh-quantity-control input {
        width: 100% !important;
    }

    .kh-domain-owner-summary .kh-domain-owner-price {
        align-items: flex-end;
    }

    /* Küçük ekranda çark ödülünün ikinci satırı da okunabilir kalır. */
    .kh-wheel > span small {
        font-size: 7px;
        font-weight: 800;
        line-height: 1;
    }

    .kh-wheel-machine__title span,
    .kh-wheel-machine__topline span,
    .kh-wheel-right-expiry {
        font-size: 10px;
    }

    .kh-product-grid .kh-category-badge,
    .kh-product-grid .kh-status,
    .kh-product-grid .kh-plan-family,
    .kh-product-grid .kh-plan-purchase > small {
        font-size: 10px;
    }
}
