:root {
    --ck-blue: #255AA6;
    --ck-blue-dark: #1E467C;
    --ck-blue-link: #1A73E8;
    --ck-blue-soft: #F4F8FD;
    --ck-blue-soft-2: #EAF2FB;
    --ck-orange: #EF8A2F;
    --ck-text: #202833;
    --ck-muted: #637080;
    --ck-border: #D7E0EA;
    --ck-border-light: #E8EDF3;
    --ck-white: #FFFFFF;
    --ck-sticky-scroll-offset: 60px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--ck-white);
    color: var(--ck-text);
    font-family:
        Inter,
        Arial,
        sans-serif;
    font-size: 14px;
    line-height: 1.55;
}


.ck-catalog-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}


/* =====================================================
   STICKY TOP BAR
   ===================================================== */

.ck-sticky-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border: 0;
    box-shadow: none;
}


.ck-sticky-inner {
    display: grid;
    grid-template-columns:
        minmax(250px, 1fr)
        auto
        minmax(90px, 1fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 1200px;
    min-height: 42px;
    margin: 0 auto;
    padding: 4px 22px;
}


.ck-sticky-left,
.ck-sticky-center,
.ck-sticky-right {
    display: flex;
    align-items: center;
}


.ck-sticky-left {
    min-width: 0;
    gap: 11px;
}


.ck-sticky-center {
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}


.ck-sticky-right {
    justify-content: flex-end;
    min-width: 90px;
}


.ck-back-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
    color: var(--ck-blue);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
}


.ck-home-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;padding: 2px;
    overflow: hidden;
    border: 1px solid #E2E8EF;
    border-radius: 6px;
    background: #ffffff;
    text-decoration: none;
    transition:
        border-color .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}


.ck-home-logo:hover {
    border-color: #B8C7D5;
    box-shadow: 0 2px 7px rgba(23,63,104,.10);
    transform: translateY(-1px);
}


.ck-home-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.ck-sticky-phone,
.ck-sticky-email {
    color: #52697E;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}


.ck-sticky-phone:hover,
.ck-sticky-email:hover {
    color: var(--ck-blue);
    text-decoration: none;
}


.ck-sticky-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    line-height: 0;
    transition:
        transform .16s ease,
        filter .16s ease,
        opacity .16s ease;
}


.ck-sticky-messenger svg {
    display: block;
    width: 25px;
    height: 25px;
    filter: grayscale(1) saturate(0) opacity(.34);
    transition:
        filter .16s ease,
        opacity .16s ease,
        transform .16s ease;
}


.ck-sticky-messenger:hover {
    transform: translateY(-1px);
}


.ck-sticky-messenger:hover svg {
    filter: none;
    opacity: 1;
}


.ck-back-link:hover {
    color: var(--ck-blue-dark);
    text-decoration: underline;
}


.ck-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid #A9BBCB;
    border-radius: 6px;
    background: #ffffff;
    color: #52697E;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}


.ck-apply-button:hover {
    border-color: var(--ck-orange);
    background: var(--ck-orange);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(239,138,47,.16);
    transform: translateY(-1px);
}


.ck-sticky-brand {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    margin-left: 4px;
}


.ck-sticky-brand img {
    display: block;
    width: auto;
    height: 24px;
    max-width: 120px;
    object-fit: contain;
}


/*
 * Автоматически подтянутые логотипы часто квадратные и визуально
 * "прилипают" к правому краю. Для ещё не настроенных брендов
 * центрируем их в стабильной правой зоне.
 */
.ck-sticky-brand--generic {
    width: 112px;
    min-width: 112px;
    margin-left: 0;
    justify-content: center;
    overflow: visible;
}

.ck-sticky-brand--generic img {
    display: block;
    width: auto;
    max-width: 108px;
    height: 28px;
    max-height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
    object-position: center;
}

/* HAWE remains on UNIVERSAL GROUPING; only logo rendering is special. */
.ck-sticky-brand--hawe_hydraulik {
    overflow: visible;
}

.ck-sticky-brand--hawe_hydraulik img {
    width: 106px;
    max-width: 106px;
    height: 30px;
    max-height: 30px;
    object-fit: cover;
    object-position: center 40%;
}


