:root {
    --ck-blue: #255AA6;
    --ck-blue-dark: #1E467C;
    --ck-link: #1A73E8;
    --ck-orange: #EF8A2F;
    --ck-text: #202833;
    --ck-muted: #637080;
    --ck-border: #D7E0EA;
    --ck-soft: #F4F8FD;
}

* {
    box-sizing: border-box;
}


body {

    margin: 0;

    background: #ffffff;

    color: #202833;

    font-family:
        Inter,
        Arial,
        sans-serif;
}


.ck-product-page {

    width: 100%;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

    background: #ffffff;
}


.ck-product-wrap {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;
}


.ck-product-top-back {
    padding-top: 28px;
}

.ck-product-top-back a {
    color: #255AA6;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.ck-product-top-back a:hover {
    color: #1E467C;
    text-decoration: underline;
}


/* =========================================================
   BRAND LOGO — EXACTLY AS IN brand.php
   ========================================================= */

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

.ck-catalog-logo {
    display: block;
    width: 270px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 16px;
    object-fit: contain;
}

.ck-product-brand-description {
    max-width: 1000px;
    margin: 0 auto;
    color: #202833;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

.ck-product-breadcrumbs {

    padding: 18px 0;

    border-top:
        1px solid #D7E0EA;

    border-bottom:
        1px solid #D7E0EA;

    font-size: 13px;

    line-height: 1.5;
}


.ck-product-breadcrumbs a {

    color: #1A73E8;

    text-decoration: none;
}


.ck-product-breadcrumbs a:hover {

    text-decoration: underline;
}


.ck-product-breadcrumbs span {

    margin: 0 7px;
}


/* =========================================================
   HERO
   ========================================================= */

.ck-product-hero {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, .95fr);

    gap: 38px;

    align-items: center;

    padding: 55px 0 45px;
}


.ck-product-h1 {

    margin: 0 0 20px;

    color: #255AA6;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.25;
}


.ck-product-lead {

    margin: 0 0 25px;

    color: #202833;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   META
   ========================================================= */

.ck-product-meta {

    display: grid;

    gap: 9px;

    margin: 25px 0;
}


.ck-product-meta-row {

    font-size: 14px;

    line-height: 1.5;
}


.ck-product-meta-row strong {

    font-weight: 600;
}


.ck-product-status {

    display: inline-block;

    margin-top: 4px;

    padding: 7px 10px;

    background: #F4F8FD;

    border:
        1px solid #D7E0EA;

    color: #202833;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.ck-product-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 30px;
}


.ck-product-request {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 23px;

    border:
        1px solid #EF8A2F;

    border-radius: 6px;

    background: transparent;

    color: #EF8A2F;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.ck-product-request:hover {

    background: #EF8A2F;

    color: #ffffff;

    border-color: #EF8A2F;
}


.ck-product-back {

    display: inline-flex;

    align-items: center;

    color: #1A73E8;

    font-size: 14px;

    text-decoration: none;
}


.ck-product-back:hover {

    text-decoration: underline;
}


/* =========================================================
   VISUAL
   ========================================================= */

.ck-product-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 390px;

    padding: 35px;

    overflow: hidden;

    border:
        1px solid rgba(0,0,0,.13);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #F4F8FD 0%,
            #FFFFFF 76%
        );
}


.ck-product-visual::before {

    content: '';

    position: absolute;

    width: 160px;

    height: 160px;

    left: -45px;

    top: -45px;

    border-radius: 50%;

    background: #EAF2FB;
}


.ck-product-visual::after {

    content: '';

    position: absolute;

    width: 48px;

    height: 48px;

    right: 28px;

    bottom: 30px;

    border-radius: 50%;

    background: #EF8A2F;

    opacity: .85;
}


.ck-product-main-image {

    position: relative;

    z-index: 2;

    display: block;

    width: min(100%, 430px);

    max-height: 320px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 12px
            rgba(0,0,0,.10)
        );
}


