* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --background-main-1: #1A51A2;
    --background-main-2: #1581ca;
    --background-main-3: #eff3ff;
    --background-main-4: #fcf8f8;
    --background-main-5: #00000048;
    --background-main-6: #f2f6f9;


    --color-main-1: #1250DC;
    --color-main-2: #3498db;
    --color-main-3: #08377c;

    --border-radius-5: 5px;
    --border-radius-10: 10px;
    --border-radius-15: 15px;
    --border-radius-20: 20px;
    --border-radius-50: 50%;

    --boxshadow-1: rgba(50, 52, 54, 0.4) 0px 2px 4px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    --boxshadow-2: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    --font-family: 'Arial', sans-serif;
}

/*--------------------------------------------------------------------*/
.bg_main_home {
    background-color: var(--background-main-4);
}

.bg_home {
    background-color: var(--background-main-6);
}

/*----------------------- START HEADER ------------------------------*/

.header {
    background-color: var(--background-main-1);
    z-index: 11;
}

.header_top_mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-main-1);
    min-height: 55px;
    padding: 0 10px;
}

.header_top_left {
    display: flex;
    align-items: center;
    flex: 1;
}

.header_top_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 32px; /* Extra large for visibility */
    flex-shrink: 0;
}

.header_top_img {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header_top_img img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header_top_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
}

/* Language Switcher Styles */
.language-switcher {
    display: inline-block;
    vertical-align: middle;
}
.lang-flags {
    display: flex;
    gap: 6px;
    align-items: center;
}
.lang-item {
    position: relative;
    transition: all 0.3s ease;
}
.btn-lang {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: block;
}
.btn-lang img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    filter: grayscale(80%);
    opacity: 0.6;
}
.lang-item.active .btn-lang img,
.lang-item:hover .btn-lang img {
    filter: grayscale(0%);
    opacity: 1;
}
.lang-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #ee733d;
    border-radius: 50%;
}

.header_top_bell, .header_top_cart_icon {
    background-color: #fff;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: var(--border-radius-50);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.header_top_cart {
    position: relative;
}

