@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --input-bg-color: #ffffff;
}

body {
    background: #ffffff !important;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --theme-color: #059941;
}

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
}

.form {
    --input-text-color: #2b2323;
    --input-bg-color: #ffffff;
    --focus-input-bg-color: transparent;
    --text-color: #949faa;
    --active-color: #059941;
    --width-of-input: 700px;
    --inline-padding-of-input: 1.2em;
    --gap: 0.9rem;
}

.form {
    font-size: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: var(--width-of-input);
    position: relative;
    isolation: isolate;
}

.fancy-bg {
    position: absolute;
    width: 100%;
    inset: 0;
    background: var(--input-bg-color);
    border-radius: 30px;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

label {
    width: 100%;
    padding: 0.8em;
    height: 40px;
    padding-inline: var(--inline-padding-of-input);
    display: flex;
    align-items: center;
}

.search,
.close-btn {
    position: absolute;
}

.search {
    fill: var(--text-color);
    left: var(--inline-padding-of-input);
}

.search svg {
    width: 25px;
    display: block;
}

.close-btn {
    border: none;
    right: var(--inline-padding-of-input);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0.1em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--active-color);
    opacity: 0;
    visibility: hidden;
}

.input {
    color: var(--input-text-color);
    width: 100%;
    margin-inline: min(2em, calc(var(--inline-padding-of-input) + var(--gap)));
    background: var(--input-bg-color);
    border: none;
}

.input:focus {
    outline: none;
}

.input::placeholder {
    color: var(--text-color)
}

/* input background change in focus */
.input:focus~.fancy-bg {
    border: 1px solid var(--active-color);
    background: var(--focus-input-bg-color);
}

/* search icon color change in focus */
.input:focus~.search {
    fill: var(--active-color);
}

/* showing close button when typing */
.input:valid~.close-btn {
    opacity: 1;
    visibility: visible;
}

/* this is for the default background in input,when selecting autofill options -- you can remove this code if you do not want to override the browser style.  */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}



.category::-webkit-scrollbar {
    display: none;
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .btn-category {
    width: 100px;
    height: 40px;
    border-radius: 50px;
    margin: 5px;
    display: inline-block;  
    border: 1px solid rgb(134, 128, 45);
} */
.banner {
    margin: auto;
    width: 95%;
    scroll-margin-top: 200px;

}

.banner img {
    width: 100%;
    border-radius: 7px;
}

.menu-section {
    width: 95%;
    margin: auto;
}

.card {
    border-radius: 7px;
    /* border: 0.1px solid rgb(223, 223, 223); */
    border: 0;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* .card-body{
  
} */
.image-box {
    width: 100%;
    height: 180px;
    /* Adjust this height to your liking */
    overflow: hidden;
    background-color: #f8f9fa;
    /* Placeholder color while loading */
    position: relative;
}

/* 2. Make the image fill the box without distorting */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This is the magic property */
    display: block;
}

.image {
    width: 100%;
    position: relative;
}

.category {
    width: 95%;
    margin: auto;
    overflow: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.category ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    list-style: none;
}

.category ul li {
    margin: 0 10px;
}

.category ul li a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ececec;
    color: rgb(31, 29, 29);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 1s ease, color 1s ease, border-color 1s ease;
    white-space: nowrap;
    border: #ffffff 1px solid;
    font-weight: 700;
}

.category ul li a.active {
    background-color: white;
    /* border-color: #059941; */
    border-color: var(--theme-color);
    /* transition: 1s ease; */
}

.menu-section {
    scroll-margin-top: 190px;
}

.footer {
    width: 100%;
    height: 120px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: #b4a629; */
    border: 1px solid var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.footer a {
    color: var(--theme-color);
    text-decoration: none;
}

.float-right {
    float: right;
}

/* .btn-add{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    margin: 5px;
    display: flex;  
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-size: 20px;
    border: none;
} */
@media screen and (max-width: 1000px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .banner {
        width: 100%;
    }

    .menu-section {
        width: 100%;
    }

    .search-container {
        width: 100%;
    }

    .category {
        width: 100%;
    }

}


.discount-box {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgb(207, 159, 99);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    border-radius: 50px;
    z-index: 10;
    bottom: 5px;
    right: 5px;
}

.card-body {
    padding: 10px;
    position: relative;
}

.popular-tag {
    position: absolute;
    padding: 5px;
    height: 20px;
    background-color: rgb(255, 189, 6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    border-radius: 10px;
    z-index: 10;
    top: 5px;
    left: 5px;
}
.card-title {
    font-size: 1rem;
    margin-top: 22px;
    margin-bottom: 0 !important;
    line-height: 1.2em;
    overflow: hidden;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1;
}
.main-nav {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* smoother easing */
    height: 100px;
}

.main-nav.shrink {
    height: 70px !important;
}

/* ========================================= SWAL CUSTOMER INFO ========================================= */
.swal-info-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0 0 12px;
}

.swal-customer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.swal-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.swal-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #e9f7ee;
    color: var(--theme-color);
    font-size: 14px;
}

