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

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

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

.k-cpm-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-cpm-content-wrapper {
    margin-top: 16px;
}

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

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

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

.k-cpm-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-condotel-book-now {
    margin-top: 16px;
}

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

.kanos-ai-support {
    margin-top: 16px;
    margin-bottom: 0px;
}

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

.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-cbpu-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-cbpu-wrapper {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translate(-50%, -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-cbpu-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 700px;
}

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

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

.k-cpbu-field label {
    display: flex;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.k-cpbu-note {
    font-weight: 400;
    color: #000;
    margin-left: 4px;
}

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

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

.k-cpbu-qty-field>label {
    margin-bottom: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

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

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

.k-cpbu-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-cpbu-total-price-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

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

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

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

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

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

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

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

.k-cpbu-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-cpbu-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-cpbu-submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(86, 171, 47, 0.3);
}

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

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

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

.k-cbpu-close:hover {
    color: #ff0000;
}

.k-cpbu-coupon-field label {
    margin-bottom: 8px;
}

.k-cpbu-coupon-field input[type="text"] {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    padding: 0 12px;
    outline: none;
}

@media (max-width: 768px) {
    .k-cbpu-inner {
        flex-direction: column;
        width: 100%;
    }

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

    .k-cpbu-right-wrapper {
        margin-top: 24px;
    }

    .k-cbpu-wrapper {
        width: 90%;
        max-width: 500px;
    }

    .k-cpbu-qty-field>label {
        flex: 0 0 60%;
        max-width: 60%;
    }
}