.k-tour-detail-mini-heading-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.k-tour-detail-mini-heading-wrapper:before {
    content: '';
    width: 4px;
    height: 36px;
    background: #FF9900;
    border-radius: 2px;
    z-index: 2;
}

.k-tour-detail-mini-heading-wrapper h2 {
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ff7f29;
    margin-bottom: -4px;
}

.k-tpm-wrapper {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}

.k-tpm-content-wrapper {
    margin-top: 16px;
}

.k-tpm-content-inner {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
}

.k-tpm-content-inner ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.k-tpm-content-inner li {
    position: relative;
    padding-left: 28px;
}

.k-tpm-content-inner li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url('/wp-content/uploads/2025/12/promotion.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.kanos-tour-book-now {
    margin-top: 16px;
}

.k-tbn-button {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    color: #fff;
    background: linear-gradient(135deg, #55A630 0%, #166534 100%);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.k-tbn-button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    border-radius: 10px;
}




.k-tbn-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #55A630 0%, #166534 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.k-tpbu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.k-tpbu-qty-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-tpbu-qty-field>label {
    margin-bottom: 0;
}

.k-tpbu-field label {
    display: flex;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    gap: 2px;
    align-items: baseline;
}

.k-field-required {
    color: #e53e3e;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

.k-tpbu-qty-field label {
    flex: 0 0 200px;
    max-width: 200px;
}

.k-tpbu-price-display {
    margin-left: 4px;
}

.k-tpbu-field input[type="text"],
.k-tpbu-field input[type="tel"],
.k-tpbu-field input[type="email"] {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    padding: 0 12px;
    outline: none;
}

.k-qty-control {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    width: 220px;
    height: 44px;
    border-radius: 10px;
    /* border: 1px solid #e2e2e2; */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);

}

.k-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #e9fee9;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.k-qty-control input[type="number"] {
    flex: 1;
    height: 44px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    appearance: textfield;
    -moz-appearance: textfield;
    padding: 0 !important;
}

.k-qty-control input[type="number"]::-webkit-outer-spin-button,
.k-qty-control input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.k-tbpu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.k-tbpu-wrapper {
    display: none;
    z-index: 1000;
    position: fixed;
    top: auto;
    left: 50%;
    bottom: 10vh;
    height: 80vh;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateX(-50%);
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.k-tpbu-radio-group {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.k-tpbu-radio-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    min-width: 0;
    line-height: 1;
}

.k-tpbu-radio-label input[type="radio"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    align-self: center;
}

.k-tpbu-radio-label span {
    display: block;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.k-tbpu-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 700px;
}

.k-tpbu-left-wrapper,
.k-tpbu-right-wrapper {
    flex: 0 0 48%;
    max-width: 48%;
}

.k-tpbu-right-inner {
    padding: 0;
}

.k-tpbu-tour-name-wrapper h4 {
    font-size: 20px;
    line-height: 28px;
    color: #166534;
}

.k-tpbu-tour-name-mobile {
    display: none;
}

.k-tpbu-total-price-wrapper {
    margin: 24px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #e9fee9;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.k-tpbu-total-price-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.k-tpbu-total-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 8px;
    border-radius: 6px;
    background: #ffffff;
}

.k-tpbu-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 3px 0;
    color: #000;
}

.k-tpbu-total-row-grand {
    font-size: 18px;
    font-weight: 700;
}

.k-tpbu-total-row-grand .k-tpbu-total-value {
    font-size: 18px;
}

.k-tpbu-total-row-sub {
    font-weight: 500;
}

.k-tpbu-total-label {
    white-space: nowrap;
}

.k-tpbu-total-value {
    font-weight: 600;
}

.k-tpbu-submit-wrapper {
    margin-top: 12px;
}