.ck-product-no-image {

    position: relative;

    z-index: 2;

    color: #255AA6;

    font-size: 18px;

    font-weight: 600;

    text-align: center;
}


/* =========================================================
   NAV
   ========================================================= */

.ck-product-nav {

    padding: 20px 0;

    border-top:
        1px solid #D7E0EA;

    border-bottom:
        1px solid #D7E0EA;
}


.ck-product-nav-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 10px 14px;
}


.ck-product-nav a {

    display: flex;

    align-items: center;

    min-height: 45px;

    padding: 10px 13px;

    border:
        1px solid #1A73E8;

    border-radius: 7px;

    background: #ffffff;

    color: #202833;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    transition: .2s ease;
}


.ck-product-nav a:hover {

    color: #1A73E8;

    background: #EAF2FB;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.ck-product-section {

    padding-top: 60px;

    scroll-margin-top: 30px;
}


.ck-product-section-title {

    margin: 0 0 22px;

    color: #255AA6;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.3;
}


.ck-product-text {

    color: #202833;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.65;

    white-space: pre-line;
}


/* =========================================================
   KEY SPECS
   ========================================================= */

.ck-product-key-specs {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 14px;

    margin-bottom: 25px;
}


.ck-product-key-spec {

    min-height: 74px;

    padding: 12px;

    border:
        1px solid #D7E0EA;

    background: #F4F8FD;
}


.ck-product-key-spec-name {

    color: #202833;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.4;
}


.ck-product-key-spec-value {

    margin-top: 5px;

    color: #255AA6;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   FULL SPECS
   ========================================================= */

.ck-product-spec-list {

    border-top:
        1px solid #D7E0EA;
}


.ck-product-spec-row {

    display: grid;

    grid-template-columns:
        minmax(180px, .8fr)
        minmax(0, 1.2fr);

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        1px solid #D7E0EA;

    font-size: 14px;

    line-height: 1.5;
}


.ck-product-spec-name {

    font-weight: 500;
}


.ck-product-spec-value {

    font-weight: 400;
}


/* =========================================================
   DOCUMENTATION
   ========================================================= */

.ck-product-document {

    display: inline-flex;

    align-items: center;

    min-height: 44px;

    padding: 10px 15px;

    border:
        1px solid #1A73E8;

    border-radius: 6px;

    color: #1A73E8;

    background: #ffffff;

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;
}


.ck-product-document:hover {

    background: #EAF2FB;
}


/* =========================================================
   SELECTION
   ========================================================= */

.ck-product-selection-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 14px;
}


.ck-product-selection-card {

    min-height: 115px;

    padding: 16px;

    border:
        1px solid #D7E0EA;

    background: #ffffff;
}


.ck-product-selection-card strong {

    display: block;

    margin-bottom: 6px;

    color: #255AA6;

    font-size: 14px;

    font-weight: 600;
}


.ck-product-selection-card p {

    margin: 0;

    color: #202833;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   RELATED — horizontal carousel
   ========================================================= */

.ck-product-related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.ck-product-related-head .ck-product-section-title {
    margin-bottom: 0;
}

.ck-product-related-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.ck-product-related-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #BFD0E3;
    border-radius: 6px;
    background: #ffffff;
    color: #255AA6;
    font-family: inherit;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}

.ck-product-related-arrow:hover:not(:disabled) {
    border-color: #255AA6;
    background: #F4F8FD;
}

.ck-product-related-arrow:disabled {
    opacity: 1;
    cursor: pointer;
}