.ck-sticky-brand--omfb {
    min-width: 0;
}

.ck-sticky-brand--omfb img {
    display: block;
    width: auto;
    height: 30px;
    max-width: 96px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
}


.ck-danfoss-boxlogo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 30px;
    padding: 3px 9px;
    overflow: hidden;
    border-radius: 6px;
    background: #E2000F;
}


.ck-danfoss-boxlogo img {
    width: 62px;
    height: auto;
    max-width: 62px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


.ck-danfoss-boxlogo-text {
    display: none;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}


.ck-sticky-brand-fallback {
    color: var(--ck-blue-dark);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}


/* =====================================================
   BRAND HEADER
   ===================================================== */


.ck-catalog-header {
    padding: 14px 0 26px;
    text-align: center;
}


.ck-catalog-brand {
    margin: 0;
    color: var(--ck-blue);
    font-size: 29px;
    font-weight: 600;
    line-height: 1.3;
}


.ck-catalog-subtitle {
    width: 100%;
    max-width: none;
    margin: 14px 0 0;
    color: var(--ck-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}


.ck-catalog-note {
    width: 100%;
    max-width: none;
    margin: 10px 0 0;
    color: var(--ck-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}


.ck-visually-hidden {
    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;
}


/* =====================================================
   SEARCH
   ===================================================== */

.ck-catalog-search-section {
    padding: 24px 0;
    border-top: 1px solid var(--ck-border);
    border-bottom: 1px solid var(--ck-border);
}


.ck-catalog-search-tools {
    display: grid;
    grid-template-columns:
        minmax(0, 780px)
        minmax(260px, 1fr);
    gap: 34px;
    align-items: center;
}


.ck-catalog-search {
    display: flex;
    gap: 10px;
    max-width: none;
    min-width: 0;
}


.ck-brand-selector {
    position: relative;
    width: 100%;
    min-width: 0;
}


.ck-brand-selector::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--ck-blue);
    border-bottom: 2px solid var(--ck-blue);
    transform: rotate(45deg);
    pointer-events: none;
}


.ck-brand-selector select {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 48px 0 14px;
    border: 1px solid #AFC2D8;
    border-radius: 6px;
    background: var(--ck-white);
    color: var(--ck-text);
    font: inherit;
    line-height: 44px;
    outline: none;
    cursor: pointer;

    -webkit-appearance: none;
    appearance: none;
}


.ck-brand-selector select:hover {
    border-color: #8FAAC7;
}


.ck-brand-selector select:focus {
    border-color: var(--ck-blue);
    box-shadow:
        0 0 0 3px
        rgba(37,90,166,.10);
}


.ck-brand-selector option,
.ck-brand-selector optgroup {
    color: var(--ck-text);
    background: var(--ck-white);
}


.ck-brand-selector optgroup {
    font-weight: 600;
}


.ck-catalog-search input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #AFC2D8;
    border-radius: 6px;
    background: var(--ck-white);
    color: var(--ck-text);
    font: inherit;
    outline: none;
}


.ck-catalog-search input:focus {
    border-color: var(--ck-blue);
    box-shadow:
        0 0 0 3px
        rgba(37,90,166,.10);
}


.ck-catalog-search button {
    height: 44px;
    padding: 0 24px;
    border: 1px solid var(--ck-blue);
    border-radius: 6px;
    background: var(--ck-blue);
    color: var(--ck-white);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}


.ck-catalog-search button:hover {
    background: var(--ck-blue-dark);
    border-color: var(--ck-blue-dark);
}


.ck-catalog-search-reset {
    display: inline-block;
    margin-top: 10px;
    color: var(--ck-blue-link);
    font-size: 13px;
    text-decoration: none;
}


.ck-catalog-search-reset:hover {
    text-decoration: underline;
}


.ck-catalog-count {
    margin-top: 14px;
    color: var(--ck-muted);
    font-size: 13px;
}


.ck-catalog-count strong {
    color: var(--ck-text);
    font-weight: 600;
}