.k-tpbu-submit-button {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #55A630 0%, #166534 100%);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.k-tpbu-submit-button:hover {
    background: linear-gradient(135deg, #55A630 0%, #166534 100%);
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(86, 171, 47, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.k-tpbu-submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(86, 171, 47, 0.3);
}

.k-tpbu-submit-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.k-tpbu-submit-text {
    font-size: 1em;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.k-tpbu-submit-button:hover .k-tpbu-submit-icon {
    transform: translateX(4px) rotate(-10deg);
}

.k-tbpu-close {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    color: #555;
    z-index: 1001;
    transition: color 0.3s;
}

.k-aisp-wrapper {
    position: sticky;
    top: 20px;
    width: 100%;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.k-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    /* background: linear-gradient(135deg, #afafaf 40%, #afafaf 100%); */
    background: #e9e9e9;
    border-radius: 12px 12px 0 0;
    height: 68px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e2e2;
}

.k-chat-avatar {
    flex-shrink: 0;
}

.k-chat-avatar img {
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.k-chat-info {
    flex-grow: 1;
    min-width: 0;
}

.k-chat-name {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #55a630;
    display: block;
    transition: all 0.3s;
}

.k-chat-interface.expanded .k-chat-name {
    font-size: 18px;
}

.k-chat-status {
    font-size: 12px;
    color: #000;
    display: none;
    margin-top: 2px;
}

.k-chat-interface.expanded .k-chat-status {
    display: block;
}

.k-chat-status:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #55a630;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.k-chat-messages {
    height: 420px;
    overflow-y: auto;
    padding: 16px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fdfdfd;
}

.k-chat-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.k-message-ai {
    align-self: flex-start;
    background: #f0f2f5;
    color: #000;
    border-top-left-radius: 2px;
}

.k-message-user {
    align-self: flex-end;
    background: #55a630;
    color: #fff;
    border-top-right-radius: 2px;
}

.k-chat-input-area {
    padding: 12px;
    border-top: 1px solid #e2e2e2;
    display: flex;
    gap: 8px;
    background: #fff;
    align-items: center;
}

.k-chat-input {
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0 16px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
}

.k-chat-input:focus {
    border-color: #55a630;
}

.k-chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #55a630;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.k-chat-send-btn:hover {
    background: #468c28;
}

.k-chat-send-btn svg {
    margin-left: -2px;
    /* Center visual balance */
}

.k-typing-dots {
    display: inline-block;
    margin-left: 2px;
}

.k-typing-dots span {
    animation: k-dot-wave 1.4s infinite;
    animation-fill-mode: both;
    display: inline-block;
}

.k-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.k-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes k-dot-wave {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    30% {
        transform: translateY(-8px);
        opacity: 0.7;
    }
}

.k-tbn-promo-toggle {
    display: none;
}

.k-mbsb-promo-inner {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    pointer-events: none;
}

.k-mbsb-primary-in {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
    margin-top: 6px;
}

.k-mbsb-ic-promo,
.k-mbsb-ic-book {
    display: block;
    flex-shrink: 0;
    overflow: visible;
    width: 1em;
    height: 1em;
}

.k-tpbu-radio-group .k-tpbu-radio-label {
    align-items: center;
    gap: 8px;
}

@media (max-width: 1025px) {
    .k-stsb-book-dock .k-tbn-button {
        font-size: 21px;
        line-height: 22px;
    }

    .k-tbpu-overlay {
        z-index: 2147483646 !important;
    }

    .k-tbpu-wrapper {
        width: calc(100% - 32px);
        max-width: 800px;
        height: auto;
        max-height: 86vh;
        padding: 0;
        overflow: hidden;
        border: none;
        border-radius: 14px;
        left: 50%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2147483647 !important;
    }

    .k-tbpu-head {
        position: sticky;
        top: 0;
        z-index: 4;
        height: 48px;
        flex-shrink: 0;
        margin: 0;
        background: linear-gradient(135deg, #55A630 0%, #166534 100%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px 14px 0 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 52px;
    }

    .k-tbpu-title {
        position: static;
        left: auto;
        transform: none;
        max-width: 100%;
        text-align: center;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .k-tbpu-close {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f3f4f6;
        color: #1f2937;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: background 0.2s;
    }

    .k-tbpu-close:hover {
        background: #e5e7eb;
    }

    .k-tbpu-close svg {
        width: 18px;
        height: 18px;
    }

    .k-tbpu-inner {
        width: 100%;
        padding: 16px 20px 20px;
        max-height: calc(86vh - 48px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
        box-sizing: border-box;
    }

    .k-tbpu-inner::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .k-tpbu-radio-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .k-tpbu-radio-label {
        align-items: center;
        gap: 8px;
        padding: 10px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        font-size: 13px;
        line-height: 1;
    }

    .k-tpbu-qty-field {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .k-tpbu-qty-field label {
        flex: 0 0 auto;
        max-width: 100%;
        margin-bottom: 0;
    }

    .k-qty-control {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        height: 42px;
        border-radius: 10px;
    }

    .k-qty-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .k-qty-control input[type="number"] {
        height: 42px;
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .kanos-single-tour-side-bar,
    .k-stsb-wrapper,
    .k-stsb-inner {
        position: relative;
        z-index: 2147482500 !important;
    }

    .k-stsb-book-dock {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2147482500 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 0 calc(10px + env(safe-area-inset-bottom, 0px));
        box-sizing: border-box;
        pointer-events: none;
    }

    .k-stsb-book-dock > * {
        pointer-events: auto;
    }

    .k-stsb-book-dock .kanos-tour-promotion {
        order: 0;
        flex: 0 1 auto;
        min-height: 0;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        border-radius: 22px;
        pointer-events: none;
        width: 90%;
        max-width: 420px;
        align-self: center;
        margin-bottom: 0;
        transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease, visibility 0.22s ease;
    }

    .k-stsb-book-dock.k-stsb-promo-open .kanos-tour-promotion {
        position: relative;
        z-index: 2147483647 !important;
        margin-bottom: 10px;
        max-height: min(52vh, 420px);
        opacity: 1;
        visibility: visible;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), 0 8px 24px rgba(0, 0, 0, 0.14);
    }

    .k-stsb-book-dock.k-stsb-promo-open {
        z-index: 2147483647 !important;
    }

    .k-stsb-book-dock .k-tpm-wrapper {
        margin: 0;
        padding: 16px 24px 16px;
        border-radius: 22px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.96);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        position: relative;
    }

    .k-stsb-book-dock .k-tpm-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        border: none;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #3f3f46;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
        padding: 0;
        z-index: 2;
    }

    .k-stsb-book-dock .k-tpm-close svg {
        width: 16px;
        height: 16px;
    }

    .k-stsb-book-dock .kanos-tour-book-now.k-mbsb {
        order: 1;
        margin: 0;
        flex-shrink: 0;
        width: 90%;
        max-width: 420px;
        position: relative;
        z-index: 2147482500 !important;
        box-sizing: border-box;
        border-radius: 40px;
        background: rgba(126, 126, 126, 0.3);
        -webkit-backdrop-filter: blur(10.5px) !important;
        backdrop-filter: blur(10.5px) !important;
        box-shadow: var(
            --k-mbsb-island-shadow,
            0 24px 64px rgba(0, 0, 0, 0.16),
            0 12px 30px rgba(0, 0, 0, 0.12),
            0 4px 14px rgba(0, 0, 0, 0.09),
            0 1px 3px rgba(0, 0, 0, 0.06)
        );
        border: 1px solid var(--k-mbsb-glass-border, rgba(255, 255, 255, 0.5));
        overflow: hidden;
        --k-mbsb-island-pad-y: 3px;
        --k-mbsb-island-pad-x: 4px;
        --k-mbsb-promo-basis: 44%;
        --k-mbsb-bar-font: 14px;
        --k-mbsb-icon-size: 1.22em;
        --k-mbsb-primary: linear-gradient(135deg, #55A630 0%, #166534 100%);
        --k-mbsb-primary-hover: linear-gradient(135deg, #61b835 0%, #1b7440 100%);
        --k-mbsb-primary-active: linear-gradient(135deg, #4f9d2d 0%, #145a2d 100%);
        --k-mbsb-promo-label: #ffffff;
        --k-mbsb-gift: #ffffff;
        --k-mbsb-divider: rgba(60, 60, 67, 0.12);
    }

    .k-stsb-book-dock .kanos-tour-book-now.k-mbsb::before {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: 40px;
        z-index: 2;
        background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
        background-size: 400%;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        filter: blur(2px);
        animation: glowing 20s linear infinite;
        opacity: 1;
        pointer-events: none;
    }

    .k-stsb-book-dock .kanos-tour-book-now.k-mbsb::after {
        display: block;
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 40px;
        z-index: 0;
        background: rgba(126, 126, 126, 0.3);
        pointer-events: none;
    }

    .k-stsb-book-dock .kanos-tour-book-now.k-mbsb .k-tbn-wrapper {
        margin: 0;
        padding: var(--k-mbsb-island-pad-y) var(--k-mbsb-island-pad-x);
        overflow: visible;
        box-sizing: border-box;
        border-radius: inherit;
        position: relative;
        z-index: 1;
    }

    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        min-height: 40px;
        position: relative;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        font-size: var(--k-mbsb-bar-font);
        line-height: 1.3;
    }

    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row::before,
    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row::after {
        display: none !important;
    }

    .k-stsb-book-dock .k-tbn-promo-toggle.k-mbsb-btn-promo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex: 0 0 var(--k-mbsb-promo-basis);
        width: auto;
        align-self: center;
        min-height: 40px;
        height: auto;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 3px 7px 3px 4px;
        margin: 0;
        box-sizing: border-box;
        cursor: pointer;
        font-size: inherit;
        line-height: inherit;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.01em;
        text-align: center;
        color: var(--k-mbsb-promo-label);
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transition: opacity 0.2s ease, filter 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row svg {
        shape-rendering: geometricPrecision;
    }

    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row .k-mbsb-ic-promo {
        width: var(--k-mbsb-icon-size);
        height: var(--k-mbsb-icon-size);
        color: var(--k-mbsb-gift);
    }

    .k-stsb-book-dock .k-mbsb-promo-txt {
        display: inline;
        max-width: 100%;
        white-space: nowrap;
        font-weight: 700;
    }

    .k-stsb-book-dock .k-tbn-promo-toggle.k-mbsb-btn-promo:hover {
        filter: brightness(0.92);
    }

    .k-stsb-book-dock .k-tbn-promo-toggle.k-mbsb-btn-promo:active {
        opacity: 0.85;
    }

    .k-stsb-book-dock.k-stsb-promo-open .k-tbn-promo-toggle.k-mbsb-btn-promo {
        filter: none;
        opacity: 1;
        background: rgba(1, 105, 74, 0.06);
    }

    .k-stsb-book-dock .k-tbn-button.k-mbsb-btn-primary {
        position: relative;
        z-index: 1;
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
        width: auto;
        align-self: center;
        min-height: 40px;
        height: auto;
        padding: 5px 10px;
        margin: 0 0 0 6px;
        box-sizing: border-box;
        border-radius: 999px !important;
        font-size: inherit;
        line-height: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        font-weight: 700;
        letter-spacing: normal;
        text-shadow: none;
        background: linear-gradient(135deg, #55A630 0%, #166534 100%) !important;
        border: none !important;
        box-shadow: 0 2px 10px rgba(1, 105, 74, 0.3);
        cursor: pointer;
        transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .k-stsb-book-dock .k-mbsb-primary-in {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        margin-top: unset;
    }

    .k-stsb-book-dock .k-mbsb-primary-txt {
        font-size: 1em;
        line-height: inherit;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: inherit;
    }

    .k-stsb-book-dock .k-tbn-inner.k-mbsb-row .k-mbsb-ic-book {
        width: var(--k-mbsb-icon-size);
        height: var(--k-mbsb-icon-size);
        color: #fff;
    }

    .k-stsb-book-dock .k-tbn-button.k-mbsb-btn-primary:hover {
        transform: scale(1.02);
        background: linear-gradient(135deg, #61b835 0%, #1b7440 100%) !important;
        box-shadow: 0 4px 18px rgba(1, 105, 74, 0.4);
    }

    .k-stsb-book-dock .k-tbn-button.k-mbsb-btn-primary:active {
        transform: scale(0.99);
        background: linear-gradient(135deg, #4f9d2d 0%, #145a2d 100%) !important;
    }

    .k-stsb-book-dock .k-tbn-button.k-mbsb-btn-primary::before {
        display: none !important;
    }

    .k-stsb-book-dock .k-tbn-button.k-mbsb-btn-primary::after {
        display: none !important;
    }

    .k-stsb-book-dock .k-tour-detail-mini-heading-wrapper {
        margin-bottom: 8px;
    }

    .k-stsb-book-dock .k-tour-detail-mini-heading-wrapper h2 {
        font-size: 18px;
        line-height: 22px;
    }

    .k-stsb-book-dock .k-tpm-content-wrapper {
        margin-top: 8px;
    }

    .k-stsb-book-dock .k-tpm-content-inner {
        font-size: 15px;
        line-height: 24px;
    }

    .k-tbpu-overlay {
        z-index: 2147483646 !important;
        background-color: rgba(0, 0, 0, 0.52);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .k-tbpu-wrapper {
        z-index: 2147483647 !important;
        top: auto;
        left: 50%;
        bottom: 10vh;
        transform: translateX(-50%);
        width: calc(100% - 16px);
        max-width: 640px;
        height: 70vh;
        max-height: 70vh;
        padding: 0;
        border-radius: 14px;
        border: none;
        background: #ffffff;
        background-clip: padding-box;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), 0 6px 18px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
        overflow: hidden;
    }

    .k-tbpu-head {
        position: sticky;
        top: 0;
        z-index: 4;
        height: 48px;
        margin: 0;
        background: linear-gradient(135deg, #55A630 0%, #166534 100%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
    }

    .k-tbpu-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 120px);
        text-align: center;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .k-tbpu-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-height: calc(70vh - 96px);
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 10px 24px 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #55A630 transparent;
    }

    .k-tbpu-inner::-webkit-scrollbar {
        width: 4px;
        height: 0;
    }

    .k-tbpu-inner::-webkit-scrollbar-track {
        background: transparent;
    }

    .k-tbpu-inner::-webkit-scrollbar-thumb {
        background: #55A630;
        border-radius: 4px;
    }

    .k-tpbu-left-wrapper,
    .k-tpbu-right-wrapper {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .k-tpbu-left-wrapper {
        min-width: 100%;
    }

    .k-tpbu-right-wrapper {
        position: static;
        z-index: auto;
        margin-top: 0;
    }

    .k-tpbu-right-inner {
        padding: 6px 0 0;
        background: transparent;
    }

    .k-tbpu-close {
        position: absolute;
        top: 7px;
        right: 10px;
        transform: none;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f3f4f6;
        color: #1f2937;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .k-tbpu-close svg {
        width: 18px;
        height: 18px;
    }

    .k-tpbu-form {
        gap: 14px;
        min-height: 100%;
        padding-bottom: 8px;
    }

    .k-tpbu-field label {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 5px;
    }

    .k-tpbu-field input[type="text"],
    .k-tpbu-field input[type="tel"],
    .k-tpbu-field input[type="email"] {
        height: 42px;
        padding: 0 10px;
        border-radius: 10px;
    }

    .k-tpbu-qty-field {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .k-tpbu-qty-field label {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .k-qty-control {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        height: 42px;
        border-radius: 10px;
    }

    .k-qty-btn {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .k-qty-control input[type="number"] {
        height: 42px;
        font-size: 17px;
    }

    .k-tpbu-radio-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .k-tpbu-radio-label {
        align-items: center;
        gap: 8px;
        padding: 10px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        font-size: 13px;
        line-height: 1;
    }

    .k-tpbu-tour-name-wrapper h4 {
        font-size: 17px;
        line-height: 23px;
        margin: 0 0 8px;
    }

    .k-tpbu-tour-name-mobile {
        display: block;
        margin: 0 0 10px;
        padding: 8px 10px;
        border-radius: 10px;
        background: #f0f9f2;
        border: 1px solid #d7eed9;
    }

    .k-tpbu-tour-name-mobile h4 {
        margin: 0;
        font-size: 17px;
        line-height: 23px;
        font-weight: 700;
        color: #166534;
    }

    .k-tpbu-right-wrapper .k-tpbu-tour-name-wrapper {
        display: none;
    }

    .k-tpbu-total-price-wrapper {
        margin: 10px 0 10px;
        padding: 10px 10px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .k-tpbu-total-row {
        font-size: 15px;
    }

    .k-tpbu-total-row-grand,
    .k-tpbu-total-row-grand .k-tpbu-total-value {
        font-size: 17px;
    }

    .k-tpbu-coupon-field {
        margin-top: 24px !important;
    }

    .k-tpbu-submit-wrapper {
        margin-top: 0;
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: max(10px, env(safe-area-inset-bottom, 0px));
        z-index: 3;
        padding: 0;
        background: transparent;
    }

    .k-tpbu-submit-button {
        height: 46px;
        border-radius: 10px;
        font-size: 16px;
        gap: 8px;
        letter-spacing: 0.04em;
    }
}

.k-stsb-book-dock .k-tpm-close {
    display: flex !important;
}

@media (max-width: 767px) {
    .k-stsb-book-dock .k-tpm-close {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .k-stsb-book-dock .k-mbsb-ic-book {
        width: 24px;
        height: 24px;
    }

    .k-stsb-book-dock {
        display: contents;
    }

    .k-stsb-book-dock .kanos-tour-promotion {
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }

    .k-tbn-promo-toggle {
        display: none !important;
    }

    .k-stsb-book-dock .k-tbn-inner {
        display: block;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
    }

    .k-stsb-book-dock .k-tbn-button {
        width: 100%;
        height: 60px;
        border-radius: 12px;
        font-size: 28px;
        line-height: 28px;
    }

    .k-stsb-book-dock .k-tbn-button:before {
        border-radius: 10px;
    }

    .k-stsb-book-dock .k-tbn-button:after {
        border-radius: 10px;
    }
}

@media (min-width: 1026px) {
    .k-tbpu-wrapper {
        width: min(94vw, 860px);
        height: auto;
        max-height: 88vh;
        overflow: hidden;
        padding: 0;
        border: none;
        border-radius: 14px;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .k-tbpu-wrapper.k-tbpu-open {
        display: flex !important;
        flex-direction: column;
    }

    .k-tbpu-head {
        flex-shrink: 0;
        position: relative;
        top: auto;
        z-index: 4;
        height: 52px;
        margin: 0;
        background: linear-gradient(135deg, #55A630 0%, #166534 100%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px 14px 0 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 52px 0 52px;
    }

    .k-tbpu-title {
        position: static;
        left: auto;
        transform: none;
        max-width: 100%;
        text-align: center;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .k-tbpu-close {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f3f4f6;
        color: #1f2937;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: background 0.2s;
    }

    .k-tbpu-close:hover {
        background: #e5e7eb;
    }

    .k-tbpu-close svg {
        width: 18px;
        height: 18px;
    }

    .k-tbpu-inner {
        flex: 1 1 auto;
        width: 100%;
        gap: 20px;
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 24px 24px;
        scrollbar-width: none;
    }

    .k-tbpu-inner::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .k-tpbu-left-wrapper,
    .k-tpbu-right-wrapper {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .k-tpbu-radio-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .k-tpbu-radio-label {
        min-height: 44px;
        padding: 10px 12px;
        gap: 8px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        align-items: center;
        line-height: 1;
    }

    .k-tpbu-qty-field {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 220px;
        align-items: center;
        column-gap: 14px;
    }

    .k-tpbu-qty-field label {
        flex: 0 0 auto;
        max-width: none;
        margin-bottom: 0;
    }

    .k-qty-control {
        width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
    }

    .k-tpbu-submit-button {
        height: 52px;
    }
}