.swal-info-text {
    min-width: 0;
    flex: 1;
}

.swal-info-text small {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.swal-info-text strong {
    display: block;
    font-size: 14px;
    color: #222;
    word-break: break-word;
}

.offcanvas-menu-link {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.offcanvas-menu-link i {
    color: var(--theme-color);
}

.offcanvas-menu-link:hover {
    background: #e9f7ee;
    color: var(--theme-color);
}

.order-history-total-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    margin-left: 4px;
    border-radius: 50%;
    background: lightcoral;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    vertical-align: middle;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: var(--theme-color);
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-icon-btn:hover {
    background: #e9f7ee;
    color: var(--theme-color);
    transform: translateY(-1px);
}

.nav-icon-btn:active {
    transform: scale(0.95);
}

#siteLogo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* smoother easing */
}

#siteLogo.shrink {
    width: 100px !important;
}

#categoryBar ul li a {
    transition: padding 0.3s ease, font-size 0.3s ease;
}

#categoryBar ul li {
    transition: margin 0.3s ease;
}

#categoryBar.shrink ul li a {
    padding: 6px 14px;
    font-size: 13px;
}

#categoryBar.shrink ul li {
    margin: 0 6px;
}


.btn-add {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 4px 5px;
    background-color: white;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid black;
    background: white;
    color: black;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 5px;
}