/* =====================================================
   SERIES NAVIGATION
   ===================================================== */

.ck-series-nav {
    margin-top: 28px;
    padding: 22px 22px 18px;
    border: 1px solid var(--ck-border);
    border-radius: 8px;
    background: var(--ck-blue-soft);
}


.ck-series-nav-title {
    margin: 0 0 16px;
    color: var(--ck-blue-dark);
    font-size: 16px;
    font-weight: 600;
}


.ck-series-nav-group {
    margin-top: 15px;
}


.ck-series-nav-group:first-of-type {
    margin-top: 0;
}


.ck-series-nav-category {
    margin: 0 0 7px;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}


.ck-series-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}


.ck-series-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 31px;
    padding: 5px 10px;
    border: 1px solid #C8D7E8;
    border-radius: 5px;
    background: var(--ck-white);
    color: var(--ck-blue);
    opacity: 1 !important;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
}


.ck-series-nav-link:hover {
    border-color: var(--ck-blue);
    background: var(--ck-blue-soft-2);
}


.ck-series-nav-count {
    margin-left: 5px;
    color: #7B8794;
    font-size: 11px;
    font-weight: 400;
}


/* =====================================================
   CATALOG
   ===================================================== */

.ck-catalog-content {
    padding: 42px 0 35px;
}


.ck-catalog-category {
    margin-bottom: 58px;
    scroll-margin-top: var(--ck-sticky-scroll-offset);
}


/*
 * На последней группе уменьшаем пустое поле перед пагинацией.
 */
.ck-catalog-category:last-of-type {
    margin-bottom: 20px;
}


.ck-catalog-category:last-of-type
.ck-catalog-series:last-child {
    margin-bottom: 18px;
}


.ck-catalog-category-title {
    margin: 0 0 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ck-blue-soft-2);
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}


.ck-catalog-series {
    margin-bottom: 38px;
    scroll-margin-top: var(--ck-sticky-scroll-offset);
}


.ck-catalog-series-title {
    margin: 0 0 14px;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left !important;
}


/* =====================================================
   TABLE
   ===================================================== */

.ck-product-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid var(--ck-border);
}


.ck-product-table th {
    padding: 11px 13px;
    background: var(--ck-blue-soft);
    border-bottom: 1px solid var(--ck-border);
    color: var(--ck-blue-dark);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
}


.ck-product-table td {
    padding: 11px 13px;
    border-bottom: 1px solid var(--ck-border-light);
    vertical-align: top;
    color: var(--ck-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    overflow-wrap: anywhere;
}


.ck-product-table tr:last-child td {
    border-bottom: 0;
}


.ck-product-table tbody tr:hover {
    background: #F9FBFE;
}


.ck-col-code {
    width: 22%;
}


.ck-col-model {
    width: 25%;
}


.ck-col-description {
    width: 53%;
}


.ck-product-code,
.ck-product-model {
    color: var(--ck-blue-link);
    font-weight: 600;
    text-decoration: none;
}


.ck-product-code:hover,
.ck-product-model:hover {
    text-decoration: underline;
}


.ck-product-no-code {
    color: #7B8794;
}


.ck-product-status {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 7px;
    border: 1px solid #E2C6AB;
    border-radius: 4px;
    background: #FFF8F0;
    color: #92531D;
    font-size: 10.5px;
    font-weight: 500;
}


/* =====================================================
   PAGINATION
   ===================================================== */

.ck-pagination-wrap {
    margin-top: 8px;
}


.ck-pagination-info {
    margin-bottom: 10px;
    color: var(--ck-muted);
    font-size: 13px;
}


.ck-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}


.ck-pagination a,
.ck-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #BFD0E3;
    border-radius: 5px;
    color: var(--ck-blue);
    background: var(--ck-white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}


.ck-pagination a:hover {
    border-color: var(--ck-blue);
    background: var(--ck-blue-soft);
}


.ck-pagination .ck-active {
    border-color: var(--ck-blue);
    background: var(--ck-blue);
    color: var(--ck-white);
}


.ck-pagination .ck-dots {
    min-width: auto;
    padding: 0 2px;
    border: 0;
    color: var(--ck-muted);
    background: transparent;
}