.ck-product-related-grid {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 0 1px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ck-product-related-grid::-webkit-scrollbar {
    display: none;
}

.ck-product-related-card {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
    flex-direction: column;
    scroll-snap-align: start;
    border: 1px solid #D7E0EA;
    background: #ffffff;
}

.ck-product-related-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 18px;
    background: linear-gradient(145deg,#F4F8FD,#FFFFFF);
}

.ck-product-related-image img {
    width: 100%;
    height: 145px;
    object-fit: contain;
}

.ck-product-related-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.ck-product-related-title {
    margin: 0 0 8px;
    color: #255AA6;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.ck-product-related-code {
    margin-bottom: 8px;
    color: #202833;
    font-size: 11px;
    font-weight: 500;
}

.ck-product-related-description {
    flex: 1;
    margin: 0;
    color: #202833;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.ck-product-related-link {
    margin-top: 15px;
    color: #1A73E8;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

/* =========================================================
   SUPPLY — design matched to the approved landing-page chain
   ========================================================= */

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

.ck-product-supply-card {
    min-height: 210px;
    padding: 17px;
    border: 1px solid rgba(0,0,0,.13);
    background: #ffffff;
}

.ck-product-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #EF8A2F;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
}

.ck-product-supply-card h3 {
    margin: 0 0 7px;
    color: #255AA6;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ck-product-supply-card p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.56;
}


/* =========================================================
   SIDE NAV
   ========================================================= */

.ck-product-side {

    position: fixed;

    top: 50%;

    right: 14px;

    z-index: 70;

    display: flex;

    flex-direction: column;

    gap: 15px;

    transform:
        translateY(-50%);
}


.ck-product-side a {

    position: relative;

    display: block;

    width: 11px;

    height: 11px;

    border:
        1px solid #1A73E8;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(255,255,255,.76);
}


.ck-product-side a:hover,
.ck-product-side a.ck-active {

    background: #1A73E8;
}


.ck-product-side span {

    position: absolute;

    top: 50%;

    right: 19px;

    padding: 5px 8px;

    border:
        1px solid rgba(0,0,0,.13);

    background: #ffffff;

    color: #202833;

    font-size: 12px;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(-50%);

    transition:
        opacity .16s ease;
}


.ck-product-side a:hover span {

    opacity: 1;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {


    .ck-product-hero {

        grid-template-columns: 1fr;
    }


    .ck-product-key-specs {

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


    .ck-product-selection-grid {

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


    .ck-product-related-card {
        flex-basis: calc((100% - 16px) / 2);
    }


    .ck-product-supply-grid {

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


    .ck-product-side {

        display: none;
    }

}


@media (max-width: 640px) {


    .ck-product-wrap {

        padding: 0 14px;
    }


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

    .ck-catalog-logo {
        width: 230px;
    }


    .ck-product-hero {

        padding-top: 38px;
    }


    .ck-product-h1 {

        font-size: 22px;
    }


    .ck-product-lead {

        font-size: 16px;
    }


    .ck-product-visual {

        min-height: 290px;

        padding: 24px;
    }


    .ck-product-main-image {

        max-height: 245px;
    }


    .ck-product-nav-grid {

        grid-template-columns: 1fr;
    }


    .ck-product-section {

        padding-top: 48px;
    }


    .ck-product-section-title {

        font-size: 18px;
    }


    .ck-product-key-specs,
    .ck-product-selection-grid,
    .ck-product-supply-grid {

        grid-template-columns: 1fr;
    }

    .ck-product-related-head {
        align-items: flex-end;
        gap: 10px;
    }

    .ck-product-related-arrow {
        width: 34px;
        height: 34px;
    }

    .ck-product-related-card {
        flex-basis: 86%;
    }


    .ck-product-spec-row {

        grid-template-columns: 1fr;

        gap: 4px;
    }

}


/* =====================================================
   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--poclain_hydraulics img {
    display: block;
    width: auto;
    height: 30px;
    max-width: 132px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
}


.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;
}



/* =====================================================
   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;
    }

}


@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;
    }
}


/* Product page integrations */
.ck-product-request {
    font-family: inherit;
    cursor: pointer;
}

.ck-product-breadcrumbs a {
    overflow-wrap: anywhere;
}