#qty-value {
    min-width: 20px;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 375px) {

    .btn-add,
    .qty-btn {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.add-item-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    height: 65px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 10px;
    transform: 0.5s ease-in-out;
    cursor: pointer;
}

/* @media screen and (max-width: 1242px) {
    .add-item-bar{
      width: 95%;
      
    }
} */
.add-items {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: var(--theme-color);
    border-radius: 50px;
}

.ordering,
.item-count,
.item-text,
.total-money {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.fa-cart-shopping {
    color: white;
    font-size: 20px;
    /* margin-right: 10px; */
}

.aa {
    position: relative;
}

.text-price {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.order-summary {
    width: 100%;
}

.items-detail {
    width: 100%;
}

.box-item {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 10px;
    margin-top: 5px;
    /* padding: 10px; */
}

.payment-summary {
    width: 100%;
    height: 80px;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 10px;
}

.add-to-cart-bar {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    border-radius: 10px;
    /* margin-top: 10px; */
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.payment-method {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #f8f9fa; */
    border-radius: 10px;
    /* margin-top: 10px; */
    /* color: #059941; */
    padding: 5px 20px;
    border: 1px solid var(--theme-color);
}

.sub-total-bar {
    width: 90%;
    color: black;
    margin: auto;
}

.checkout-footer {
    width: 90%;
    margin: auto;
}

.fa-chevron-left {
    color: var(--theme-color);
}

@media screen and (max-width: 700px) {

    /* .menu-text{
      display: none;
    } */
    .add-item-bar {
        width: 100%;

    }

    .sub-total-bar {
        width: 100%;
    }

    /* .checkout{
      width: 88%;
    } */

}

.remove-cart {
    border: none;
    background-color: white;
}

.back_to_menu {
    width: 5%;
}

.checkout-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 10px;
    transform: 0.5s ease-in-out;
    cursor: pointer;
}

.box-arrow2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.sub-total-bar {
    width: 90%;
    color: black;
    margin: auto;
}

.checkout-footer {
    width: 90%;
    margin: auto;
}

.checkout {
    width: 95%;
    height: 40px;
    border-radius: 30px;
    background-color: var(--theme-color);
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

/* Small devices (phones) */
@media (max-width: 575.98px) {
    .checkout {
        width: 86%;
        /* font-size: 16px;
        height: 36px; */
    }

    .box-arrow2 {
        width: 40px;
        height: 40px;
    }

    .sub-total-bar {
        width: 95%;

    }

    .checkout-footer {
        width: 95%;

    }
}

/* Medium devices (tablets) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .checkout {
        width: 92%;
        /* font-size: 18px;
        height: 38px; */
    }

    .box-arrow2 {
        width: 40px;
        height: 40px;
    }
}
/* loading */
#loadingOverlay {
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(255, 255, 255, 0.8);
    display: none;

    /* CENTERING */
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid #059941;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#loadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: none;

    /* CENTER */
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.loading-img {
    width: 80px;
    /* adjust size */
    height: auto;
}
/* search loader */
.search-wrapper {
    position: relative;
    /* width: 100% */
}

.input-loader {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    /* ✅ FIX */
    align-items: center;
    justify-content: center;
    width: 28px;
    /* ✅ GIVE SPACE */
    height: 28px;
    z-index: 10;
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #ccc;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.input {
    padding-right: 52px;
}
.hidden{
    display: none !important;
}

/* payment screen */
.payment-box {
    width: 420px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.payment-item {
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.payment-header {
    padding: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.payment-body {
    display: none;
    padding: 14px;
    border-top: 1px solid #eee;
}

.payment-body label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.payment-body input,
.payment-body select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.arrow {
    transition: 0.3s;
}

.payment-item.active .arrow {
    transform: rotate(90deg);
}
.name{
    font-size: 13px !important;
}
/* customer cart */
.customer-card {
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 20px;
    padding: 10px;
    /* max-width: 500px; */
    /* Adjust based on your layout */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.delivery-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.delivery-label {
    font-weight: 500;
}

.btn-add-details {
    background: white;
    border: 1.5px solid #000;
    padding: 6px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add-details:hover {
    background: #f8f8f8;
}
.form-control{
    border-radius: 10px !important;
}
/* validation */
.was-validated .form-control {
    padding-right: calc(1.5em + 0.75rem);
    /* Ensures space for the icon */
    background-position: right calc(0.75em + 0.1875rem) center;
    /* Centers icon in pill shape */
}
#add-delivery{
    border-radius: 12px;
}
/* payment modal */
.payment-modal {
    border-radius: 16px;
    padding: 8px;
}

.payment-item {
    border: none;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #d3d3d308;
}

.payment-item:hover {
    border-color: #0d6efd;
    background: #f8fbff;
}

.pay-icon {
    width: 55px;
    height: 55px;
    margin-right: 14px;
    object-fit: contain;
    /* border-radius: 14px; */
}

.pay-title {
    font-size: 18px;
    font-weight: 600;
}

.arrow {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-left: auto !important;
    background-color: #d3d3d359;
    padding: 0px 12px 2.5px 12px;
    border-radius: 5px;
    color: #484848;
}

.card-icons img {
    height: 20px;
    margin-right: 8px;
}
.btn_disabled{
    opacity: 0.5 !important;
}
/* category header */
.main-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-category .category-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(5, 153, 65, 0.25);
}

.main-category h5 {
    font-weight: 700;
    color: #1f2a24;
    letter-spacing: .2px;
    white-space: nowrap;
    font-size: 1.15rem;
}

.main-category .category-line {
    flex: 1 1 auto;
    height: 3px;
    min-width: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-color) 0%, rgba(5, 153, 65, 0.15) 75%, transparent 100%);
}

@media screen and (max-width: 480px) {
    .main-category .category-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-category h5 {
        font-size: 1rem;
    }
}
#modalDescription{
    text-align: left !important;
}
.product_details{
    display: none !important;
}
/* visibilty none */
form#aba_merchant_request {
    visibility: hidden;
    display: none;
}
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th:first-child {
    border-top-left-radius: 0.5rem;
}

.table thead th:last-child {
    border-top-right-radius: 0.5rem;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.5rem;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
}

.footer-payment {
    /* background: #f8f9fa; */
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.payment-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1);
}

#clearHistoryBtn {
    border-radius: 20px;
    transition: all 0.25s ease;
}

#clearHistoryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.2);
}

/* Large Desktop */
@media (min-width: 1200px) {
    /* Desktop styles */
    .image-box {
            height: 280px !important;
        }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    /* Large desktop styles */
    .image-box {
            height: 280px !important;
        }
}

/* Ultra Wide Desktop */
@media (min-width: 1600px) {
    /* Very large screen styles */
    .image-box {
            height: 280px !important;
        }
}

.messenger-button {
    bottom: 115px !important;
}


/* =========================================================
   PAYMENT METHOD LIST
   ========================================================= */