/* =====================================================
   EMPTY
   ===================================================== */

.ck-catalog-empty {
    padding: 26px;
    border: 1px solid var(--ck-border);
    border-radius: 6px;
    background: var(--ck-blue-soft);
    color: var(--ck-text);
    font-size: 14px;
}



/* =====================================================
   AI ASSISTANT — copied visually from the main site
   ===================================================== */

.ck-ai-overlay {
    position: fixed;
    z-index: 2147483644;
    inset: 0;
    display: none;
    background: rgba(23,63,104,.20);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}


.ck-ai-overlay.is-open {
    display: block;
}


.ck-ai-dialog {
    position: fixed;
    z-index: 2147483645;
    top: 72px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    width: min(500px, calc(100vw - 32px));
    height: auto;
    max-height: calc(100vh - 94px);
    overflow: hidden;
    border: 1px solid rgba(23,63,104,.16);
    border-top: 3px solid var(--ck-orange);
    border-radius: 0 0 15px 15px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(18,55,88,.24);
    color: #172C40;
    font-family: Arial,Helvetica,sans-serif;
}


.ck-ai-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 15px;
    border-bottom: 1px solid #DCE6EF;
    background: linear-gradient(180deg,#FFF9F3 0%,#FFFFFF 100%);
}


.ck-ai-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
}


.ck-ai-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(23,63,104,.28);
    border-radius: 10px;
    background: #F3F8FD;
    color: #173F68;
}


.ck-ai-title-icon svg {
    display: block;
    width: 21px;
    height: 21px;
}


.ck-ai-title-text strong {
    display: block;
    margin: 1px 0 4px;
    color: #173F68;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}


.ck-ai-title-text span {
    display: block;
    color: #64788A;
    font-size: 11.5px;
    line-height: 1.4;
    font-weight: 400;
}


.ck-ai-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    border: 1px solid #D8E3EC;
    border-radius: 8px;
    background: #fff;
    color: #607488;
    font: 400 22px/1 Arial,Helvetica,sans-serif;
    cursor: pointer;
    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}


.ck-ai-close:hover {
    border-color: #B8CADB;
    background: #F4F8FB;
    color: #173F68;
}


.ck-ai-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 16px 17px 17px;
    box-sizing: border-box;
    overflow-y: auto;
}


.ck-ai-messages {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 0;
    max-height: 170px;
    margin: 0 0 6px;
    padding: 0;
    overflow-y: auto;
}


.ck-ai-message {
    max-width: 88%;
    padding: 8px 10px;
    box-sizing: border-box;
    border-radius: 10px;
    font: 300 13px/1.45 Inter,Arial,Helvetica,sans-serif;
    text-align: left;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}


.ck-ai-message--assistant {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid #DDE8F1;
    border-radius: 10px;
    background: #F5F9FC;
    color: #263E53;
    text-align: left;
    text-indent: 0;
    white-space: pre-wrap;
}


.ck-ai-message--intro {
    padding-top: 7px;
    padding-bottom: 7px;
    white-space: normal;
}


.ck-ai-message--user {
    align-self: flex-end;
    border: 1px solid rgba(239,138,47,.25);
    border-radius: 10px;
    background: #FFF7EE;
    color: #52371E;
}


.ck-ai-message--loading {
    opacity: .72;
    font-style: italic;
}


.ck-ai-quick-replies {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 12px;
    margin-top: 6px;
}


.ck-ai-quick-reply {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
}


.ck-ai-form {
    display: grid;
    gap: 8px;
    min-width: 0;
}


.ck-ai-input-wrap {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0,1fr) 22px;
    width: 100%;
    height: 94px;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #C9D8E5;
    border-radius: 9px;
    background: #fff;
}


.ck-ai-input-wrap:focus-within {
    border-color: #7FA6C9;
    box-shadow: 0 0 0 3px rgba(68,137,198,.10);
}


.ck-ai-form textarea {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    resize: none;
    padding: 11px 12px 5px;
    box-sizing: border-box;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #1F3447;
    font: 300 13px/1.5 Inter,Arial,Helvetica,sans-serif;
}


