:root {
    --AllBorderColor: #e5e5e5;
    --FooterBgColor: #1d1f24;
    --CopyRightBGColor: #22252c;
    --RegularButtonColor: #F29434;
    --RegularButtonHoverColor: #d96e00;
    --RegularButtonColorText: #fff;
    --LogoTextSize: 200px;
    --FooterTextColor: #999999;
    --GreenColor: #199c46;
    --RevProfilePicSize: 100px;
    --AshColorText: #777777;
    --RedColorDefault:#d71920;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    color: #333;
}
body {
    width: 100%;
    float: left;
    font-size: 15px;
    background-color: #f1f2f4;
    font-family: sans-serif;
}
.form-control:focus {
    box-shadow:none;
}

.s-color {
    color: var(--RegularButtonColor);
    text-decoration: none;
    margin-left: 3px;
}

a {
    color: var(--RegularButtonColor);
    text-decoration: none;
}
a:hover {
    color: var(--RegularButtonColor);
    /*text-decoration: underline;*/
}
.hidden{
    display:none;
}
.top_header {
    width:100%;
    float:left;
    background-color:#fff;
    box-shadow:2px 2px 8px var(--AllBorderColor);
    position:sticky;
    top:0px;
    z-index:9;
}
.top_header_bar {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.thb_logo {
    width: var(--LogoTextSize);
    float: left;
}
    .thb_logo img,
    .fi_header img {
        height: 45px;
    }

.thb_search {
    width: calc(80% - (var(--LogoTextSize)*2));
    float: left;
    display:flex;
}

.profile-img-profile {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    object-fit: cover;
}
.search-bar-style {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.search-bar-style-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.thb_search input {
    border-bottom: solid 1px #F29434;
}
.thb_right {
    /*width: var(--LogoTextSize);*/
    float: left;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 4px;
}
.checkout-style {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn:focus {
    box-shadow:none;
}

.mobile-view-logo{
    display:none;
}

/*.thb_right a {
        margin-left: 10px;
    }*/
.navbar {
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link {
    color: #333333;
    padding: 1rem 1.2rem !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}

.home-link {
    background-color: #FFC285;
    color: #fff;
}

    .home-link:hover {
        background-color: var(--RegularButtonColor);
        color: #fff;
    }

    .top_menu {
        width: 100%;
        float: left;
        border-top: 1px solid var(--AllBorderColor);
    }
    .top_menu .navbar-nav {
        flex-direction: row;
    }
    .top_menu .nav-link {
        padding: 10px 15px;
        border-right: 1px solid var(--AllBorderColor);
        color:#000000;
    }
        .top_menu .nav-link:hover,
        .top_menu .nav-link:focus {
            background-color: var(--RegularButtonColor);
            color: #fff;
        }
.menu_item.active_menu,
.menu_item.active_menu:hover {
    background-color: var(--RegularButtonColor);
    color: #fff;
}
.main_container {
    width: 100%;
    float: left;
    padding-top: 20px;
    min-height:calc(100vh - 474px);
}
.main_footer {
    width: 100%;
    float: left;
    background-color: var(--FooterBgColor);
    color: var(--FooterTextColor);
    padding: 30px 0px;
}
.regular_button {
    background-color: var(--RegularButtonColor);
    color: var(--RegularButtonColorText);
}
    .regular_button:hover,
    .regular_button:focus {
        box-shadow: none;
        background-color: var(--RegularButtonHoverColor);
        color: var(--RegularButtonColorText);
    }

.carousel-control-prev,
.carousel-control-next {
    width: 25px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #ccc;
    border-radius: 15%;
    top: 42%;
    transform: translateY(-50%);
}

 .profile-img-profile {
     width: 28px !important;
     height: 28px !important;
     border-radius: 50% !important;
     object-fit: cover;
 }

.carousel-control-prev {
    left: -14px;
}

.carousel-control-next {
    right: -14px;
}

.footer_inner {
    width: 100%;
    float: left;
   
}
    .footer_indv {
        /*width:22%;*/
        float:left;
        padding:0px 20px;
    }

.footer_inner .footer_indv:first-child {
    width: 33%;
    padding-left: 0px;
}
.footer_inner .footer_indv:last-child {
    padding-right: 0px;
}
.fi_header {
    width: 100%;
    float: left;
    color: #fff;
    font-size: 25px;
    white-space:nowrap;
}

.fi_header img {
  
}
.footer_indv p {
    width: 100%;
    float: left;
    /* margin-top: 10px; */
    text-align: justify;
    margin-bottom: 0px;
    display: inline-block;
    text-align: left !important;
}
.footer_link {
    width: 100%;
    float: left;
}
    .footer_link a {
        color: var(--FooterTextColor);
        display: inline-block;
        text-align: left !important;
    }

.footer_bottom {
    width: 100%;
    float: left;
    background-color: var(--CopyRightBGColor);
    padding:20px;
    color:#fff;
}
.p_card {
    width:100%;
    float:left;
    padding:10px;
}
    .p_card:hover {
        box-shadow:2px 2px 8px #ccc;
    }
    .p_card_image {
        width: 100%;
        float: left;
        height:222px;
    }
    .p_card_image img {

    }

    .p_card_info {
        width: 100%;
        float: left;
    }

.p_card_name {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: bold;
    line-height: 19px;
    margin: 10px 0px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color:var(--RegularButtonColor);
}

.p_card_writter {
    width: 100%;
    float: left;
    font-size: 17px;
    line-height: 19px;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--AshColorText);
}

.p_card_price {
    width: 100%;
    float: left;
}

.p_card_old_price {
    width: auto;
    float: left;
    color: var(--AshColorText);
    margin-right: 15px;
}

.p_card_new_price {
    width: auto;
    float: left;
    color: var(--GreenColor);
    font-weight: bold;
}

.middle_header {
    width: 100%;
    float: left;
    border: 1px solid var(--AllBorderColor);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 2px 2px 8px var(--AllBorderColor);
    background-color: #fff;
    border-bottom: solid 1px #F29434;
}
.middle_header_new {
    width: 100%; 
    border: 1px solid var(--AllBorderColor);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 2px 2px 8px var(--AllBorderColor);
    background-color: #fff;
    border-bottom: solid 1px #F29434;
}
.middle_header span {
    font-size:22px;
    color:var(--GreenColor);
    font-weight:bold;
}
.middle_header_new span {
    font-size: 22px;
    color: var(--GreenColor);
    font-weight: bold;
}
.middle_header button {
    float:right;
}

.full_width_div {
    width: 100%;
    float: left;
}
.disc_badge {
    position: absolute;
    background-color: var(--GreenColor);
    color: #fff;
    border-radius: 50%;
    top: 1px;
    left: -13px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--AllBorderColor);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 14px;
    text-align: center;
    font-size:10px;
}
.owl-item-style{
    min-height: 280px;
}
.product-section  {
    height: 320px !important;
}

.product-section img{
    height: 100% !important;
}

.facebook-color {
    color: #0866FF;
    font-size: 20px;
}
.youtube-color {
    color: #FF0033;
    font-size: 20px;
}
.whatsapp-color {
    color: #25D366;
    font-size: 20px;
}
.linkedin-color {
    color: #0A66C2;
    font-size: 20px;
}
.instagram-color {
    color: #C13584;
    font-size: 20px;
}

/*.product-section a img {
    height: 280px !important;
    width: 180px !important;
}*/

        .product_style .owl-nav button.owl-prev,
        .product_style .owl-nav button.owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff !important;
            border: 1px solid #D5D9D9 !important;
            padding: 18px 12px !important;
            border-radius: 6px;
            z-index: 9;
            font-size: 15px;
            font-weight: bold;
            color: #878787 !important;
            text-decoration: none;
        }

        .product_style .owl-nav button.owl-prev {
            left: -16px;
        }

        .product_style .owl-nav button.owl-next {
            right: -16px;
        }

        .wp_container {
            width: 100%;
            float: left;
        }

        .wp_div {
            width: 100%;
            float: left;
            padding: 10px 15px;
            border-left: 3px solid var(--RegularButtonColor);
            font-weight: bold;
            background-color: #f9f9f9;
            margin-bottom: 20px;
            text-align: center;
        }

            .wp_div a {
                color: #333;
                position: relative;
            }

                .wp_div a:hover {
                    text-decoration: none;
                    color: var(--RegularButtonColor);
                }
        /*.wp_indv:hover:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7px 7px 7px 0px;
    border-color: transparent var(--RegularButtonColor) transparent transparent;
    transform: rotate(180deg);
    left: -15px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}*/

        .catg_container {
            width: 100%;
            float: left;
        }

        .catg_card {
            width: 100%;
            float: left;
            padding: 10px;
        }

        .catg_card_image {
            width: 100%;
            float: left;
            border: 1px solid var(--AllBorderColor);
            border-radius: 50%;
            overflow: hidden;
        }

            .catg_card_image img {
            }

        .catg_card_info {
            width: 100%;
            float: left;
        }

        .catg_card_name {
            width: 100%;
            float: left;
            font-size: 18px;
            font-weight: bold;
            line-height: 19px;
            margin: 10px 0px;
            height: 40px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            text-align: center;
        }

        .prod_det_container {
            width: 100%;
            float: left;
        }

        .carousel-indicators {
            position: unset;
            margin: 0px;
            width: 100%;
            float: left;
            display: flex;
            justify-content: flex-start;
        }

            .carousel-indicators [data-bs-target] {
                height: unset;
            }

        .pd_header {
            width: 100%;
            float: left;
            font-size: 25px;
            color: var(--GreenColor);
            font-weight: bold;
        }

        .pd_info {
            width: 100%;
            float: left;
        }

        .pd_info_indv {
            width: 100%;
            float: left;
            margin-top: 5px;
        }

            .pd_info_indv span {
                font-weight: bold;
            }

        .pd_pub_info {
            width: 100%;
            float: left;
            background-color: var(--AllBorderColor);
            padding: 10px;
            border-radius: 5px;
            margin-top: 15px;
        }

        .pd_summery {
            width: 100%;
            float: left;
            padding-top: 15px;
            overflow: hidden;
            text-align: justify;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical
        }

        .rm_option {
            width: 100%;
            float: left;
            text-align: right;
        }

        .rm_text {
            color: var(--RegularButtonColor);
            cursor: pointer;
        }

        .ellipsis_block {
            -webkit-line-clamp: unset;
        }

        .pd_price {
            width: 100%;
            float: left;
            font-size: 25px;
            font-weight: bold;
            margin-top: 10px;
        }

        .pd_old_price {
            width: auto;
            float: left;
            margin-right: 10px;
            color: #ccc;
        }

        .pd_new_price {
            width: auto;
            float: left;
            margin-right: 10px;
            color: var(--GreenColor);
        }

        .pd_price_text {
            width: auto;
            float: left;
            color: var(--RegularButtonColor);
        }

        .pd_button {
            width: 100%;
            float: left;
            margin-top: 15px;
        }

            .pd_button button {
                padding: 10px 15px;
            }

        .prod_det_block {
            width: 100%;
            float: left;
            padding: 20px;
            box-shadow: 2px 2px 8px #ccc;
            border-radius: 0px;
            margin-bottom: 20px;
            background-color: #fff;
        }

        .rev_header {
            width: 100%;
            float: left;
            font-size: 18px;
            font-weight: bold;
            border-bottom: 1px solid var(--AllBorderColor);
            padding-bottom: 5px;
        }

        .home_page_block {
            margin-bottom: 20px;
            background-color: #fff;
        }

        .category_block {
            background-color: #fff;
        }

        .rev_block_container {
            /* background-color:var(--AllBorderColor);*/
        }

            .rev_block_container .flex {
                justify-content: center;
            }
        /*Progress Bar Style Start*/
        .items-center {
            align-items: center;
        }

        .flex {
            display: flex;
        }

        .text-gray-300 {
            --tw-text-opacity: 1;
            color: rgb(209 213 219 / var(--tw-text-opacity));
        }

        .w-4 {
            width: 25px;
        }

        .h-4 {
            height: 25px;
        }

        .h-5 {
            height: 15px;
        }

        .text-sm {
            font-size: .875rem;
            line-height: 1.25rem;
        }

        .text-blue-600 {
            --tw-text-opacity: 1;
            color: rgb(28 100 242 / var(--tw-text-opacity));
        }

        .bg-gray-200 {
            --tw-bg-opacity: 1;
            background-color: var(--AllBorderColor);
        }

        .w-2\/4 {
            width: 350px;
        }

        .text-gray-500 {
            --tw-text-opacity: 1;
            color: rgb(107 114 128 / var(--tw-text-opacity));
        }

        .bg-yellow-300 {
            --tw-bg-opacity: 1;
            background-color: var(--RegularButtonColor);
        }

        .mt-4 {
            margin-top: 15px !important;
        }

        .lr_head {
            font-weight: bold;
        }
        /*Progress Bar Style End*/



        .rc_style {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--AllBorderColor);
        }

        .rev_count {
            font-size: 45px;
            text-align: center;
            font-weight: bold;
        }

        .rev_text {
            font-size: 15px;
            text-align: center;
        }

        .revi_block {
            width: 100%;
            float: left;
            box-shadow: 2px 2px 8px #ccc;
            margin-top: 15px;
            padding: 15px;
            border-radius: 10px;
        }

        .revi_pic {
            width: var(--RevProfilePicSize);
            height: var(--RevProfilePicSize);
            float: left;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--AllBorderColor);
        }

            .revi_pic img {
                position: absolute;
                left: 0px;
                right: 0px;
                top: 0px;
                bottom: 0px;
                margin: auto;
                max-width: 100%;
                max-height: 100%;
            }

        .revi_info {
            width: calc(100% - var(--RevProfilePicSize) - 10px);
            float: left;
            display: flex;
            flex-direction: column;
            padding-left: 10px;
            border-left: 1px solid var(--AllBorderColor);
            margin-left: 10px;
        }

        .revi_name {
            width: 100%;
            float: left;
            font-size: 20px;
            line-height: 20px;
        }

        .revi_date {
            width: 100%;
            float: left;
            font-size: 13px;
            color: var(--GreenColor);
            font-style: italic;
        }

        .revi_icon {
            width: auto;
            float: left;
            display: flex;
            padding: 5px 0px;
            color: var(--AllBorderColor);
        }

            .revi_icon i {
            }

        .revi_text {
            width: 100%;
            float: left;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            line-height: 18px;
        }

        .grey_color {
            color: var(--AllBorderColor);
        }

        .orange_color {
            color: var(--RegularButtonColor);
        }

        .chk_container {
            width: 100%;
            float: left;
        }
        /*checkbox style start*/
        .checkbox-wrapper-45 {
            position: relative;
        }

            .checkbox-wrapper-45 input[type="checkbox"] {
                display: none;
                visibility: hidden;
            }

            .checkbox-wrapper-45 .cbx {
                -webkit-perspective: 20;
                perspective: 20;
                display: inline-block;
                border: 2px solid #d96e00;
                background: #e8e8eb;
                border-radius: 4px;
                transform: translate3d(0, 0, 0);
                cursor: pointer;
                transition: all 0.3s ease;
                float: left;
            }

                .checkbox-wrapper-45 .cbx:hover {
                    border-color: var(--GreenColor);
                }

            .checkbox-wrapper-45 .flip {
                display: block;
                transition: all 0.4s ease;
                transform-style: preserve-3d;
                position: relative;
                width: 20px;
                height: 20px;
            }

            .checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx {
                border-color: var(--GreenColor);
            }

                .checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx .flip {
                    transform: rotateY(180deg);
                }

            .checkbox-wrapper-45 .front,
            .checkbox-wrapper-45 .back {
                backface-visibility: hidden;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                border-radius: 2px;
            }

            .checkbox-wrapper-45 .front {
                background: #fff;
                z-index: 1;
            }

            .checkbox-wrapper-45 .back {
                transform: rotateY(180deg);
                background: var(--GreenColor);
                text-align: center;
                color: #fff;
                line-height: 10px;
                box-shadow: 0 0 0 1px var(--GreenColor);
            }

                .checkbox-wrapper-45 .back svg {
                    margin-top: 3px;
                    fill: none;
                }

                    .checkbox-wrapper-45 .back svg path {
                        stroke: #fff;
                        stroke-width: 2.5;
                        stroke-linecap: round;
                        stroke-linejoin: round;
                    }

        .cbx_label {
            width: auto;
            float: left;
            margin-left: 5px;
            cursor: pointer;
        }

        .checkbox-wrapper-45 input[type="checkbox"]:checked + .cbx_label {
            font-weight: bold;
        }
        /*checkbox style end*/
        .chk_top {
            width: 100%;
            float: left;
            font-size: 17px;
        }

        .total_amt_block {
            width: auto;
            float: right;
            display: flex;
            gap: 10px;
        }

            .total_amt_block span,
            .total_amt_block del {
                float: left;
            }

        .total_amt_disc {
            color: var(--RegularButtonColor);
        }

        .total_amt {
            color: var(--GreenColor);
        }

        .checkout_item {
            background-color: rgba(255, 152, 31, .05);
        }

        .prod_table {
            width: 100%;
            float: left;
        }

            .prod_table tr td:nth-child(1) {
                width: 45px;
            }

            .prod_table tr td:nth-child(2) {
                width: 110px;
            }

            .prod_table tr td:last-child {
                font-weight: bold;
            }

        .co_image {
            max-width: 100px;
        }

        .prod_table .p_card_name,
        .prod_table .p_card_writter {
            height: unset;
            margin: 0px;
            margin-bottom: 5px;
            text-overflow: unset;
        }

        .prod_table .p_card_name {
            color: var(--GreenColor);
        }

        .c_prod_count {
            width: 100px;
            float: left;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ccc;
            border-radius: 4px;
            overflow: hidden;
        }

            .c_prod_count button {
                border: 0px;
                outline: 0px;
                width: 22px;
                font-size: 11px;
            }

            .c_prod_count input[type=number] {
                width: 100%;
                float: left;
                -moz-appearance: textfield;
                border: 0px;
                box-shadow: none;
                outline: none;
                text-align: center;
            }

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

            .c_prod_count button,
            .c_prod_count input[type=number] {
                height: 30px;
            }

                .c_prod_count button:hover {
                    background-color: #f8f8f8;
                }

        .prod_delete {
            width: 100%;
            float: left;
            text-align: left;
            color: var(--RedColorDefault);
        }

            .prod_delete svg {
                cursor: pointer;
            }

        .chk_table_right {
            width: 100%;
            float: left;
        }

            .chk_table_right tr td {
                border-bottom: 1px dashed var(--AllBorderColor);
                padding: 8px 0px;
            }

            .chk_table_right tr:last-child td {
                font-weight: bold;
            }

            .chk_table_right tr td:last-child {
                text-align: right;
            }

        .chk_right_header {
            width: 100%;
            float: left;
            font-size: 22px;
            color: var(--GreenColor);
            font-weight: bold;
            border-bottom: 1px solid var(--AllBorderColor);
            padding-bottom: 10px;
        }

        .checkout_btn_div {
            width: 100%;
            float: left;
            margin-top: 15px;
        }

            .checkout_btn_div button {
                width: 100%;
                float: left;
                padding: 10px;
                font-weight: bold;
                font-size: 18px;
            }

        .add_products {
            margin-bottom: 25px;
        }

            .add_products img {
                width: 100%
            }

        .img-rounded {
            border-radius: 6px;
            border: 0;
            vertical-align: top;
            /*margin: 0 0 15px;*/
            max-width: 100%;
            height: auto;
        }

        .auth-links {
            white-space: nowrap;
            display: inline-block;
        }

        .checkout_btn_div button img {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
            -webkit-animation-direction: normal;
            animation-direction: normal;
            -webkit-animation-duration: 2s;
            animation-duration: 2s;
            -webkit-animation-fill-mode: none;
            animation-fill-mode: none;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-name: icon-arrow-right-animation;
            animation-name: icon-arrow-right-animation;
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            -webkit-filter: invert(100%) sepia(92%) saturate(2%) hue-rotate(354deg) brightness(108%) contrast(101%);
            filter: invert(100%) sepia(92%) saturate(2%) hue-rotate(354deg) brightness(108%) contrast(101%);
            margin-left: 8px;
            vertical-align: middle;
        }

        .category-item {
            text-align: center;
            padding: 20px;
            border-radius: 4px;
            background-color: #f5f5f5;
            transition: transform 0.3s ease;
        }

            .category-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

        .category-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .category-name {
            font-size: 14px;
            font-weight: 500;
        }


        @keyframes icon-arrow-right-animation {
            0%, 20%, 50%, 80%, 100% {
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }

            40% {
                -webkit-transform: translateX(16px);
                transform: translateX(16px);
            }

            60% {
                -webkit-transform: translateX(8px);
                transform: translateX(8px);
            }
        }
        /*Footer Responsive Code*/
        /* ===== Footer: Mobile Responsive ONLY (drop-in overrides) ===== */
        /* Put this AFTER your existing CSS */
        /* Tablet & small devices: 2 columns */
        @media (max-width: 991.98px) {

            .filter-mobile-style {
                display: none;
            }

            .footer_indv {
                padding: 0px 0px;
            }
            /* ===== Header Responsive ===== */
            .top_header_bar {
                flex-direction: column;
                align-items: flex-start;
                padding-bottom: 0px;
            }
            /* Logo small center */
            .thb_logo {
                width: 90%;
                text-align: left;
                margin-bottom: 8px;
                margin-left: 48px;
                margin-top: 4px;
            }

                .thb_logo img {
                    max-height: 45px;
                }
            /* Search bar full width */
            .thb_search {
                order: 3;
                width: 100%;
                margin: 10px 0;
            }

                .thb_search .input-group {
                    width: 100%;
                }
            /* Right side menu */
            .thb_right {
                order: 2;
                width: 100%;
                justify-content: flex-end;
                flex-wrap: wrap;
                gap: 0px;
                font-size: 14px;
                margin-top: -50px;
            }
            /* Hide desktop nav + show mobile toggle */
            .nav-menu,
            .nav-right {
                /*display: none !important;*/
            }

            .mobile-toggle {
                display: block;
                cursor: pointer;
            }

                .mobile-toggle .toggle-line {
                    width: 25px;
                    height: 3px;
                    background: #333;
                    margin: 4px 0;
                    border-radius: 2px;
                }
            /* Mobile menu style */
            .mobile-menu {
                display: none;
                background: #fff;
                padding: 12px;
                border-top: 1px solid #eee;
                width: 100%;
            }

                .mobile-menu.show {
                    display: block;
                }

            .mobile-nav-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .mobile-nav-item {
                border-bottom: 1px solid #f1f1f1;
            }

            .mobile-nav-link {
                display: flex;
                align-items: center;
                padding: 10px;
                text-decoration: none;
                color: #333;
            }

            .mobile-dropdown-items {
                padding-left: 20px;
            }

            .mobile-dropdown-item {
                display: block;
                padding: 8px 10px;
                font-size: 14px;
                text-decoration: none;
                color: #555;
            }

            .owl-item-style {
                min-height: 200px;
            }

            .pd_button button {
                padding: 5px 10px;
            }



            .main_footer .footer_inner {
                /* Force reliable layout regardless of float/flex/grid used in desktop */
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                align-items: start;
            }

            .main_footer .footer_indv {
                /* Neutralize desktop rules */
                width: auto !important;
                max-width: 100% !important;
                flex: none !important;
                float: none !important;
                min-width: 0 !important;
                display: block !important;
                margin: 0 !important;
            }

            .main_footer .fi_header {
                font-size: 16px;
                margin-bottom: 10px;
            }

                .main_footer .fi_header img {
                    max-width: 180px;
                    height: auto;
                    display: block;
                }

            .main_footer .footer_link a {
                display: inline-block;
                padding: 0px 0;
                text-decoration: none;
            }

            .main_footer .footer_indv p,
            .main_footer .footer_indv a,
            .main_footer .footer_indv span {
                font-size: 14px;
                line-height: 1.6;
                word-wrap: break-word;
                overflow-wrap: anywhere;
            }

            .dropdown-menu-premium {
                left: -45px !important;
            }


            .top_menu .navbar {
                padding: 6px 0;
            }
            /* Hamburger Button */
            .top_menu .navbar-toggler {
                margin-left: 0;
                border: 0;
                outline: none;
                box-shadow: none;
                position: fixed;
                top: 25px;
                left: 15px;
                z-index: 1100;
                background: #fff;
                border-radius: 5px;
                padding: 3px 3px;
                box-shadow: 0 2px 6px rgba(0,0,0,.2);
            }

                .top_menu .navbar-toggler .navbar-toggler-icon {
                    width: 1.5rem;
                    height: 1.5rem;
                    background-size: 100% 100%;
                    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='%23333' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
                }

                .top_menu .navbar-toggler.collapsed .navbar-toggler-icon {
                    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
                }

                .top_menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
                    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='2' d='M2 2l12 12M14 2L2 14'/%3E%3C/svg%3E");
                }
            /* Left Drawer */
            .top_menu .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                height: 100vh;
                width: 80vw;
                max-width: 340px;
                background: #fff;
                box-shadow: 2px 0 12px rgba(0,0,0,.15);
                padding: 70px 16px 20px;
                transform: translateX(-100%);
                transition: transform .25s ease;
                overflow-y: auto;
                z-index: 1050;
            }

                .top_menu .navbar-collapse.show {
                    transform: translateX(0);
                }

            .top_menu .navbar-nav {
                flex-direction: column;
                margin-top: 25px;
            }

                .top_menu .navbar-nav .nav-item {
                    border-top: 1px solid #f1f1f1;
                    border-bottom: 1px solid #f1f1f1;
                }

                .top_menu .navbar-nav .nav-link {
                    padding: 12px 8px;
                    font-size: 16px;
                }
            /* Backdrop + body lock */
            body.offcanvas-open {
                overflow: hidden;
            }

                body.offcanvas-open::before {
                    content: "";
                    position: fixed;
                    inset: 0;
                    background: rgba(0,0,0,.35);
                    z-index: 1040;
                }
            /* Existing styles unchanged */

            .navbar-nav {
                padding: 1rem 0;
            }

            .nav-link {
                padding: 0.75rem 1rem !important;
                border-bottom: 1px solid #eee;
            }

            .home-link {
                margin-bottom: 0.5rem;
            }

            .footer_bottom {
                padding: 20px 0px;
            }

            .mobile-view-logo {
                display: block;
                margin-top: -90px;
            }
        }
        /* Phones: 1 column + comfy spacing */
        @media (max-width: 767.98px) {

            .mobile-view-logo {
                display: block;
                margin-top: -90px;
            }

            .category-item {
                padding: 15px;
            }

            .category-icon {
                font-size: 24px;
            }

            .category-name {
                font-size: 12px;
            }


            .main_footer .footer_inner {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }

            .main_footer .footer_indv {
                padding-bottom: 14px;
                border-bottom: 1px solid #f1f1f1;
            }

                .main_footer .footer_indv:last-child {
                    border-bottom: 0;
                    padding-bottom: 0;
                }

            .main_footer .fi_header {
                font-size: 15px;
                margin-bottom: 8px;
            }

                .main_footer .fi_header img {
                    max-width: 160px;
                }

            .main_footer .footer_link a {
                padding: 0px 0;
            }

            .book-image {
                height: 220px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }

            .footer_indv {
                padding: 0px 0px;
            }

            .footer_bottom {
                padding: 20px 0px;
            }
        }
        /* Extra-small phones: tighter text & full-width images */
        @media (max-width: 575.98px) {
            .main_footer .fi_header img {
                max-width: 140px;
            }

            .main_footer .footer_indv p,
            .main_footer .footer_indv a,
            .main_footer .footer_indv span {
                font-size: 13.5px;
            }

            .thb_right a {
                font-size: 12px;
            }

            .thb_search input {
                font-size: 14px;
            }

            .owl-item-style {
                min-height: 150px;
            }

            .pd_button button {
                padding: 5px 10px;
            }

            .footer_link {
                padding-top: 0px;
            }

                .footer_link a {
                    padding: 0px;
                }

            .profile-img-profile {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                object-fit: cover;
            }

            .footer_indv {
                padding: 0px 0px;
            }

            .footer_bottom {
                padding: 20px 0px;
            }
        }
        /* Extra small screen fix */
        @media (max-width: 371px) {
            .thb_right {
                margin-top: -40px;
            }

            .pd_button button {
                margin-top: 10px;
            }

            .thb_logo a img {
                max-height: 25px;
                margin-top: 8px;
                margin-left: -10px;
            }

            .footer_indv {
                padding: 0px 0px;
            }

            .footer_bottom {
                padding: 20px 0px;
            }
        }
        /* Floating WhatsApp Button */
        #whatsappFloatBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 9999;
            text-decoration: none;
        }

            #whatsappFloatBtn:hover {
                transform: scale(1.1);
                background-color: #1EBE5D;
            }