.checkout-payment-list {
    width: 100%;
}


/* =========================================================
   PAYMENT OPTION
   Use unique class so existing .payment-method CSS
   does not interfere.
   ========================================================= */

.checkout-payment-option {
    width: 100% !important;
    height: auto !important;

    display: block !important;

    position: relative;

    margin: 0 0 10px 0 !important;

    padding: 0 !important;

    cursor: pointer;

    border: 0 !important;

    border-radius: 0 !important;

    background: transparent !important;

    color: inherit !important;
}


/* Hide native radio */

.checkout-payment-option>input[type="radio"] {
    position: absolute;

    opacity: 0;

    width: 1px;
    height: 1px;

    pointer-events: none;
}


/* =========================================================
   PAYMENT BOX
   ========================================================= */

.checkout-payment-inner {

    width: 100%;
    min-height: 70px;

    box-sizing: border-box;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    padding: 8px 15px !important;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    background-color: #fff;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Hover */

.checkout-payment-option:hover .checkout-payment-inner {
    border-color: var(--theme-color);
}


/* Selected */

.checkout-payment-option>input[type="radio"]:checked+.checkout-payment-inner {

    border-color: var(--theme-color);

    background-color: #fff;

    box-shadow: 0 0 0 1px var(--theme-color);
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.checkout-payment-info {

    display: flex;

    align-items: center;

    min-width: 0;
}


/* =========================================================
   ABA KHQR ICON
   ========================================================= */

.checkout-payment-icon {

    width: 48px !important;
    height: 48px !important;

    min-width: 48px;

    object-fit: contain;

    margin-right: 12px;
}


/* =========================================================
   CASH ICON
   ========================================================= */

.checkout-cash-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 12px;

    border-radius: 8px;

    background: #f5f5f5;
}


.checkout-cash-icon span {

    font-size: 26px;

    line-height: 1;
}


/* =========================================================
   TEXT
   ========================================================= */

.checkout-payment-text {

    min-width: 0;
}


.checkout-payment-title {

    font-size: 15px;

    font-weight: 600;

    line-height: 20px;

    color: #222;
}


.checkout-payment-text small {

    display: block;

    margin-top: 2px;

    font-size: 12px;

    line-height: 18px;

    color: #888;
}


/* =========================================================
   RADIO INDICATOR
   ========================================================= */

.checkout-payment-radio {

    width: 20px;
    height: 20px;

    min-width: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1.5px solid #cfcfcf;

    border-radius: 50%;

    margin-left: 10px;
}


/* Selected radio */

.checkout-payment-option>input[type="radio"]:checked+.checkout-payment-inner .checkout-payment-radio {

    border-color: var(--theme-color);

    background-color: var(--theme-color);
}


/* Radio dot */

.checkout-payment-radio span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background-color: transparent;
}


.checkout-payment-option>input[type="radio"]:checked+.checkout-payment-inner .checkout-payment-radio span {

    background-color: #fff;
}

/* =====================================================
   CHECKOUT PAYMENT SUMMARY
   ===================================================== */

.checkout-payment-summary {

    width: 100%;

    min-height: 80px;

    box-sizing: border-box;

    display: flex !important;

    align-items: stretch !important;

    justify-content: space-between !important;

    gap: 15px;

    padding: 10px !important;
}


/* =====================================================
   LEFT SIDE
   ===================================================== */

.checkout-summary-info {

    flex: 1 1 auto;

    min-width: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 5px 10px;
}


.checkout-summary-title {

    margin-bottom: 7px;

    font-size: 15px;

    font-weight: 600;

    line-height: 20px;

    color: #222;
}