.header_top_cart_quantity {
    position: absolute;
    right: -6px;
    top: -8px;
    background-color: red;
    color: #fff;
    width: 15px;
    height: 15px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.header_search {
    position: relative;
    padding: 0px 0 15px 0;
}

.header_search .header_search_magnifying {
    position: absolute;
    left: 15px;
    top: 38%;
    transform: translateY(-50%);
    color: var(--color-main-1);
    pointer-events: none;
}

.header_search_input {
    width: 100%;
    outline: none;
    border: none;
    padding: 8px 38px;
    border-radius: var(--border-radius-15);
}

.header_fixed {
    position: relative;
    display: none;
    transition: top 0.3s ease, background-color 0.3s ease;

}

.header_fixed.fixed {
    background-color: var(--background-main-1);
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr;
    position: fixed;
    top: 0;
    z-index: 2;
    padding: 15px 15px 0px 15px;

}



.header_search_mobile_input {
    width: 100%;
    outline: none;
    border: none;
    padding: 8px 38px;
    border-radius: var(--border-radius-15);
}

/*----------------------- END HEADER ------------------------------*/


/*----------------------- START MENU CATEGORY BAR------------------------------*/

.header_overlay {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    animation: fadeIn linear 0.2s;
    z-index: 19;
    animation: fadeIn 0.2s linear;
}

.header_bar_category {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100%;
    max-width: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 20;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.header_bar_checkbox:checked~.header_overlay {
    display: block;
}

.header_bar_checkbox:checked~.header_bar_category {
    transform: translateX(0%);
}

.header_close {
    cursor: pointer;
    font-size: 25px;
    text-align: right;
    padding-top: 18px;
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header_accordion_main {
    overflow-y: auto;
}

.header_category_top {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.header_category_image {
    width: 180px;
    height: 80px;
}

.header_category_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-item {
    border: none;
}

.accordion-button {
    border: none;
    outline: none;
    box-shadow: none;
    transition: none;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #fff;
    color: var(--color-main-3);
    font-weight: 650;
}

.accordion-body {
    border: none;
}


.accordion_category_ul {
    margin: 0 0;
    padding: 0 0;
}

.accordion_category_ul li {
    list-style: none;
    background-color: var(--background-main-3);
    transition: background-color 0.3s ease;
    margin: 2px 0;
    padding: 10px 10px;

}

.accordion_category_ul li a {
    text-decoration: none;
    color: #000;
}

.accordion_category_ul li:first-child {
    border-top-left-radius: var(--border-radius-5);
    border-top-right-radius: var(--border-radius-5);
}

.accordion_category_ul li:last-child {
    border-bottom-left-radius: var(--border-radius-5);
    border-bottom-right-radius: var(--border-radius-5);
}

.header_bar_user {
    background: linear-gradient(135deg, #154285, #3094d7);
    /* Nền gradient */
    width: 100%;
    padding: 8px 0px 15px 10px;
}

.header_bar_user span {
    font-size: 12px;
    color: #fff;
}

.header_bar_btn_in {
    border: none;
    outline: none;
    padding: 4px 10px;
    border-radius: var(--border-radius-15);
    font-size: 12px;
}

.header_bar_btn_up {
    border: none;
    outline: none;
    padding: 4px 20px;
    border-radius: var(--border-radius-15);
    background-color: var(--background-main-1);
    font-size: 12px;
}

.header_bar_btn_in a {
    text-decoration: none;
    color: var(--color-main-1);
}

.header_bar_btn_up a {
    text-decoration: none;
    color: #fff;
}

.header_category_footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 90px;
    padding: 0 20px;
}

.header_category_footer_btn {
    border: none;
    outline: none;
    margin-top: 15px;
    padding: 5px 20px;
    border-radius: var(--border-radius-15);
    background-color: var(--background-main-3);

}

.header_category_footer_btn a {
    text-decoration: none;
    color: var(--color-main-1);
    font-weight: 500;

}

.header_category_footer span {
    font-size: 12px;
    padding-top: 3px;
    font-weight: 500;
    color: var(--color-main-1);

}

/*----------------------- END MENU CATEGORY BAR ------------------------------*/


/*----------------------- START FOOTER------------------------------*/

@media (max-width: 768px) {
    .footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        box-shadow: var(--boxshadow-2);
        background-color: #ffffff;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        z-index: 10000;
    }
}
@media (min-width: 769px) {
    .footer {
        position: static !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: 1 !important;
    }
    .footer_detail {
        display: none !important;
    }
    .wt_footer_support {
        display: none !important;
    }
}

.footer_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 20px 0px;
}

.footer_main_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_main_content a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_main_content span {
    font-size: 12px;
}

.footer_content_icon {
    font-size: 20px;
    text-align: center;
}

.footer_main_content_label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer_content_image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.footer_content_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_main_content_cart {
    position: relative;
}

.footer_main_content_quantity {
    position: absolute;
    right: 0px;
    top: -10px;
    background-color: red;
    color: #fff;
    width: 15px;
    height: 15px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.footer_content_image {
    width: 30px;
    height: 30px;
}

.footer_content_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_content_image_center_border {
    width: 60px;
    height: 60px;
    padding: 8px 8px;
    background-color: var(--background-main-1);
    border-radius: 50%;
    margin-top: -30px;
    padding: 8px 8px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.footer_content_image_center {
    width: 50px;
    height: 46px;
    background-color: #fff;
    border-radius: var(--border-radius-50);
    padding: 8px 8px;
    /* margin-top: -30px;
    position: relative; */
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer_content_image_center img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-50);
    object-fit: cover;
}

.footer_content_image_center i {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-50);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.footer_main_content_three {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 0px;
}

.footer_main_content_three a {
    text-align: center;
    text-decoration: none;
}

.footer_main_content_span {
    color: #000;
    font-size: 12px;
    text-align: center;
}



.footer_bar_category {
    position: fixed;
    top: 0;
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    left: 0;
    width: 100%;
    height: calc(100vh - 58px - env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 58px - env(safe-area-inset-bottom, 0px));
    background-color: #ffffff;
    transition: transform 0.3s ease;
    z-index: 10050;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
}

.footer_bar_category_header {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    background-color: var(--background-main-1);
}

.footer_bar_category_content {
    padding: 20px;
    color: white;
}

.footer_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    background-color: rgba(15, 23, 42, 0.6);
    display: none;
    z-index: 10040;
}

.footer_bar_checkbox:checked~.footer_overlay {
    display: block;
}

.footer_bar_checkbox:checked~.footer_bar_category {
    transform: translateY(0%);
}



.footer_bar_account {
    position: fixed;
    top: 0;
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    padding-top: 0px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.footer_bar_checkbox:checked~.footer_overlay {
    display: block;
}

.footer_bar_checkbox:checked~.footer_bar_account {
    transform: translateY(0%);
}




.footer_bar_account_main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.footer_account_main_one {
    padding-top: 20px;
}

.footer_account_main_two {
    text-align: center;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.footer_welcome_text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.footer_brand_name {
    font-size: 28px;
    font-weight: 700;
    color: #1A51A2;
}

.footer_account_main_one_image {
    width: 200px;
    height: auto;
}

.footer_account_main_one_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.footer_account_main_three {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding-top: 10px;

}

.footer_account_login {
    text-decoration: none;
    background-color: var(--background-main-3);
    color: var(--background-main-2);
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.footer_account_register {
    text-decoration: none;
    background-color: var(--background-main-1);
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 15px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.footer_account_main_four_image {
    height: 250px;
    width: 250px;
    padding-top: 10px;
}

.footer_account_main_four_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----------------------- END FOOTER------------------------------*/


/*----------------------- START BANNER------------------------------*/
.banner_image {
    width: 100%;
    height: 100%;
}

.banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----------------------- END  BANNER------------------------------*/


/*----------------------- START CATEGORY------------------------------*/

.category_home {
    background-color: #fff;
    padding: 15px 0;
}

.category_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category_box a {
    text-decoration: none;
    color: #000;
    text-align: center;

}

.category_box span {
    width: 70px;
    font-size: 12px;
    padding-top: 4px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category_box_image {
    width: 65px;
    height: 65px;
}

.category_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----------------------- END  CATEGORY------------------------------*/


/*----------------------- START PRODUCT BOX------------------------------*/
.category_product_section {
    padding-top: 20px;
    padding-bottom: 130px;
    background-color: var(--background-main-6);
}

.product_outstanding {
    margin-top: 10px;
}

.product_box {
    background-color: #fff;
    position: relative;
    border-radius: var(--border-radius-5);
    border: 1px solid #efeeee;
}

.product_box:hover {
    border: 1px solid var(--background-main-1);
}

.product_main_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_main_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 500ms;
    text-align: center;
}

.product_box:hover .product_main_image img {
    transform: scale(1.3);
}

.product_main_content {
    padding: 0 5px 5px 5px
}

.product_main_content_height {
    height: 160px;
}

.product_main_content a {
    text-decoration: none;
    color: #000;
    width: 100%;
    padding: 2px 0;
}

.product_main_content a span:hover {
    color: var(--color-main-1);
}

.product_main_content span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    padding-top: 12px;
    height: 55px;
}

.product_main_content_btn {
    outline: none;
    border: none;
    background-color: var(--background-main-1);
    color: #fff;
    border-radius: var(--border-radius-10);
    width: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 3px 0 5px 0;
    font-size: 14px;
    margin-bottom: 12px;
}

.title_product {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title_product h2 {
    font-size: 20px;
    padding: 5px 0 0px 0;
    font-weight: 500;
}

.title_product span a {
    text-decoration: none;
    color: var(--color-main-2);
    font-size: 14px;

}


/*----------------------- END  PRODUCT BOX------------------------------*/


/*----------------------- START TABS------------------------------*/
.nav-tabs {
    border: none;
    padding-top: 12px;
}

.nav-tabs .nav-item .nav-link {
    font-size: 12px;
    padding: 0 8px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 2px;

}

.nav-tabs .nav-item .nav-link.active {
    border: 1px solid #005288;
    background-color: #fff;
    color: #005288;
}

.nav-tabs .nav-item .nav-link:not(.active) {
    background-color: #f0f0f0;
    color: #050505;
}

.nav-tabs .nav-item {
    border-bottom: none;
}

.tab-content {
    border: none;
}

.tab-pane {
    border: none;
}

.tab-pane span {
    text-align: left;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 700;
    padding-top: 12px;
    color: var(--color-main-1);
}

/*----------------------- END  TABS------------------------------*/


/*----------------------- START ------------------------------*/
.modal_product {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    z-index: 12000;
}

.modal_product.show {
    display: block;
    transform: translateY(0);
}

.modal_product_box {
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.overlay_btn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11999;
    display: none;
}

.overlay_btn.show {
    display: block;
}

.overlay_detail_btn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11999;
    display: none;
}

.overlay_detail_btn.show {
    display: block;
}

.modal_title {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
}

.modal_title .modal_title_two {
    font-size: 17px;
    font-weight: 600;
}

.modal_title .modal_title_three {
    font-size: 20px;
    font-weight: 600;
}

.modal_product_box_one {
    display: grid;
    grid-template-columns: 120px 1fr;
}

.modal_product_box_image {
    width: 100px;
    height: 100px;
}

.modal_product_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.modal_product_box_name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 500;
}

.modal_product_box_price {
    color: #000000;
}

.modal_product_box_two {
    padding-top: 10px;
}

.modal_product_box_btn {
    outline: none;
    border: none;
    border-radius: var(--border-radius-15);
    padding: 5px 15px;
    background-color: var(--background-main-6);
    margin-right: 5px;
}

.modal_product_box_btn:focus {
    border: 2px solid #005288;
    background-color: #005288;
    color: #fff;
}

.modal_product_box_three {
    padding-top: 10px;
}

.btn_model_box {
    padding-top: 10px;
}

.modal_product_box_four {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.modal_product_box_four_price {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.modal_product_box_five {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
}

.button_model_cart {
    outline: none;
    border: none;
    padding: 10px 10px;
    border-radius: var(--border-radius-20);
    width: 100%;
    background-color: var(--background-main-3);
    color: var(--color-main-3);
    font-weight: 500;
    font-size: 16px;
}

.button_model_buy {
    outline: none;
    border: none;
    padding: 10px 10px;
    border-radius: var(--border-radius-20);
    width: 100%;
    background-color: var(--background-main-1);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.quantity-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.quantity_model {
    width: 30px;
    text-align: center;
    font-size: 15px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
}

.btn_model {
    width: 30px;
    height: 30px;
    background-color: var(--background-main-1);
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn_model:hover {
    background-color: var(--background-main-1);
}

.decrease {
    border-radius: 10px 0 0 10px;
    /* Cong phía trên */
}

.increase {
    border-radius: 0 10px 10px 0;
    /* Cong phía trên */
}

/*----------------------- END  ------------------------------*/


/*----------------------- START FOOTER INTRODUCE------------------------------*/

.footer_introduce {
    margin-top: 20px;
    background-color: #fff;
}

.footer_introduce_main {
    padding: 20px 0px 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer_introduce_main ul li a {
    text-decoration: none;
    color: var(--color-main-2);
}

.footer_introduce_main_image {
    max-width: 120px;
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_introduce_main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_introduce_main_image_two {
    width: 150px;
    height: 150px;
}

.footer_introduce_main_image_two img {
    width: 100%;
    height: 100%;
}

/*----------------------- END FOOTER INTRODUCE ------------------------------*/

/*----------------------- START DETAIL------------------------------*/
.header_detail {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    height: 55px;
    top: 0;
    z-index: 2;
}

.header_detail_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0 0;
}

.header_detail_top_right i {
    font-size: 20px;
    padding: 0px 10px;
}

.header_detail_top_right_cart {
    position: relative;
}

.header_detail_top_right_quantity {
    position: absolute;
    right: -4px;
    top: -16px;
    background-color: red;
    color: #fff;
    width: 15px;
    height: 15px;
    padding: 9px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.detail_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail_main {
    background-color: var(--background-main-4);
    padding: 0 0 20px 0;
}

/* Màu sắc dấu tick */
.detail_content {
    padding: 10px 0px 10px 0px;
    background-color: #ffffff;
}

.detail_brand span a {
    text-decoration: none;
    color: var(--color-main-1);
    font-weight: 500;
}

.detail_title h2 {
    font-size: 18px;
    line-height: 25px;
    padding-top: 5px;
}

.detail_id span {
    color: var(--color-main-1);
    font-weight: 500;
    padding-top: 5px;
}

.detail_infor {
    display: flex;
    justify-content: start;
    column-gap: 15px;
    padding-top: 5px;
}

.detail_infor span {
    color: var(--color-main-1);
    font-weight: 500;
}

.detail_price {
    padding-top: 15px;
}

.detail_price span {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-main-1);

}

.detail_btn {
    outline: none;
    border: none;
    border-radius: var(--border-radius-15);
    padding: 5px 15px;
    margin: 0 2px;
    border: 2px solid #005288;
    background-color: #fff;
    color: var(--color-main-1);
    transition: background-color 0.3s ease;
    position: relative;
}

.detail_btn:focus {
    background-color: var(--background-main-1);
    color: #ffffff;
}



.detail_information {
    margin-top: 20px;
    background-color: #ffffff;
    padding: 10px 0 10px 0;
}

.detail_information_title h2 {
    font-size: 18px;
}

.detail_information_content h4 {
    font-size: 15px;
    margin: 0 0 0px 0;
}

.detail_information_content span {
    font-size: 14px;
}

.btn_detail_seemore {
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 7px 20px 7px 20px;
    background-color: var(--background-main-1);
    color: #fff;
    display: flex;
    justify-self: center;
}

.detail_information_all {
    text-align: center;
    padding-top: 10px;
}

.detail_information_all a {
    font-size: 15px;
    text-decoration: none;
    color: var(--color-main-1);
}

.detail_information_all i {
    padding-left: 8px;
}

.detail_relate {
    margin-top: 20px;
    padding: 20px 0px 80px 0;
}

.button_detail_cart {
    outline: none;
    border: none;
    height: 45px;
    border-radius: var(--border-radius-20);
    width: 100%;
    background-color: var(--background-main-3);
    color: var(--color-main-3);
    font-weight: 500;
    font-size: 16px;
}

.button_detail_buy {
    outline: none;
    border: none;
    height: 45px;
    border-radius: var(--border-radius-20);
    width: 100%;
    background-color: var(--background-main-1);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer_detail {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: var(--boxshadow-2);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 11000;
    border: 1px solid var(--background-main-1);
}

.footer_detail_main {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    padding: 15px 0 20px 0;
}

.footer_detail_main_image {
    max-width: 60px;
    width: 100%;
    height: 60px;
    margin-top: -7px;
}

.footer_detail_main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: var(--border-radius-50);

}

/*----------------------- END  DETAIL------------------------------*/

/*----------------------- START CATEGORY------------------------------*/
.header_category {
    background-color: var(--background-main-1);
    padding: 15px 0 0 0;
}

.category_main {
    width: 100%;
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 10px;
}

.category_left_active {
    color: var(--color-main-1);
    font-weight: 600;
}

.category_left {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--background-main-6);
}

.category_left ul {
    margin: 0 0;
    padding: 0 0;
}

.category_left ul li {
    width: 90px;
    height: 80px;
    padding: 50px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #7bc9f1;
}

.category_left ul li span {
    font-size: 12px;
    text-align: center;
    padding-top: 5px;
}

.category_left_sub_ul li span {
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;**/
    font-size: 12px;
    text-align: center;
    padding-top: 5px;
}


.category_left_image {
    width: 35px;
    height: 35px;
}

.category_left_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_right {
    width: 100%;
    background-color: var(--background-main-4);
}

.category_right_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_right_content {}

.category_right_content_item {
    display: none;

}

.category_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.category_item a {
    text-decoration: none;
    color: #000;
}


.category_right_item_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin: 0px 0;
}



.category_right_item_image {
    width: 70px;
    height: 70px;

}

.category_right_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_right_item_span span {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    display: block;
    padding-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

/*----------------------- END  CTEGORY------------------------------*/

/*----------------------- START MANUFACETURER ------------------------------*/
.manufacturer_info_logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacturer_info_image {
    width: 250px;
    height: 150px;
}

.manufacturer_info_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.manufacturer_list_box {
    background-color: #fff;
    display: grid;
    grid-template-columns: 90px 1fr;
    margin: 5px 0;
    padding: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 15px;
}

.manufacturer_list_box_image {
    width: 80px;
    height: 80px;
}

.manufacturer_list_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturer_list_box_title {
    text-decoration: none;
    color: var(--color-main-2);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 88px;
}

.manufacturer_list_box_content span {
    margin: 0 0;
    padding: 0 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.manufacturer_list_box_content span p {
    height: 50px;
    width: 89px;
    margin: 0 0;
    padding: 0 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.manufacturer_list_box_btn {
    color: #fff;
    background-color: var(--background-main-1);
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius-15);
}

.btn_manufac_more {
    outline: none;
    border: none;
    padding: 6px 20px;
    margin-top: 10px;
    border-radius: var(--border-radius-15);
    background-color: var(--background-main-1);
    color: #fff;
}

/*----------------------- END MANUFACETURER ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/

/*----------------------- START ------------------------------*/


/*----------------------- END  ------------------------------*/


/*----------------------- START ------------------------------*/
.swiper-container-cate {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-container-product {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-container-detail {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swip_next {
    position: absolute;
    top: 45%;
    background-color: var(--background-main-5);
    color: #ffffff;
    border-radius: var(--border-radius-50);
    width: 35px;
    height: 35px;
}

.swip_next::after {
    font-size: 15px !important;
}

.swip_prev {
    position: absolute;
    top: 45%;
    background-color: var(--background-main-5);
    color: #ffffff;
    border-radius: var(--border-radius-50);
    width: 35px;
    height: 35px;
}

.swip_prev::after {
    font-size: 15px !important;
}

.custom-title {
    font-size: 1.1rem;
    text-align: center;
}

#back-to-top.back-to-top,
.back-to-top {
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0e76c0 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 0 5px #888 !important;
    -webkit-box-shadow: 0 0 5px #888 !important;
    -moz-box-shadow: 0 0 5px #888 !important;
    cursor: pointer !important;
    display: none;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
}
#back-to-top.back-to-top:hover,
.back-to-top:hover {
    background: #1a51a2 !important;
    color: #ffffff !important;
    box-shadow: 0 0 8px #555 !important;
    -webkit-box-shadow: 0 0 8px #555 !important;
    -moz-box-shadow: 0 0 8px #555 !important;
    transform: translateY(-2px) !important;
}
#back-to-top.back-to-top i,
.back-to-top i {
    font-size: 24px !important;
    line-height: 1 !important;
    display: inline-block !important;
    color: #ffffff !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    #back-to-top.back-to-top,
    .back-to-top {
        bottom: 80px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
    #back-to-top.back-to-top i,
    .back-to-top i {
        font-size: 20px !important;
    }
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    line-height: 1.5;
}
.footer-contact-list li .contact-icon,
.footer-open-time .contact-icon {
    color: #1a51a2;
    font-size: 16px;
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
    margin-right: 8px;
    text-align: center;
}
.footer-open-time {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-app-download {
    margin-top: 15px;
    margin-bottom: 10px;
}
.footer-app-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.footer-app-title .badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #1a51a2 !important;
    color: #fff;
}
.footer-app-title strong {
    font-size: 14px;
    color: #111;
    font-weight: 600;
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-download-app,
.btn-download-googleplay,
.btn-download-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff !important;
    padding: 7px 16px;
    border-radius: 9px;
    text-decoration: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 220px;
}
.btn-download-app.w-100,
.btn-download-googleplay.w-100,
.btn-download-appstore.w-100 {
    max-width: 100%;
}
.btn-download-app:hover,
.btn-download-googleplay:hover,
.btn-download-appstore:hover {
    background: #1a51a2;
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 81, 162, 0.45);
}
.btn-download-app .app-icon-svg,
.btn-download-app .googleplay-icon,
.btn-download-googleplay .googleplay-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.btn-download-app:hover .app-icon-svg,
.btn-download-app:hover .googleplay-icon,
.btn-download-googleplay:hover .googleplay-icon {
    transform: scale(1.1);
}
.btn-download-app .app-btn-content,
.btn-download-googleplay .app-btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.15;
}
.btn-download-app .btn-subtitle,
.btn-download-googleplay .btn-subtitle {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #d1d5db;
}
.btn-download-app .btn-title,
.btn-download-googleplay .btn-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.header_top_main_right a.header-app-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #1a51a2;
    background: rgba(26, 81, 162, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.2s ease;
    margin-right: 4px;
}
.header_top_main_right a.header-app-link:hover {
    background: #1a51a2;
    color: #ffffff !important;
}
.header_top_main_right a.header-app-link i {
    font-size: 13px;
}

.btn-download-app-android-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #34a853;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(52, 168, 83, 0.3);
    transition: background-color 0.2s ease;
}
.btn-download-app-android-mobile:hover {
    background: #2e7d32;
    color: #fff !important;
}

.float-icon-hotline ul li .fa-apple {
    background: #000000;
    color: #fff;
    font-size: 24px;
    line-height: 46px;
}
.float-icon-hotline ul li .fa-android {
    background: #34a853;
    color: #fff;
    font-size: 24px;
    line-height: 46px;
}
.float-icon-hotline ul li a.messengerButtonApp,
.float-icon-hotline ul li a.messengerButtonAndroid,
.float-icon-hotline ul li a.messengerButtonApple {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    text-decoration: none !important;
}

.mobile-footer-info {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 12px;
    margin: 20px 10px 80px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

@media (max-width: 767.98px) {
    h1,
    .h1,
    h1.title,
    #content h1,
    #content > h1,
    .cs-box h1,
    .bg_home h1 {
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        color: #0F172A !important;
        margin-top: 4px !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.2px !important;
    }
}

/* -------------------------------------------------------------
   MODERN DESKTOP & LAPTOP CARD STYLING & CONSULTATION BUTTONS
   ------------------------------------------------------------- */
.product-thumb {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    overflow: hidden !important;
    padding: 12px !important;
    position: relative;
}

.product-thumb:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: #cbd5e1 !important;
}

.product-thumb .image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.product-thumb .image img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-thumb:hover .image img {
    transform: scale(1.04);
}

.product-thumb .caption {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    justify-content: space-between !important;
    padding: 10px 0 0 0 !important;
}

.product-thumb .caption .name {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 42px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #1e293b !important;
    margin-bottom: 8px !important;
    text-decoration: none !important;
}

.product-thumb .caption a:hover .name {
    color: #1250DC !important;
}

/* Badge Cần tư vấn trên ảnh */
.tag-tu-van {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: #C62828;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(198, 40, 40, 0.35);
    letter-spacing: 0.2px;
}

/* Nút Tư Vấn Cho Card Desktop */
.btn-tu-van-app {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    padding: 0 10px !important;
    background: #E1F5EE !important;
    color: #0F6E56 !important;
    border: 1.5px solid #0F6E56 !important;
    border-radius: 20px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    margin-top: auto !important;
}

.btn-tu-van-app:hover {
    background: #0F6E56 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 110, 86, 0.25) !important;
    transform: translateY(-1px) !important;
}

/* Dòng giá Liên hệ tư vấn */
.group-price-consultation {
    min-height: 38px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.price-consultation-tag {
    color: #00875A;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

/* NÚT TƯ VẤN TRANG CHI TIẾT SẢN PHẨM DESKTOP */
.consultation-action-group {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.btn-consultation-app {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #00875A 0%, #00A86B 100%) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 13px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 135, 90, 0.3) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.btn-consultation-app:hover {
    background: linear-gradient(135deg, #00734D 0%, #00965F 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 135, 90, 0.4) !important;
}

.btn-consultation-form {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: #00875A !important;
    border: 1.5px solid #00875A !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.btn-consultation-form:hover {
    background: #E8F5E9 !important;
    color: #00734D !important;
}

/* Khối thông báo thuốc cần tư vấn chuyên môn */
.alert-consultation-app {
    background-color: #FFF8E1 !important;
    border: 1px solid #FFE082 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    color: #5D4037 !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
}

.consultation-price-badge {
    color: #00875A;
    font-size: 16px;
    font-weight: 700;
}

/* Tinh chỉnh float-icon-hotline trên màn hình laptop */
@media (min-width: 992px) and (max-width: 1440px) {
    .float-icon-hotline {
        right: 8px !important;
        transform: scale(0.9) !important;
        transform-origin: right center !important;
    }
}

/* =============================================================
   BOX SẢN PHẨM NỔI BẬT NỔI BẬT GIỐNG APP (CAM RỰC RỠ & RIBBON ĐỎ)
   ============================================================= */
.featured-box-app-container {
    background: linear-gradient(165deg, #FF8C00 0%, #FF5A00 55%, #E64A00 100%) !important;
    border-radius: 20px !important;
    padding: 20px 14px 22px 14px !important;
    margin-top: 18px !important;
    margin-bottom: 24px !important;
    position: relative !important;
    box-shadow: 0 8px 24px rgba(255, 90, 0, 0.28) !important;
}

/* Header Ribbon Đỏ nổi bật */
.featured-ribbon-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-top: -34px !important;
    margin-bottom: 16px !important;
    padding: 0 6px !important;
}

.featured-ribbon-badge {
    position: relative !important;
    background: linear-gradient(180deg, #FF1E27 0%, #D80F18 100%) !important;
    color: #ffffff !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    padding: 9px 30px !important;
    border-radius: 12px 12px 16px 16px !important;
    box-shadow: 0 5px 16px rgba(216, 15, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}

.featured-ribbon-badge::before,
.featured-ribbon-badge::after {
    content: "" !important;
    position: absolute !important;
    top: 7px !important;
    width: 16px !important;
    height: calc(100% - 7px) !important;
    background: #A30B12 !important;
    z-index: -1 !important;
}

.featured-ribbon-badge::before {
    left: -10px !important;
    border-radius: 6px 0 0 6px !important;
    clip-path: polygon(100% 0, 100% 100%, 0 50%) !important;
}

.featured-ribbon-badge::after {
    right: -10px !important;
    border-radius: 0 6px 6px 0 !important;
    clip-path: polygon(0 0, 0 100%, 100% 50%) !important;
}

.featured-ribbon-badge i {
    color: #FFEB3B !important;
    font-size: 18px !important;
    margin-right: 8px !important;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)) !important;
}

.featured-ribbon-view-all {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: rgba(0, 0, 0, 0.22) !important;
    padding: 6px 14px !important;
    border-radius: 14px !important;
    backdrop-filter: blur(4px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.2s ease !important;
}

.featured-ribbon-view-all:hover {
    background: rgba(0, 0, 0, 0.35) !important;
    color: #FFEB3B !important;
}

/* Thẻ sản phẩm con bên trong Box Nổi Bật */
.featured-box-app-container .product-thumb {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
    overflow: hidden !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.featured-box-app-container .product-thumb:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14) !important;
}

.featured-box-app-container .product-thumb .image {
    min-height: 140px !important;
    max-height: 140px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.featured-box-app-container .product-thumb .image img {
    max-height: 135px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

.featured-box-app-container .product-thumb .btn-primary {
    background: #1250DC !important;
    border-color: #1250DC !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    box-shadow: 0 3px 8px rgba(18, 80, 220, 0.3) !important;
}

.featured-box-app-container .product-thumb .btn-primary:hover {
    background: #0C3CB0 !important;
    border-color: #0C3CB0 !important;
}

.featured-box-app-container .product-thumb .btn-tu-van-app {
    border-radius: 20px !important;
}

.sale-badge-app {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background: #E51A24;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(229, 26, 36, 0.35);
}

/* Nút next/prev trên swiper featured desktop */
.featured-box-app-container .swiper-button-next,
.featured-box-app-container .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #FF5A00 !important;
    width: 38px !important;
    height: 38px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.featured-box-app-container .swiper-button-next:after,
.featured-box-app-container .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #FF5A00 !important;
}

/* Featured Box action button */
.featured-box-bottom-action {
    margin-top: 14px !important;
    text-align: center !important;
    width: 100% !important;
}
.featured-box-btn-view-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: #ffffff !important;
    color: #E64A00 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}
.featured-box-btn-view-all:hover {
    background: #FFF3E0 !important;
    color: #D80F18 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15) !important;
}

/* New Products Box (Sản Phẩm Mới) */
.section_home_product_new {
    background: transparent !important;
    padding: 0 !important;
}
.new-box-app-container {
    background: linear-gradient(165deg, #0284C7 0%, #1A51A2 55%, #0F3A78 100%) !important;
    border-radius: 20px !important;
    padding: 20px 14px 22px 14px !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
    position: relative !important;
    box-shadow: 0 8px 24px rgba(26, 81, 162, 0.28) !important;
}
.new-ribbon-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-top: -34px !important;
    margin-bottom: 16px !important;
    padding: 0 6px !important;
}
.new-ribbon-badge {
    position: relative !important;
    background: linear-gradient(180deg, #00C48C 0%, #00875A 100%) !important;
    color: #ffffff !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 9px 30px !important;
    border-radius: 12px 12px 16px 16px !important;
    box-shadow: 0 5px 16px rgba(0, 135, 90, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}
.new-ribbon-badge::before,
.new-ribbon-badge::after {
    content: "" !important;
    position: absolute !important;
    top: 7px !important;
    width: 16px !important;
    height: calc(100% - 7px) !important;
    background: #005A3C !important;
    z-index: -1 !important;
}
.new-ribbon-badge::before {
    left: -10px !important;
    border-radius: 6px 0 0 6px !important;
    clip-path: polygon(100% 0, 100% 100%, 0 50%) !important;
}
.new-ribbon-badge::after {
    right: -10px !important;
    border-radius: 0 6px 6px 0 !important;
    clip-path: polygon(0 0, 0 100%, 100% 50%) !important;
}
.new-ribbon-badge i {
    color: #FFEB3B !important;
    font-size: 18px !important;
    margin-right: 8px !important;
}

.new-box-app-container .product-thumb {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
    overflow: hidden !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.new-box-app-container .product-thumb:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14) !important;
}
.new-box-app-container .product-thumb .image {
    min-height: 140px !important;
    max-height: 140px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.new-box-app-container .product-thumb .image img {
    max-height: 135px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}
.new-box-app-container .product-thumb:hover .image img {
    transform: scale(1.05) !important;
}
.new-box-app-container .product-thumb .btn-primary {
    background: #1250DC !important;
    border-color: #1250DC !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    box-shadow: 0 3px 8px rgba(18, 80, 220, 0.3) !important;
}
.new-box-app-container .product-thumb .btn-primary:hover {
    background: #0C3CB0 !important;
    border-color: #0C3CB0 !important;
}
.new-box-app-container .product-thumb .btn-tu-van-app {
    border-radius: 20px !important;
    padding: 8px 16px !important;
}

.new-box-bottom-action {
    margin-top: 14px !important;
    text-align: center !important;
    width: 100% !important;
}
.new-box-btn-view-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: #ffffff !important;
    color: #0284C7 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}
.new-box-btn-view-all:hover {
    background: #F0F9FF !important;
    color: #0369A1 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15) !important;
}

.new-box-app-container .swiper-button-next,
.new-box-app-container .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #0284C7 !important;
    width: 38px !important;
    height: 38px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.new-box-app-container .swiper-button-next:after,
.new-box-app-container .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #0284C7 !important;
}

/* ==========================================================
   ALPHABET PHARMA 2026 - LAPTOP DETAIL & CARD STANDARDIZATION
   ========================================================== */
.product_action_wrap {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: auto !important;
}


.product-thumb .btn,
.product-thumb .btn-cart,
.product-thumb .btn-primary,
.product-thumb .product_main_content_btn,
.product_main_content_btn {
    width: 100% !important;
    margin: 0 !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    line-height: 34px !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.product-thumb .btn-primary,
.product-thumb .btn-cart,
.product_main_content_btn:not(.btn-tu-van-mobile) {
    background: #1A51A2 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 3px 8px rgba(26, 81, 162, 0.25) !important;
}
.product-thumb .btn-primary:hover,
.product-thumb .btn-cart:hover,
.product_main_content_btn:not(.btn-tu-van-mobile):hover {
    background: #0C3CB0 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

.product-thumb .btn-tu-van-app,
.product-thumb .btn-tu-van-mobile,
.btn-tu-van-mobile {
    width: 100% !important;
    margin: 0 !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    line-height: 34px !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    background: #E1F5EE !important;
    color: #0F6E56 !important;
    border: 1.5px solid #0F6E56 !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}
.product-thumb .btn-tu-van-app:hover,
.product-thumb .btn-tu-van-mobile:hover,
.btn-tu-van-mobile:hover {
    background: #0F6E56 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Khối Giá & Đơn Vị Tính: 62px, hiển thị đầy đủ, không bị khuất */
.product-thumb .group-price,
.product-thumb .caption .group-price,
.product-thumb .group-price-consultation {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    padding: 2px 0 !important;
    margin: 0 0 6px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.product-thumb .caption .group-price .nav-tabs {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    justify-content: center !important;
    gap: 4px !important;
}
.product-thumb .caption .group-price .nav-tabs .nav-item {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
.product-thumb .caption .group-price .nav-tabs .nav-item .nav-link {
    height: 22px !important;
    line-height: 20px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.product-thumb .caption .group-price .tab-content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    border: none !important;
}
.product-thumb .caption .group-price .tab-content .tab-pane {
    padding-top: 3px !important;
    margin: 0 !important;
    border: none !important;
    text-align: center !important;
}
.product-thumb .caption .group-price .tab-content .tab-pane span {
    font-size: 14.5px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #1A51A2 !important;
    display: inline-block !important;
}

/* Sticky Bar Laptop Detail */
.product-page-fix {
    position: fixed !important;
    z-index: 999 !important;
    bottom: -100px !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    color: #1e293b !important;
    padding: 10px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-page-fix.active {
    bottom: 0 !important;
}
.product-page-fix h4 {
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}
.product-page-fix .price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #D80F18 !important;
}
.product-page-fix .price .price-old {
    font-size: 13px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    margin-left: 6px !important;
}
.product-page-fix.active #button-cart {
    margin-bottom: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
    background: linear-gradient(135deg, #1250DC 0%, #0F3A78 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 12px rgba(18, 80, 220, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.product-page-fix.active #button-cart:hover {
    background: #0C3CB0 !important;
    transform: translateY(-1px) !important;
}
.badge-tu-van-sticky {
    color: #0F6E56 !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
}
.btn-tu-van-sticky {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    padding: 0 24px !important;
    background: #E1F5EE !important;
    color: #0F6E56 !important;
    border: 1.5px solid #0F6E56 !important;
    border-radius: 20px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(15, 110, 86, 0.15) !important;
    white-space: nowrap !important;
}
.btn-tu-van-sticky:hover {
    background: #0F6E56 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Detail Main Action Buttons */
.product-info .card-body .card_body_btn .card_body_btn_col .detail_btn_buynow {
    background: linear-gradient(135deg, #1250DC 0%, #0F3A78 100%) !important;
    color: #fff !important;
    border: none !important;
    outline: none !important;
    border-radius: 20px !important;
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(18, 80, 220, 0.25) !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.product-info .card-body .card_body_btn .card_body_btn_col .detail_btn_buynow:hover {
    background: #0C3CB0 !important;
    transform: translateY(-1px) !important;
}
.product-info .card-body .card_body_btn .card_body_btn_col .detail_btn_contact {
    background-color: #E1F5EE !important;
    color: #0F6E56 !important;
    border: 1.5px solid #0F6E56 !important;
    outline: 0 !important;
    border-radius: 20px !important;
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}
.product-info .card-body .card_body_btn .card_body_btn_col .detail_btn_contact:hover {
    background-color: #0F6E56 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Subcategories Header Tags - Gọn Đẹp & Tinh Tế */
.category-subtags-container {
    display: flex !important;
    justify-content: center !important;
    margin: 8px auto 18px auto !important;
    max-width: 1100px !important;
    padding: 0 10px !important;
}

.category-subtags-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.category-subtags-list .related-tag {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.category-subtags-list .related-tag a {
    display: inline-flex !important;
    align-items: center !important;
    height: 32px !important;
    padding: 0 14px !important;
    background: #f8fafc !important;
    color: #334155 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.category-subtags-list .related-tag a:hover {
    background: #eff6ff !important;
    color: #1A51A2 !important;
    border-color: #93c5fd !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(26, 81, 162, 0.12) !important;
}

.category-subtags-list .related-tag.tag-view-all a {
    background: #E1F5EE !important;
    color: #0F6E56 !important;
    border: 1.5px solid #0F6E56 !important;
    font-weight: 700 !important;
}

.category-subtags-list .related-tag.tag-view-all a:hover {
    background: #0F6E56 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(15, 110, 86, 0.25) !important;
}

/*----------------------- END  ------------------------------*/