.ck-ai-form textarea::placeholder {
    color: #73879A;
    opacity: 1;
}


.ck-ai-form textarea:focus {
    border: 0;
    box-shadow: none;
}


.ck-ai-enter-hint {
    position: static;
    display: flex;
    align-items: center;
    min-width: 0;
    height: 22px;
    margin: 0;
    padding: 0 12px 5px;
    box-sizing: border-box;
    color: #8A99A6;
    font: 300 9px/1.25 Inter,Arial,Helvetica,sans-serif;
    text-align: left;
    pointer-events: none;
    user-select: none;
}


.ck-ai-file-row {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    align-items: start;
    gap: 8px;
    min-width: 0;
}


.ck-ai-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


.ck-ai-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    height: 34px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #C9D8E5;
    border-radius: 8px;
    background: #fff;
    color: #173F68;
    font: 300 11.5px/1 Inter,Arial,Helvetica,sans-serif;
    cursor: pointer;
    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease;
}


.ck-ai-file-button:hover {border-color: #7FA6C9;
    background: #F3F8FD;
}


.ck-ai-file-button svg {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}


.ck-ai-file-info {
    min-width: 0;
    padding-top: 1px;
}


.ck-ai-file-name {
    min-width: 0;
    color: #31495D;
    font: 300 10.5px/1.35 Inter,Arial,Helvetica,sans-serif;
}


.ck-ai-file-name.is-placeholder {
    padding-top: 8px;
    color: #73879A;
}


.ck-ai-file-limit {
    display: block;
    margin-top: 4px;
    color: #7A8C9C;
    font: 300 9px/1.3 Inter,Arial,Helvetica,sans-serif;
}


.ck-ai-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-width: 0;
}


.ck-ai-send,
.ck-ai-submit-request {
    height: 38px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 9px;
    font: 300 14px/1 Inter,Arial,Helvetica,sans-serif;
    cursor: pointer;
    transition:
        background .18s ease,
        border-color .18s ease,
        transform .18s ease,
        opacity .18s ease;
}


.ck-ai-send {
    border: 1px solid var(--ck-orange);
    background: var(--ck-orange);
    color: #fff;
}


.ck-ai-send:hover {
    background: #D97A25;
    border-color: #D97A25;
    transform: translateY(-1px);
}


.ck-ai-submit-request {
    border: 1px solid var(--ck-orange);
    background: #fff;
    color: #C96E1E;
}


.ck-ai-submit-request:not(:disabled):hover {
    border-color: var(--ck-orange);
    background: var(--ck-orange);
    color: #fff;
    transform: translateY(-1px);
}


.ck-ai-submit-request:disabled {
    cursor: not-allowed;
    border-color: #F2C69D;
    background: #FFF1E4;
    color: #C98A52;
    opacity: 1;
    transform: none;
}


.ck-ai-small {
    margin: 8px 0 0;
    color: #7A8C9C;
    font: 300 10px/1.4 Inter,Arial,Helvetica,sans-serif;
}


@media (max-width: 640px) {

    .ck-ai-dialog {
        top: 52px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 64px);
        border-radius: 12px;
    }

    .ck-ai-body {
        padding: 14px;
    }

    .ck-ai-messages {
        max-height: 150px;
    }

}


/* Footer styles supplied from the main Tilda site */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 40px;
    row-gap: 20px;
}

.footer-col {
    grid-column: span 3;
}


/* =====================================================
   STICKY BAR RESPONSIVE
   ===================================================== */

@media (max-width: 1080px) {

    .ck-sticky-email {
        display: none;
    }

    .ck-sticky-inner {
        grid-template-columns:
            minmax(220px,1fr)
            auto
            minmax(86px,1fr);
        gap: 12px;
    }

}


@media (max-width: 900px) {

    .ck-sticky-phone {
        display: none;
    }

}