.checkout-summary-total {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.checkout-summary-total span {

    font-size: 13px;

    color: #888;

    white-space: nowrap;
}


.checkout-total-price {

    font-size: 21px;

    font-weight: 700;

    color: #222;

    white-space: nowrap;
}


/* =====================================================
   RIGHT SIDE
   ===================================================== */

.checkout-summary-action {

    width: 280px;

    min-width: 280px;

    display: flex;

    align-items: stretch;
}


/* =====================================================
   PAY BUTTON
   ===================================================== */

.checkout-pay-button {

    width: 100% !important;

    min-height: 60px;

    margin: 0 !important;

    padding: 10px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 8px;

    background-color: var(--theme-color);

    color: #fff;

    font-size: 17px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        opacity 0.2s ease,
        transform 0.1s ease;
}


.checkout-pay-button:hover {

    opacity: 0.9;

    color: #fff;
}


.checkout-pay-button:active {

    transform: scale(0.98);
}


.checkout-pay-button:focus {

    outline: none;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 768px) {

    .checkout-payment-summary {

        gap: 10px;

        padding: 8px !important;
    }


    .checkout-summary-info {

        padding: 5px 8px;
    }


    .checkout-summary-action {

        width: 180px;

        min-width: 180px;
    }


    .checkout-pay-button {

        min-height: 56px;

        padding: 10px 15px;

        font-size: 16px;
    }


    .checkout-total-price {

        font-size: 20px;
    }

}


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

@media (max-width: 576px) {

    .checkout-payment-summary {

        width: 100%;

        min-height: 70px;

        display: flex !important;

        flex-direction: row !important;

        align-items: stretch !important;

        gap: 8px;

        padding: 7px !important;

        border-radius: 8px;
    }


    /* LEFT */

    .checkout-summary-info {

        flex: 1 1 auto;

        min-width: 0;

        padding: 4px 6px;

        justify-content: center;
    }


    .checkout-summary-title {

        margin-bottom: 4px;

        font-size: 13px;

        line-height: 17px;

        white-space: nowrap;
    }


    .checkout-summary-total {

        justify-content: flex-start;

        gap: 8px;
    }


    .checkout-summary-total span {

        font-size: 12px;

        line-height: 16px;
    }


    .checkout-total-price {

        font-size: 18px;

        line-height: 22px;
    }


    /* RIGHT */

    .checkout-summary-action {

        flex: 0 0 180px;

        width: 180px;

        min-width: 180px;
    }


    .checkout-pay-button {

        width: 100% !important;

        min-height: 56px;

        height: 100%;

        padding: 8px 10px;

        border-radius: 7px;

        font-size: 14px;

        font-weight: 700;
    }

}


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

@media (max-width: 380px) {

    .checkout-payment-summary {

        gap: 6px;

        padding: 6px !important;
    }


    .checkout-summary-info {

        padding: 3px 5px;
    }


    .checkout-summary-title {

        font-size: 12px;

        margin-bottom: 3px;
    }


    .checkout-summary-total {

        gap: 5px;
    }


    .checkout-summary-total span {

        font-size: 11px;
    }


    .checkout-total-price {

        font-size: 16px;
    }


    .checkout-summary-action {

        flex: 0 0 120px;

        width: 120px;

        min-width: 120px;
    }


    .checkout-pay-button {

        min-height: 52px;

        padding: 6px 8px;

        font-size: 13px;
    }

}

/* =====================================================
   CHECKOUT BACK BUTTON
   ===================================================== */

.checkout-back-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    width: fit-content;

    height: 36px;

    margin: 10px;

    padding: 0 10px 0 5px;

    border: none;

    border-radius: 7px;

    background: transparent;

    color: #555;

    font-size: 14px;

    font-weight: 500;

    line-height: 1;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* Arrow */

.checkout-back-icon {

    width: 26px;

    height: 26px;

    display: block;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    font-weight: 300;

    line-height: 20px;
}


/* Text */

.checkout-back-text {

    font-size: 14px;

    line-height: 1;
}


/* Hover */

.checkout-back-button:hover {

    background-color: #f3f3f3;

    color: var(--theme-color);
}


/* Active */

.checkout-back-button:active {

    transform: scale(0.97);
}


/* Focus */

.checkout-back-button:focus {

    outline: none;
}


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

@media (max-width: 576px) {

    .checkout-back-button {

        height: 34px;

        padding: 0 8px 0 3px;

        gap: 3px;

        font-size: 13px;
    }


    .checkout-back-icon {

        width: 24px;

        height: 24px;

        /* font-size: 26px; */
    }


    .checkout-back-text {

        font-size: 13px;
    }

}
.checkout-header {

    width: 100%;

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    margin-bottom: 5px;

}


/* =====================================================
   BACK BUTTON
   ===================================================== */

.checkout-back-button {

    display: inline-flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: center !important;

    flex-wrap: nowrap !important;

    gap: 5px;

    width: auto !important;

    height: 36px;

    margin: 0 !important;

    padding: 0 10px 0 5px !important;

    border: none !important;

    border-radius: 7px;

    background: transparent !important;

    color: #555;

    font-size: 14px;

    font-weight: 500;

    line-height: 1 !important;

    white-space: nowrap;

    vertical-align: middle;

    cursor: pointer;

    box-shadow: none !important;
}


.checkout-back-button:hover {

    background-color: #f3f3f3 !important;

    color: var(--theme-color);

}


.checkout-back-button:active {

    transform: scale(0.97);

}


.checkout-back-button:focus {

    outline: none !important;

    box-shadow: none !important;

}


/* Back Arrow */

.checkout-back-icon {

    width: 20px !important;

    height: 20px !important;

    min-width: 20px;

    margin: 0 !important;

    padding: 0 !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 20px;

    line-height: 1 !important;

    font-size: 14px;

}


/* Back Text */

.checkout-back-text {

    font-size: 14px;

    line-height: 1;

}


/* =====================================================
   CENTER TITLE
   ===================================================== */



/* =====================================================
   RIGHT SPACER
   Keeps title centered
   ===================================================== */

.checkout-header-space {

    width: 70px;

    height: 36px;

    flex: 0 0 70px;

}


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

@media (max-width: 576px) {

    .checkout-header {

        min-height: 36px;

        margin-bottom: 3px;

    }


    .checkout-back-button {

        height: 34px;

        padding: 0 7px 0 2px;

        gap: 2px;

    }


    .checkout-back-icon {

        width: 23px;

        height: 23px;

        /* font-size: 26px; */

    }


    .checkout-back-text {

        font-size: 13px;

    }


    .checkout-header-space {

        width: 55px;

        height: 34px;

        flex-basis: 55px;

    }

}
.checkout-back-icon i {

    display: block;

    margin: 0;

    padding: 0;

    line-height: 1;

}


/* =========================================
    BACK TEXT
   ========================================= */

.checkout-back-text {

    display: inline-flex !important;

    align-items: center !important;

    height: 20px;

    margin: 0 !important;

    padding: 0 !important;

    line-height: 20px !important;

    font-size: 14px;

    white-space: nowrap;

    flex: 0 0 auto;

}


/* =========================================
   HOVER
   ========================================= */

.checkout-back-button:hover {

    background-color: #f3f3f3 !important;

    color: var(--theme-color);

}


/* =========================================
   ACTIVE
   ========================================= */

.checkout-back-button:active {

    transform: scale(0.97);

}


/* =========================================
   FOCUS
   ========================================= */

.checkout-back-button:focus {

    outline: none !important;

    box-shadow: none !important;

}


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

@media (max-width: 576px) {

    .checkout-back-button {

        height: 34px;

        gap: 4px;

        padding: 0 8px 0 4px !important;

        font-size: 13px;

    }


    .checkout-back-icon {

        width: 18px !important;

        height: 18px !important;

        min-width: 18px;

        flex-basis: 18px;

    }


    .checkout-back-text {

        height: 18px;

        line-height: 18px !important;

        font-size: 13px;

    }

}

.payment_processing_container {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.payment_processing {
    /* width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px 30px; */
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

/* =========================
CHECKOUT HEADER
========================= */

.checkout-header {
    width: 100%;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.checkout-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 36px;
    padding: 7px 12px;

    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;

    color: #555;
    font-size: 14px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.checkout-back-button:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.checkout-back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-back-icon svg {
    width: 13px;
    height: 13px;
}

.checkout-back-text {
    white-space: nowrap;
}

.checkout-header-title {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.checkout-header-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.checkout-header-space {
    width: 85px;
    flex-shrink: 0;
}

/* =========================
PAYMENT ICON
========================= */

.payment_icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 25px auto 20px;
    flex-shrink: 0;
}

.payment_spinner {
    position: absolute;
    top: 0;
    left: 0;

    width: 72px;
    height: 72px;

    border: 4px solid #e9ecef;
    border-top: 4px solid #337ab7;
    border-radius: 50%;

    box-sizing: border-box;
    animation: payment_spin 1s linear infinite;
}

.payment_bank_icon {
    position: absolute;
    top: 18px;
    left: 18px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    line-height: 40px;
}

/* =========================
TEXT
========================= */

.payment_processing h3 {
    width: 100%;
    margin: 10px 0 12px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #333;
    text-align: center;

    word-wrap: break-word;
}

.payment_message {
    width: 100%;
    margin: 0 0 10px;

    font-size: 15px;
    line-height: 1.5;

    color: #555;
    text-align: center;
}

.payment_sub_message {
    width: 100%;
    margin: 0 0 20px;

    font-size: 13px;
    line-height: 1.6;

    color: #888;
    text-align: center;
}

/* =========================
PAYMENT STATUS
========================= */

.payment_status {
    max-width: 100%;
    padding: 8px 14px;

    background: #f5f8fb;
    border-radius: 20px;

    font-size: 13px;
    line-height: 1.4;
    color: #555;

    text-align: center;
    box-sizing: border-box;

    word-break: break-word;
}

.status_dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 6px;

    background: #337ab7;
    border-radius: 50%;

    animation: status_blink 1.2s infinite;
}

/* =========================
ANIMATION
========================= */

@keyframes payment_spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes status_blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* =========================
TABLET
========================= */

@media (max-width: 768px) {

    .payment_processing_container {
        padding: 30px 15px;
    }

    .payment_processing {
        max-width: 100%;
        padding: 0 15px 25px;
    }

    .checkout-header {
        min-height: 52px;
    }

    .checkout-header-title h5 {
        font-size: 17px;
    }

    .checkout-header-space {
        width: 75px;
    }

    .payment_icon {
        margin-top: 20px;
    }

    .payment_processing h3 {
        font-size: 21px;
    }
}

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

@media (max-width: 480px) {

    .payment_processing_container {
        padding: 20px 10px;
    }

    .payment_processing {
        width: 100%;
        padding: 0 10px 25px;
        border-radius: 8px;
    }

    .checkout-header {
        width: 100%;
        min-height: 50px;
    }

    .checkout-back-button {
        min-height: 34px;
        padding: 6px 9px;
        gap: 5px;
        font-size: 13px;
    }

    .checkout-back-icon svg {
        width: 12px;
        height: 12px;
    }

    .checkout-header-title h5 {
        font-size: 16px;
    }

    .checkout-header-space {
        width: 70px;
    }

    .payment_icon {
        width: 70px;
        height: 70px;
        margin: 20px auto 15px;
    }

    .payment_spinner {
        width: 64px;
        height: 64px;
    }

    .payment_bank_icon {
        top: 15px;
        left: 15px;
        width: 34px;
        height: 34px;
        font-size: 26px;
    }

    .payment_processing h3 {
        margin: 8px 0 10px;
        font-size: 20px;
    }

    .payment_message {
        font-size: 14px;
        line-height: 1.5;
    }

    .payment_sub_message {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .payment_status {
        width: auto;
        max-width: 100%;
        padding: 7px 11px;
        font-size: 12px;
    }
}

/* =========================
VERY SMALL MOBILE
========================= */

@media (max-width: 360px) {

    .payment_processing_container {
        padding: 15px 5px;
    }

    .payment_processing {
        padding-left: 8px;
        padding-right: 8px;
    }

    .checkout-back-button {
        padding: 5px 7px;
        font-size: 12px;
    }

    .checkout-back-text {
        display: none;
    }

    .checkout-header-space {
        width: 40px;
    }

    .checkout-header-title h5 {
        font-size: 15px;
    }

    .payment_processing h3 {
        font-size: 18px;
    }

    .payment_message {
        font-size: 13px;
    }

    .payment_sub_message {
        font-size: 11px;
    }

    .payment_status {
        font-size: 11px;
    }
}
.order-summary.shadow-none {
    box-shadow: none !important;
}

/* stage checkout */
/* =========================================
   Checkout Steps
========================================= */

.checkout-steps {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px auto 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.checkout-steps-success {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px auto 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.checkout-step {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    position: relative;
    min-width: 170px;
}


/* =========================================
   Step Circle
========================================= */

.step-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--bs-light);
    color: var(--bs-secondary);

    border: 2px solid #dee2e6;

    font-size: 15px;

    transition: all 0.25s ease;
}


/* =========================================
   Step Content
========================================= */

.step-content {
    margin-left: 10px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-secondary);

    white-space: nowrap;

    transition: color 0.25s ease;
}

.step-description {
    margin-top: 3px;

    font-size: 11px;
    color: #8a8f94;

    white-space: nowrap;
}


/* =========================================
   Connector Line
========================================= */

.step-line {
    width: 70px;
    height: 2px;

    background-color: #dee2e6;

    margin: 21px 15px 0;

    transition: background-color 0.25s ease;
}


/* =========================================
   ACTIVE STEP
   Bootstrap Primary
========================================= */

.checkout-step.active .step-circle {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);

    box-shadow: 0 3px 8px rgba(13, 110, 253, 0.25);
}

.checkout-step.active .step-title {
    color: var(--bs-primary);
    font-weight: 600;
}


/* =========================================
   COMPLETED STEP
   Bootstrap Success
========================================= */

.checkout-step.completed .step-circle {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
    color: var(--bs-white);

    box-shadow: 0 3px 8px rgba(25, 135, 84, 0.20);
}

.checkout-step.completed .step-title {
    color: var(--bs-success);
    font-weight: 600;
}


/* =========================================
   COMPLETED CONNECTOR
========================================= */

.step-line.completed {
    background-color: var(--bs-success);
}


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

@media (max-width: 767px) {

    .checkout-steps {
        padding: 0 5px;
        margin: 15px auto 25px;
    }
    .checkout-steps-success {
        padding: 0 5px;
        margin: 15px auto 25px;
    }

    .checkout-step {
        flex-direction: column;
        text-align: center;

        min-width: 0;
        flex: 1;
    }

    .step-content {
        margin-left: 0;
        margin-top: 7px;
    }

    .step-title {
        font-size: 11px;
        line-height: 15px;

        white-space: normal;
    }

    .step-description {
        display: none;
    }

    .step-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;

        font-size: 13px;
    }

    .step-line {
        flex: 1;
        width: auto;

        margin: 19px 5px 0;
    }
}

/* ==============================
   404 / KOL Not Found
================================= */

.error-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 45px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* Icon */
.error-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 28px;
}

/* 404 */
.error-code {
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 12px;
}

/* Title */
.error-message {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
}

/* Description */
.error-description {
    max-width: 480px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Help message */
.error-help {
    max-width: 480px;
    margin: 25px auto;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.error-help i {
    flex-shrink: 0;
    color: #64748b;
    font-size: 16px;
}

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    background: #334155;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #1e293b;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-back i {
    font-size: 14px;
}

/* Mobile */
@media (max-width: 576px) {


    .error-code {
        font-size: 52px;
    }

    .error-message {
        font-size: 22px;
    }

    .error-description {
        font-size: 14px;
    }

    .error-help {
        font-size: 12px;
    }
}

/* messenger */
.messenger-button {
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.35);

    /* Smooth animation */
    transition: all 0.3s ease;

    /* Floating animation */
    animation: messenger-float 3s ease-in-out infinite;
}

/* Messenger icon */
.messenger-button img {
    width: 40px !important;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover effect */
.messenger-button:hover {
    transform: scale(1.12);
    box-shadow: 0 7px 25px rgba(0, 132, 255, 0.55);
    text-decoration: none;
}

.messenger-button:hover img {
    transform: rotate(-8deg) scale(1.08);
}

/* Click effect */
.messenger-button:active {
    transform: scale(0.95);
}

/* Floating animation */
@keyframes messenger-float {

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

    50% {
        transform: translateY(-6px);
    }
}

/* Pulse ring */
.messenger-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #0084ff;
    animation: messenger-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes messenger-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.messenger-button::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);

    background: #333;
    color: #fff;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.messenger-button:hover::after {
    opacity: 1;
    visibility: visible;
    right: 72px;
}