@media (max-width: 760px) {

    .ck-sticky-center .ck-sticky-messenger {
        display: none;
    }

    .ck-sticky-brand {
        display: none;
    }

    .ck-sticky-inner {
        grid-template-columns:
            minmax(0,1fr)
            auto;
    }

    .ck-sticky-right {
        display: none;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 640px) {

    .ck-sticky-inner {
        grid-template-columns:
            minmax(0,1fr)
            auto;
        gap: 8px;
        min-height: 40px;
        padding: 4px 10px;
    }

    .ck-sticky-left {
        gap: 7px;
    }

    .ck-sticky-center {
        gap: 0;
    }

    .ck-home-logo {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        border-radius: 5px;
    }

    .ck-back-link {
        font-size: 11.5px;
        line-height: 1.2;
        white-space: normal;
    }

    .ck-apply-button {
        min-height: 29px;
        padding: 4px 9px;
        font-size: 11px;
    }

    .ck-ai-overlay {
        padding: 8px;
    }

    .ck-ai-dialog {
        max-height: calc(100vh - 16px);
    }

    .ck-ai-actions {
        grid-template-columns: 1fr;
    }


    .ck-catalog-wrap {
        padding: 0 14px;
    }


    .ck-back-row {
        padding-top: 20px;
    }


    .ck-catalog-header {
        padding-top: 14px;
    }


    .ck-catalog-brand {
        font-size: 23px;
    }


    .ck-catalog-subtitle {
        font-size: 13.5px;
    }


    .ck-catalog-search-tools {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .ck-catalog-search {
        flex-direction: column;
    }


    .ck-brand-selector,
    .ck-brand-selector select {
        width: 100%;
    }


    .ck-brand-selector select {
        height: 44px;
        min-height: 44px;
        padding-left: 14px;
        font-size: 16px;
        line-height: 44px;
    }


    .ck-catalog-search input,
    .ck-catalog-search button {
        width: 100%;
        height: 44px;
        min-height: 44px;
        box-sizing: border-box;
    }


    .ck-catalog-search input {
        padding: 0 14px;
        font-size: 16px;
        line-height: 44px;
        -webkit-appearance: none;
        appearance: none;
    }


    .ck-catalog-search button {
        padding: 0 18px;
        line-height: 1;
    }


    .ck-series-nav {
        padding: 17px 14px 14px;
    }


    .ck-series-nav-link {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }


    .ck-catalog-category-title {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
        opacity: 1 !important;
        font-size: 18px;
    }


    .ck-catalog-series-title {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
        opacity: 1 !important;
        font-size: 15px;
        text-align: left !important;
    }


    /*
       TABLE → MOBILE CARDS
       БЕЗ ГОРИЗОНТАЛЬНОГО СКРОЛЛА
    */

    .ck-product-table,
    .ck-product-table tbody,
    .ck-product-table tr,
    .ck-product-table td {
        display: block;
        width: 100%;
    }


    .ck-product-table thead {
        display: none;
    }


    .ck-product-table {
        border: 0;
    }


    .ck-product-table tr {
        margin-bottom: 12px;
        border: 1px solid var(--ck-border);
        border-radius: 5px;
        background: var(--ck-white);
        overflow: hidden;
    }


    .ck-product-table td {
        display: grid;
        grid-template-columns:
            95px minmax(0,1fr);
        gap: 8px;
        padding: 10px 11px;
        border-bottom: 1px solid var(--ck-border-light);
    }


    .ck-product-table td:last-child {
        border-bottom: 0;
    }


    .ck-product-table td::before {
        content: attr(data-label);
        color: var(--ck-blue-dark);
        font-size: 11px;
        font-weight: 600;
    }

}



@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        grid-column: span 1;
    }

    .footer-container {
        padding: 30px 15px !important;
    }

    .ck-footer-plain-mobile,
    .ck-footer-plain-mobile *,
    .ck-footer-plain-mobile a,
    .ck-footer-plain-mobile a:link,
    .ck-footer-plain-mobile a:visited,
    .ck-footer-plain-mobile a:hover,
    .ck-footer-plain-mobile a:active,
    .ck-footer-plain-mobile a[x-apple-data-detectors] {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-decoration: none !important;
        border-bottom: 0 !important;
        background: transparent !important;
    }
}