/* recommendation */
/* =========================================
   KOL Recommendation inside Header
========================================= */

.kol-recommendation-bar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    width: 100%;
}

.kol-recommendation {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    box-sizing: border-box;
    background: #ffffff;
}

/* KOL Avatar */
.kol-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid #059941;
    background: #f5f5f5;
}

.kol-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* KOL Information */
.kol-info {
    flex: 1;
    min-width: 0;
}

.kol-label {
    font-size: 11px;
    color: #888888;
    line-height: 1.2;
    margin-bottom: 2px;
}

.kol-name {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.kol-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #059941;
    background: #eaf8f0;
    padding: 2px 6px;
    border-radius: 10px;
}

.kol-badge i {
    font-size: 9px;
}

.kol-message {
    font-size: 11px;
    color: #777777;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Right Arrow */
.kol-action {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f2f8f4;
    color: #059941;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.kol-action i {
    font-size: 13px;
}

/* Desktop */
@media (min-width: 768px) {
    .kol-recommendation {
        max-width: 700px;
        margin: auto;
    }

    .kol-recommendation-bar {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .kol-recommendation {
        min-height: 62px;
        padding: 7px 12px;
    }

    .kol-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-right: 10px;
    }

    .kol-name {
        font-size: 14px;
    }

    .kol-message {
        font-size: 10px;
    }

    .kol-action {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
}