/* Thin */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* ExtraLight */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Light */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Regular */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Medium */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* SemiBold */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ExtraBold */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Black */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
:root {
    /* =====================
     * TYPOGRAPHY (giữ nguyên)
     * ===================== */
    --font-extra-large: clamp(40px, 5vw, 72px);
    --font-h1: clamp(28px, 3.3vw, 48px);
    --font-middle-large: clamp(24px, 2.8vw, 42px);
    --font-h2: clamp(22px, 2.4vw, 36px);
    --font-center: clamp(20px, 2vw, 30px);
    --font-h3: clamp(18px, 1.8vw, 24px);
    --font-body-large: clamp(16px, 1.3vw, 20px);
    --font-body: clamp(14px, 1.2vw, 16px);
    --font-small: clamp(12px, 1vw, 14px);

    /* =====================
     * BACKGROUND (giữ nguyên)
     * ===================== */
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-muted: #f2f2f2;
    --bg-accent: #fff5f5;

    /* =====================
     * PRIMARY BRAND COLORS
     * ===================== */
    --color-primary: #e53935;
    --color-primary-hover: #d32f2f;
    --color-primary-soft: #fdeaea;

    /* =====================
     * SECONDARY / SUPPORT
     * ===================== */
    --color-secondary: #0d6efd;
    --color-secondary-hover: #0b5ed7;
    --color-secondary-soft: #e7f1ff;

    /* =====================
     * TEXT COLORS
     * ===================== */
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --text-disabled: #adb5bd;

    /* =====================
     * BORDER / DIVIDER
     * ===================== */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;

    /* =====================
     * STATUS COLORS
     * ===================== */
    --color-success: #198754;
    --color-success-soft: #e9f7ef;

    --color-warning: #ffc107;
    --color-warning-soft: #fff8e1;

    --color-danger: #dc3545;
    --color-danger-soft: #fdecea;

    --color-info: #0dcaf0;
    --color-info-soft: #e7f9fd;

    /* =====================
     * SHADOW
     * ===================== */
    --shadow-sm: 0 2px 6px rgba(0,0,0,.08);
    --shadow-md: 0 6px 18px rgba(0,0,0,.12);
    --shadow-lg: 0 12px 30px rgba(0,0,0,.18);

    /* =====================
     * RADIUS
     * ===================== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-round: 999px;
}

body, a, h1, h2, h3, h4, h5, h6, p, span, strong, b, li, div, button{
    font-family: "Montserrat", sans-serif !important; 
}

h1 { font-size: var(--font-h1) !important; }
h2 { font-size: var(--font-h2) !important; }
h3 { font-size: var(--font-h3) !important; }
h3 { font-size: var(--font-body-large) !important; }

body,html { font-size: var(--font-body); line-height: 1.6; }

a{
    text-decoration: none !important;
}

table tbody tr>td:first-child,table thead tr>th:first-child {
    padding-left: .5em;
}
table tbody tr>td:last-child,table thead tr>th:last-child {
    padding-right: .5em;
}
table thead tr th {
    text-align: center;
}
strong, b{
    font-weight:700 !important;
}
div#content article div.entry-content h1,
div#content article div.entry-content h2,
div#content article div.entry-content h3,
div#content article div.entry-content h4,
div#content article div.entry-content strong,
div.shop-container h1.product-title,
div.shop-container h2,
div.shop-container h3,
div.shop-container h4{
    color: var(--fs-title-color);
    line-height: 1;
}
.box-text-title{
    display:flex;
    justify-content:center;
    position:relative;
}
div.box-text-title:after {
    content: "";
    position: absolute;
    width: 70%;
    top: 35%;
    border-bottom: 2px solid var(--fs-title-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    height: 0;
    z-index: -1;
}
body .button:focus-visible,body a:focus-visible,body button:focus-visible,body input:focus-visible{
    outline:none;
}
div.box-text-title:before {
    content: "";
    position: absolute;
    width: 80%;
    top: 45%;
    border-bottom: 2px solid var(--fs-title-color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    height: 0;
    z-index: -1;
}
div.shop-container .product-shop-title.header-shop-product-loop.box-text-title{
    z-index:1;
}
.button.btn-secondary{
    background: var(--fs-title-color);
}
.section-title-head{
    color:#fff;
    position: relative;
    padding:2px 10px 5px;
    width: fit-content;
    text-transform: uppercase;
    z-index: 9;
    margin:0 auto 20px;
    font-size: var(--font-center) !important;
}
.section-title-head:after{
    content:"";
    position: absolute;
    top: 0;
    left: -20px;
    width: calc(100% + 40px); /* compensate for skew */
    height: 100%;
    background-color: var(--fs-title-color);
    transform: skew(-15deg);
    z-index: -1;
    transition: .3s ease;
}
section .section-title{
    color:var(--fs-title-color);
    text-transform: uppercase;
}
section .title-center{
    justify-content:center;
}
.white-text{
    color:#fff !important;
}
.sub-section-title{
    color:var(--primary-color);
    text-transform: uppercase;
    margin-bottom:0.5rem;
    font-size:var(--font-body-large);
}
.text-justify{
    text-align:justify;
}
.text-primary,.text-highlight{
    font-size: var(--font-body-large);
    color: var(--primary-color);
    font-weight:600;
}
header#header #top-bar ul li.menu-item a,
header#header #top-bar .header-account-title,
header#header #top-bar .account-item span{
    font-size: var(--font-body);
}

header#header .logo{
    padding:10px;
}

header#header div#wide-nav>div.flex-row.container>.flex-col{
    width: 100%;
}
header#header div#wide-nav>div.flex-row.container>.flex-col>ul{
    justify-content: space-between;
}
header#header .header-nav>.html.custom{
    width:100%;
}
header#header .header-wrapper .ics-site-sologan{
    text-align: center;
}
header#header .header-wrapper .ics-site-sologan .sologan-top{
    font-weight: 600;
    color:#000;
    margin-bottom:5px;
    font-size: var(--font-body);

}
header#header .header-wrapper .ics-site-sologan .sologan-top span{
    color: var(--fs-text-highlight);
}
header#header .header-wrapper .ics-site-sologan .sologan-top span.full-quote{
    color: var(--fs-color-secondary);
    font-size: var(--font-body);
}
header#header .header-wrapper .ics-site-sologan .sologan-bottom{
    font-weight: 700;
    color: var(--fs-text-highlight);
    font-size: var(--font-h3);
    margin-bottom:10px;
    
}
header#header .header-wrapper .ics-site-sologan .sologan-bottom img{
    width:var(--font-h3);
}
header#header .header-wrapper.stuck{
    background:#fff;
}
header#header .header-main div#logo,
header#header .header-main div#logo a img{
    height:100%;
    object-fit:contain;
}
header#header .header-main div#logo a{
    display: inline-flex;
    height:100%;
    align-items: center;
}
@media (max-width:850px){
    header#header .header-main {
        height: 100px !important;
    }
     header#header .header-main .cart-img-icon{
        filter: invert(1);
    }
}
@media (max-width:549px){
    header#header .header-main {
        height: 70px !important;
    }
   
}

.btn.btn-add-acs-cart, .btn-add-set-cart {
    color: var(--color-secondary);
}
.text-danger{
    color: var(--color-danger) !important;
}

button.btn-add-to-cart,button.btn-show-more{
    background:var(--btn-color);
    color:#fff;
    margin-right: 0;
    width: 100%;
}
body .btn-swiper:after{
    content:"";
}
.swiper-button .btn-swiper{
    width: 15px;
    color: var(--btn-color);
}
.swiper-button .btn-swiper svg{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:0 10px;
    background:#ffffffCC;
}
.text-sub-primary{
    font-size:1rem;
    color: var(--fs-title-color);
    font-weight: 600;
}
.catalogue-title-primary{
    font-size:2rem;
    color: var(--fs-title-color);
    font-weight: 600;
}
.divider-separate-content{
    border:2px solid var(--primary-color);
    width: 50%;
    opacity:.7;
}
:root{
    --fs-third-primary: #21992b;
    --btn-color: #d71708;
    --btn-color-hover: #d7170870;
    --fs-text-highlight: #d71708;
    --fs-title-color: #0b31a6;
}

/* footer */
.section-footer .row-list-logo-ecomerce{
    align-items: center;
}
.section-footer .row-list-logo-ecomerce img{
    padding:5px;
    width:50px;
}
.section-footer .ux-menu-link__link{
    color:#000;
}
.section-footer .ux-menu-link:hover .ux-menu-link__link{
    color:var(--primary-color);
}
.post-excerpt.custom-post-excerpt-slider .btn-show-more{
    margin-top:20px;
}
.excerpt-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
main#main{
    position:static;
}
/* product single*/

.shop-container .block-popup-price-table {
    display:none;
    position: absolute;
    left: 0;
    top: 0;
    bottom:0;
    height: 100%;
    width:100%;
    background:rgba(0,0,0,0.7);
   
}
.shop-container .block-popup-price-table.show{
    display:block;
    z-index:9999;
}
.product-main .product-info.summary.col-fit.col.entry-summary.product-summary{
    position: inherit;
}
.product-main .product-info h1.product-title{
    font-size:var(--font-h2) !important;
}
.product-main .content-attribute-price-list hr {
    margin: 5px;
    width: 10%;
    opacity: .8;
    border-top: 2px solid var(--primary-color);
}
.product-main .content-attribute-price-list .label-has-ship-time{
    display:flex;
    flex-direction: column;
    margin:0;
}
.product-main .block-product-short-description .title-table{
    color: var(--fs-title-color);
    margin:20px 0 10px;
}
.product-main .block-product-short-description>div{
    margin-bottom:25px;
}
.product-main .block-product-short-description table,
.product-main .block-product-short-description table td,
.product-main .block-product-short-description table th{
    border: 1px solid #000;
    border-collapse: collapse;
}
.product-main .block-product-short-description .table-product-price-list .data-price .data-price-inner{
    display: flex;
    justify-content: space-between;
}

.product-main .block-product-short-description .product-accessory-price .text-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-main .block-product-short-description .product-accessory-price .text-inner .group-left{
    display:flex;
    flex-direction: column;
}
.product-main .block-product-short-description .product-accessory-price .data-price .text-inner{
    display:flex;
    justify-content: space-between;
}
.product-main .group-icon-ecm-link img.img-preview-emc-link {
    width: 30px;
}
.product-main .row-ecommercial {
    display: flex;
    align-items: center;
    margin:20px 0;
}
.product-main .row-ecommercial .title-row-ecm{
    margin-bottom:0;
    margin-right:20px;
}
.product-main .row-ecommercial div.group-icon-ecm-link a {
    margin-right: 10px;
}
.product-main table.tahaeble.table-product-price-list{
    border-spacing: 0 5px;
}
.product-main .row-group-contact-information {
    border-top: 1px solid var(--primary-color);
    padding: 10px;
}
.product-main table.table.table-product-price-list td.label-item-addtocart-row.label-product form{
    display:flex;
    align-items:center;
}
.product-accessories-detail-list .table-product-list .rowspan-main .group-title-acs{
    display:flex;
    gap:10px;
    align-items: center;
}
.product-accessories-detail-list .table-product-list .rowspan-main .group-title-acs .acs-short-information{
    display:flex;
    flex-direction: column;
    gap:5px;
}
.product-accessories-detail-list .table-product-list .group-form-add-cart .storage-information{
    display:flex;
    flex-direction: column;
    width: 45%;
}
.row-group-contact-information .custom-contact-box-on-product{
    border-right:1px solid var(--primary-color);
}
td.row-form b {
    text-transform: uppercase;
}
td.row-form .qty--stock{
    margin-top:5px;
}
.product-accessories-detail-list .table-product-list.table-accessory-detail img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.product-accessories-detail-list .table-product-list.table-accessory-detail img.img-preview-emc-link {
    width: 30px;
    margin-right: 5px;
}
.product-accessories-detail-list .table-product-list.table-accessory-detail td.text-center.row-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-accessories-detail-list .bundle-group.bundle-detail-acs .bundle-image-description {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-right: 15px;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}
.product-accessories-detail-list .group-bundle-catalogue-detail-acs .catalogue-bundle-group-data.row.row-collapse {
    margin-bottom: 50px;
}
hr.bundle-separator-line {
    border: 2px solid;
    opacity: .5;
    border-radius: 20px;
    width: 70%;
    margin: 0 auto 20px;
}
.product-accessories-detail-list .table-product-list.table-accessory-detail tbody>tr:nth-child(3n-2) td.rowspan-main,
.product-accessories-detail-list .table-product-list.table-accessory-detail tbody>tr:nth-child(3n) td{
    border-bottom:2px solid var(--fs-color-secondary);
}
.product-accessories-detail-list .acs-short-information{
    display:flex;
    flex-direction: column;
    gap:5px;
}
.product-container .product-bundle-detail-list .wrapper-group-bundle-each{
    margin-bottom:20px;
}
.product-container .product-bundle-detail-list .catalogue-bundle-group-data .col-group-image-bundle a.btn-info{
    display:flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 10px;
    padding: 20px 10px;
    margin:10px;
    transition:.5s ease;
}
.product-container .product-bundle-detail-list .catalogue-bundle-heading{
    font-size:var(--font-h3);
    color:#000;
}
.product-container .product-bundle-detail-list .catalogue-bundle-group-data .col-group-image-bundle a.btn-info:hover{
    transform:scale(1.1);
}
.product-container .product-bundle-detail-list .catalogue-bundle-group-data .col-group-image-bundle a.btn-info hr.divider-bundle {
    background: linear-gradient(circle, var(--primary-color), #000000, var(--primary-color));
    height: 2px;
    width: 80%;
    opacity:1;
}
.product-container .product-bundle-detail-list .catalogue-bundle-group-data span.wrapper-img-bundle img {
    height: 100%;
    object-fit: contain;
}

.product-container .product-bundle-detail-list .catalogue-bundle-group-data span.wrapper-img-bundle {
    height: 200px;
}
button.btn-add-cart{
    margin:0;
}
a.btn-show-modal{
    cursor:pointer;
}

form.form-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}
form.form-quantity.form-has-stock{
    flex-direction: column;
    width:100%;
}
form.form-quantity.form-has-stock .quantity{
    width:60%;
    margin:0 auto;
}
form.form-quantity button.btn-action-qty{
    margin: 0;
    padding:0 0.5rem;
    color:#fff;
}
form.form-quantity button.btn-action-qty i{
    margin:0 !important;
}
form.form-quantity button.btn-add-cart{
    margin:0;
}
form.form-quantity input.input-quantity-each{
    margin: 0;
    line-height: var(--font-body);
    font-size: var(--font-body);
    width:35%;
    border-radius: 0;
    border:2px solid var(--primary-color);
    border-right:0;
    border-left:0;
    padding: .35em;
    text-align:center;
    height: fit-content;
}
form.form-quantity .quantity input.input-quantity-each{
    width:100%;
    max-width:none;
    min-width:3rem;
}
.product-main table.table.table-product-price-list td.label-item-addtocart-row.label-product {
    width: 25%;
}
.shop-container .group-bundle-catalogue-detail-acs .bundle-image-description img {
    height: 200px;
    object-fit: contain;
}
/* custom modal */
.ux-body-overlay.show{
    z-index: 9999;
    opacity:1;
    background-color: rgba(0, 0, 0, .5);
    visibility: visible;
}
.modal.modal-popup{
    display:none;
    position:absolute;
    top:0;
    left:0;
    background:rgba(0,0,0,0.5);
    width:100%;
    height:100%;
    z-index:99999;
    justify-content:center;
}
.popup-add-detail-bundle.modal-popup.show{
    display:flex;
}
.popup-add-detail-bundle.modal-popup .modal-dialog.modal-lg{
    position:fixed;
    width:90%;
    margin:0 auto;
    background:#fff;
}
.popup-add-detail-bundle.modal-popup .modal-dialog.modal-lg .modal-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid #e9ecef;
}
.popup-add-detail-bundle.modal-popup .modal-dialog.modal-lg .modal-header .modal-title{
    margin:0;
    font-size:var(--font-center);
    color:#000;
    text-transform:uppercase;
}
.popup-add-detail-bundle.modal-popup .modal-dialog.modal-lg .modal-header .btn-close-popup{
    margin:0;
    line-height: 0;
    height:fit-content;
    min-height:0;
    font-size:var(--font-center);
    padding:15px 10px;
    color:#fff;   
}
.popup-add-detail-bundle.modal-popup .modal-dialog.modal-lg .modal-body{
    padding:0 20px;
}
.popup-add-detail-bundle.modal-popup .modal-image-bundle-description{
    text-align:center;
    height:300px;
}
.popup-add-detail-bundle.modal-popup .modal-image-bundle-description img{
    height:100%;
    object-fit:cover;
    margin:0 auto;
    display:block;
}
.popup-add-detail-bundle.modal-popup .img-preview-emc-link{
    width:30px;
    margin-bottom:10px;
}
.popup-add-detail-bundle.modal-popup .rowspan-main .acs-image-description img{
    width:100px;
}
.popup-add-detail-bundle.modal-popup td.text-center.row-detail-information-warehouse .storage-information{
    display:block;
    margin-bottom:5px;
}
.popup-add-detail-bundle.modal-popup td.rowspan-main,
.popup-add-detail-bundle.modal-popup table.scroll-table tbody>tr:nth-child(3n) td{
    border-bottom:1px solid var(--fs-color-secondary);
}
.popup-add-detail-bundle.modal-popup .modal-detail-acs-bundle {
    height: 50vh;
    overflow: scroll;
    border: 1px solid var(--fs-color-secondary);
    border-top-width:3px;
}
span.group-title-acs {
    display: flex;
    flex-direction: column;
}
.popup-add-detail-bundle.modal-popup .modal-footer {
    display: flex;
    justify-content: end;
    padding: 10px 0 0;
}
.zoom-image-container {
    position: relative;
    width: fit-content;
    overflow: hidden;
    height: 100%;
    margin: 0 auto;
}
.zoom-lens {
  position: absolute;
  border: 1px solid #000;
  width: 150px;
  height: 150px;
  border-radius:50%;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: 200%; /* zoom factor */
  pointer-events: none;
  z-index: 10;
}
.modal-popup .btn-close{
    background:red;
}
a.btn-add-cart{
    cursor:pointer;
}
thead{
    background:var(--fs-color-secondary);
    color:#fff;
}
thead td{
    color:#fff;
    font-weight:bold;
}
table tbody td,table tbody td:first-child,
table tbody td,table tbody td:last-child{
    padding:5px 10px;
}
.catalogue-bundle-group.engine_bundle_group {
    border-bottom: 1px solid;
}
h1.product-title.product_title.entry-title .sub-eng-title {
    font-size: var(--font-body);
}
.box-gr-color .group-color span{
    display:inline-block;
}
button.btn-filter-product-detail{
    position:relative;
}
.spinner-load{
    width: 24px;
    height: 24px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position:absolute;
    left:50%;
    top:20%;
}
button.btn-filter-product-detail.show-spinner{
    background:var(--btn-color-hover) !important;
}
button.btn-filter-product-detail.show-spinner .spinner-load {
    display:inline-block;
}
.mfp-content #login-form-popup{
	max-width:100%;
}
.mfp-content #login-form-popup .account-logo img{
	width:150px;
	height:auto;
}
/* sidebar product */
#custom-product-sidebar .sidebar-content.sidebar-filter-content form.form-filter ul {
    list-style: none;
    margin: 0;
}
#custom-product-sidebar .label-filter-group-selector {
    font-weight: bold;
    color: #fff;
    background: var(--fs-title-color);
    padding: 10px 20px;
    text-transform:uppercase;
}
#custom-product-sidebar .group-filter-url-selector{
    padding:10px 1.3rem;
    box-shadow:rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom:20px;
}
#custom-product-sidebar .group-filter-url-selector a{
    color:#777;
}
#custom-product-sidebar .group-filter-url-selector .term-filter.term-selector-sidebar{
    margin-bottom:10px;
}
#custom-product-sidebar .group-filter-url-selector a:hover{
    color: var(--primary-color);
}
#custom-product-sidebar .sidebar-content.sidebar-filter-content form.form-filter ul.list-filter-term>li{
    margin:0;
    margin-bottom:15px;
}
#custom-product-sidebar .sidebar-title.sidebar-filter-title {
    font-size: var(--font-body-large);
    font-weight: bold;
    color:#fff;
    text-transform: uppercase;
    padding:10px 20px;
    background: var(--fs-title-color);
}
#custom-product-sidebar .sidebar-title.sidebar-filter-title p{
    margin: 0;
}
#custom-product-sidebar .sidebar-content.sidebar-filter-content {
    padding: 5px 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#custom-product-sidebar form.form-filter ul .group-data-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right:20px;
}
#custom-product-sidebar form.form-filter ul .group-data-input input {
    margin: 0;
}
#custom-product-sidebar form.form-filter li.item-term-child {
    margin-bottom: 0;
}
#custom-product-sidebar form.form-filter .group-data-parent.group-data-input {
    font-weight: bold;
    color:#000;
    background: #0b31a650;
}
#custom-product-sidebar form.form-filter .group-data-parent.group-data-input span.item-text{
    padding:5px 5px 5px 10px;
    width:100%;
}
#custom-product-sidebar form.form-filter ul.list-filter-term-child.child-term-level-1 {
    max-height: 120px;
    overflow: scroll;
}
#custom-product-sidebar form.form-filter .group-data-parent{
    cursor: pointer;
}
#custom-product-sidebar form.form-filter .group-child-term.group-term-child-level-1{
    padding:10px 0;
    border: 2px solid #0b31a650;
}
#custom-product-sidebar .group-sidebar-accessories-searches .form-group {
    margin-bottom: 30px;
}
/* trang cửa hàng và danh mục sản phẩm */
.row.category-page-row .product-list.product-separator-by-type {
    padding: 0;
}
.product-separator-group .product-acs-item{
    padding: 10px;
    border: 1px solid var(--fs-color-secondary);
    border-radius:10px;
    overflow: hidden;
    position: relative;
    height:100%;
    display: flex;
    justify-content: center;
}
.product-separator-group .product-acs-item:hover{
    border-color:var(--primary-color);
}
.product-separator-group .product-acs-item:hover img{
    transform: scale(1.15);
}
.product-separator-group .product-shop-title.header-shop-product-loop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border: .5px solid var(--fs-color-secondary);;
    border-radius: 10px;
    box-shadow:  var(--fs-color-secondary) 0px 75px 60px -5px inset,  var(--fs-color-secondary) 0px 18px 36px -18px inset;
    margin: 0 10px 20px;
}
.product-separator-group .product-shop-title.header-shop-product-loop a{
    color:#fff;
}
.product-separator-group .product-shop-title.header-shop-product-loop h2 {
    margin: 0;
    color: #fff;
    text-transform:uppercase;
    font-size: var(--font-h3) !important;
}
.product-separator-group .product-shop-title.header-shop-product-loop a {
    display: flex;
    width: 25%;
    justify-content: flex-end;
    align-items: center;
}
.product-separator-group .product-shop-title.header-shop-product-loop a span{
    margin-right:5px;
}
.product-separator-group .product-acs-item .product-item-image{
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-separator-group .product-acs-item a{
    color: #00000080;
    position:relative;
    height:100%;
    width:100%;
    display:inline-block;
}
.product-separator-group .product-acs-item a h3.product-title {
    text-align: center;
}
.hide-on-desktop{
    display:none;
}
.product-separator-group .product-acs-item .product-group-data-item,
.product-separator-group .product-acs-item .product-group-data-item .item-data-label{
    display:flex;
}
.product-separator-group .product-acs-item .product-group-data-item .item-data-label *{
    white-space: nowrap;
    color: #fff;
    font-weight:bold;
}
.product-separator-group .product-acs-item .product-group-data-item .item-data-label .product-group-data-icon {
    width: 20px;
    margin-right: 5px;
}
.product-separator-group .product-acs-item .product-group-data-item .item-data-value {
    overflow: hidden;
    margin-left: 5px;
}
.product-separator-group .product-acs-item .product-group-data-value{
    /* white-space: nowrap; */
    overflow: hidden;
    /* text-overflow: ellipsis; */
}
.product-separator-group .product-acs-item .product-item-image img {
    height: 100%;
    object-fit: contain;
    transition: .5s ease;
}
.product-separator-group .product-acs-item p.product-title {
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    color: var(--fs-title-color);
    font-size:var(--font-small);
    font-weight:600;
}
.product-separator-group .product-acs-item .product-detail.product-group-data{
    position: absolute;
    top:0;
    left:0;
    padding-right: 10px;
    transform: translateX(-100%);
    transition:all .3s ease;
    padding:5px;
    z-index:99;
    color:#fff;
    font-size:var(--font-small);
}
.product-separator-group .product-acs-item a:before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border-radius: 10px;
    background: rgba(0,0,0,0.7);
    z-index:9;
    transform: translateX(-120%);
    transition:all .3s ease;
}

.product-separator-group .product-acs-item:hover .product-detail.product-group-data, .product-separator-group .product-acs-item:hover a:before{
    transform: translateX(0);
}
.product-separator-group .product-row-view-more.product-shop-row-view-full {
    text-align: right;
}
.product-separator-group .row.row-collapse.row-product-list .columns{
    padding:10px;
}
.product-separator-group .row.row-collapse.row-product-list .columns .col-inner{
    height: 100%;
}
.product-list-wrapper .product-separator-group{
    margin-bottom:50px;
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar a{
    display:flex;
    align-items: center;
    padding:15px;
    color:#000;
    transition:.5s ease
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar a:hover{
    background: var(--primary-color);
    color:#fff;
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar a:hover .acs-title{
    color:#fff;
}
.group-sidebar-accessories-searches .group-accessories-searches {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar .acs-thumbnail{
    width:20%;
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar .acs-data{
    width:80%;
    padding-left:10px;
}
.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar .acs-data .acs-title{
    font-weight:bold;
    margin:0;
    color: var(--fs-title-color);
}

.group-sidebar-accessories-searches .group-accessories-searches .block-each-product-sidebar .acs-data .acs-bundle-data {
    white-space: nowrap;
    overflow: hidden;
    margin:0;
    text-overflow: ellipsis;
}
.category-page-layout-specific .product-shop-title.header-shop-product-loop{
    display:none;
}
@media screen and (max-width:850px) {
    .hide-on-desktop{
        display:block;
    }
    .product-separator-group .product-acs-item a .product-item-image{
        width:35%;
    }
    .product-separator-group .product-acs-item a .product-item-data{
        width:65%;
    }
    .product-separator-group .product-acs-item .product-group-mobile-top{
        display:flex;
    }
    .product-separator-group .product-acs-item .product-detail.product-group-data{
        position:unset;
        transform:none;
        color:#000;
    }
    .product-separator-group .product-acs-item .product-group-data-item .item-data-label *{
        color:var(--primary-color);
    }
    .product-separator-group .product-acs-item .product-detail.product-group-data>div:nth-child(n+3){
        display:none !important;
    }
}   
@media screen and (max-width:550px) {
    .product-separator-group.product-accessories-group .row.row-collapse.row-product-list>div.columns:nth-child(n+7){
        display:none;
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

/* cart */
.woocommerce-cart-form .product-short-information .flex{
    gap:10px;
    align-items: center;
}
.woocommerce-cart-form .product-short-information .flex img{
    width:100px;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item .item-center{
    text-align:center;
}
ul.woocommerce-mini-cart.cart_list.product_list_widget span.product-warehouse{
    font-size:var(--font-small);    
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item .product-info{
    max-width: 250px;
}

/* Đang xử lý */
.status-on-hold{
    background-color: #3498db !important;
}

/* Chờ xử lý */
.status-processing{
    background-color: #f1c40f !important;
}

/* Đã gửi 1 phần (cần tạo custom status) */
.status-partially-shipped{
    background-color: #ff9800 !important;
}

/* Hoàn tất */
.status-completed{
    background-color: #2ecc71 !important;
}

/* Huỷ */
.status-cancelled{
    background-color: #e74c3c !important;
}
td.order-status.item-center span {
    width: 100%;
    display: inline-block;
    padding: 7px;
    border-radius: 50px;
    color:#fff;

}
.block-general-information .order-information span.amount{
    color:#999;
}

button.open-popup-excel-action{
    border:2px solid #fff;
}

.product-quick-view-container .product-lightbox-inner .content-attribute-price-list,
.product-quick-view-container .product-lightbox-inner .content-attribute-ecom-platform{
    display:none;
}

.popup-waiting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.popup-waiting-overlay .spinner {
  border: 4px solid #ccc;
  border-top: 4px solid #0073aa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
a{
    cursor: pointer !important;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.select2-container .selection .select2-selection{
    padding:0 20px 0 10px !important;
}
.group-button-form-filter {
    margin-top:20px;
}

.col-no-padding-bottom{
    padding-bottom:0 !important;
}
/* =============== LIGHTBOX OVERLAY =============== */
.mfp-content #login-form-popup{
	display:flex;
}
div.lightbox-content {
    position: fixed;
    top:0;
    left: 0;
    z-index: 999;
    max-width:100%;
    height:100%;
    width:100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display:none;
    align-items: center;
    justify-content: center;
}
div.lightbox-content.active{
  display: flex;
}
div.lightbox-content .light-box-modal{
  background: #fff;
  border-radius:16px;
}
div.lightbox-content .light-box-modal .modal-header{ 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    background: var(--fs-color-primary);
    color:#fff;
    padding:10px 20px;
    border-radius:16px 16px 0 0;
}
div.lightbox-content .light-box-modal .modal-header p.modal-title{
  margin:0;
  font-size: var(--font-h3);
  font-weight: bold;
}
div.lightbox-content .light-box-modal .modal-header button{
  margin: 0;
}
div.lightbox-content .light-box-modal .modal-header button span{
  font-size: var(--font-h3);
}
div.lightbox-content .light-box-modal .modal-body{
  padding:20px;
}

.box-preview-check-customer-login{
    padding:20px 25px;
}
.box-preview-check-customer-login .customer-not-login,
.box-preview-check-customer-login .customer-not-login span{
    font-size: var(--font-body);
}
.box-preview-check-customer-login ul a{
    color: var(--#000);
}
.box-preview-check-customer-login ul li{
    margin-bottom:10px;
}
.capitalize{
    text-transform: capitalize !important;
}
.related-products-wrapper.related{
    margin-top:50px;
}

.pagination-wrapper {
    text-align: center;
    margin: 30px 0;
}

.pagination-wrapper ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 8px; /* khoảng cách giữa các trang */
    flex-wrap: wrap;
}

.pagination-wrapper ul li {
    display: inline-block;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    height: 100%;
}

.pagination-wrapper ul li a:hover {
    background-color: #0073aa; /* màu nền khi hover */
    color: #fff; /* màu chữ khi hover */
    border-color: #0073aa;
}

.pagination-wrapper ul li span.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
}

.pagination-wrapper ul li .fa-solid {
    font-size: 12px;
}
.pagination-wrapper ul li .data-inner-input-compact{
    display:flex;
    align-items: center;
    gap:15px;
}
.pagination-wrapper ul li .data-inner-input-compact label{
    margin:0;
}
.pagination-wrapper ul li .data-inner-input-compact input{
    margin:0;
}
.pagination-wrapper ul li .data-inner-input-compact span{
    border:none;
    padding:0;
}
.pagination-wrapper ul li .data-inner-input-compact div.group-number{
    display:flex;
    align-items: center;
    gap:5px
}
div#wrapper div.shop-page-title div.flex-col .woocommerce-result-count,
div#wrapper div.shop-page-title div.flex-col .woocommerce-ordering{
    display:none;
}

.acc-image-wrap-expand {
    position: relative;
    display: inline-block;
}

.acc-image-wrap-expand .btn-expand-image {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0;
    display:none;
}

.acc-image-wrap-expand .btn-expand-image:hover {
    background: rgba(0,0,0,0.8);
}

.acc-image-wrap-expand:hover .btn-expand-image{
    display:flex;
}

/* mega menu */
.sub-menu.nav-dropdown .section-mega-menu-product-and-service{
    min-width:450px;
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .mega-menu-heading{
    font-size: var(--font-body);
    margin-bottom:10px;
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .mega-menu-heading *{
    color: var(--fs-title-color);
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .stack-menu-left-heading .menu-sub-heading{
    width: 150px;
    padding-top:.3em;
    font-size: var(--font-small);
    color: #333;
}
div.row-stack-menu>div.stack.stack-menu {
    width: 33.33%;
    padding: 10px;
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .ux-menu-link.flex.menu-item {
    margin:0 !important;
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .ux-menu-link.flex.menu-item .ux-menu-link__text{
    font-size: var(--font-small);
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .ux-menu-link.flex.menu-item .ux-menu-link__link{
    min-height: auto;
}
.sub-menu.nav-dropdown .section-mega-menu-product-and-service .ux-menu.stack{
    margin-top:0 !important;
}
/* =====================
 * ANIMATIONS
 * ===================== */
@keyframes zoomFade {
    0% { opacity: .7; transform: scale(.9); }
    100% { opacity: 0; transform: scale(1.3); }
}

@keyframes zoom {
    0%,100% { transform: scale(.9); }
    50% { transform: scale(1); }
}

@keyframes shake {
    0%,50%,100% { transform: rotate(0) scale(1); }
    10%,30% { transform: rotate(-25deg); }
    20%,40% { transform: rotate(25deg); }
}
span.select2-dropdown.select2-dropdown--below{
    margin-top:30px;
}
.ht-select2{
    opacity:0;
}
.select2-initialized{
    opacity:1;
}

.woocommerce-checkout #order_review .checkout-product-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.woocommerce-checkout #order_review .checkout-product-thumb{
    flex:0 0 64px;
}

.woocommerce-checkout #order_review .checkout-product-thumb img{
    width:64px;
    height:64px;
    object-fit:cover;
    border-radius:var(--radius-md);
    border:1px solid var(--border-light);
    background:var(--bg-light);
}

.woocommerce-checkout #order_review .checkout-product-info{
    flex:1;
    min-width:0;
}

.woocommerce-checkout #order_review .checkout-product-title{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:6px;

    font-size:var(--font-small);
    font-weight:600;
    color:var(--text-dark);
    line-height:1.5;
}

.woocommerce-checkout #order_review .checkout-product-title .product-quantity{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:2px 8px;
    border-radius:var(--radius-round);

    background:var(--color-primary-soft);
    color:var(--color-primary);

    font-size:var(--font-small);
    font-weight:600;
}

.woocommerce-checkout #order_review .checkout-product-sku,
.woocommerce-checkout #order_review .checkout-product-warehouse{
    display:flex;
    align-items:center;
    gap:4px;

    margin-bottom:4px;

    font-size:var(--font-small);
    color:var(--text-muted);
    line-height:1.5;
}

.woocommerce-checkout #order_review .checkout-product-sku strong,
.woocommerce-checkout #order_review .checkout-product-warehouse strong{
    color:var(--text-dark);
    font-weight:600;
}

.woocommerce-checkout #order_review .checkout-product-sku{
    color:var(--color-secondary);
}

.woocommerce-checkout #order_review .checkout-product-warehouse{
    color:var(--color-success);
}

.woocommerce-checkout #order_review .checkout-product-info dl.variation{
    margin-top:8px;
    margin-bottom:0;
    padding:8px 12px;

    border:1px solid var(--border-light);
    border-radius:var(--radius-md);

    background:var(--bg-light);
}

.woocommerce-checkout #order_review .checkout-product-info dl.variation dt{
    color:var(--text-dark);
    font-size:var(--font-small);
    font-weight:600;
}

.woocommerce-checkout #order_review .checkout-product-info dl.variation dd{
    color:var(--text-muted);
    font-size:var(--font-small);
}

.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-name{
    padding-top:16px;
    padding-bottom:16px;
}

.lighboxExpandImageCustom{
		position: absolute;
		top:0;
		left:0;
		transform: scale(500%) translate(70%, 0%);
		width: 100%;
		height: 100%;
		/* background: rgba(0,0,0,0.7); */
		z-index: 99999;
		display:none;
	}
	.product-card-item .lighboxExpandImageCustom{
        transform: scale(2.2) translate(80%, 0%);
    }

    .product-separator-group .row-product-list>.columns:not(:nth-child(3n+1)) .product-card-item .lighboxExpandImageCustom{
            transform: scale(2.2) translate(-80%, 0%);
    }
   
    .lighboxExpandImageCustomCatalog{
        position: fixed;
		top:50%;
		left:50%;
		transform:translate(-50%, -50%);
		width: 500px;
		height: 500px;
		background: rgba(0,0,0,0.7);
		z-index: 99999;
		display:none;
    }
    .lighboxExpandImageCustomCatalog.fullcenter{
        width:100%;
        height: 100%;
    }
    .lighboxExpandImageCustom.is-active,
    .lighboxExpandImageCustomCatalog.is-active{
		display:block;
	}
     .swiper-slide .product-card-item .lighboxExpandImageCustom.is-active{
        display:none;
    }
	.lighboxExpandImageCustom .light-box-header,
    .lighboxExpandImageCustomCatalog .light-box-header{
		position: absolute;
		right: 30px;
		top: 30px;
		font-size: 2rem;
		z-index: 9999;
		cursor: pointer;
		color: #Fff;
	}
	.lighboxExpandImageCustom .lightbox-body,
    .lighboxExpandImageCustomCatalog .lightbox-body{
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.lighboxExpandImageCustom .lightbox-body .lightbox-inner,
    .lighboxExpandImageCustomCatalog .lightbox-body .lightbox-inner{
		width: fit-content;
		text-align: center;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 80%;
		width: 100%;
	}
	.lighboxExpandImageCustom .lightbox-body .lightbox-inner button,
    .lighboxExpandImageCustomCatalog .lightbox-body .lightbox-inner button{
		margin:0;
	}
	.lighboxExpandImageCustom .lightbox-body .lightbox-inner .lightbox-image,
    .lighboxExpandImageCustomCatalog .lightbox-body .lightbox-inner .lightbox-image {
        width: 95%;
        height: 100%;
        max-height: 100%;
        background: #fff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }
	.lighboxExpandImageCustom .lightbox-body .lightbox-inner .lightbox-image img,
    .lighboxExpandImageCustomCatalog .lightbox-body .lightbox-inner .lightbox-image img{
		height:100%;
		object-fit: contain;
	}
	.lighboxExpandImageCustom .lightbox-body .lightbox-inner .lightbox-title,
    .lighboxExpandImageCustomCatalog .lightbox-body .lightbox-inner .lightbox-title{
		color: #fff;
		text-transform: uppercase;
		padding: 10px;
		width: 100%;
		background: #000;
		width: 70%;
	}
	.lighboxExpandImageCustom .close-expand-lightbox-image,
    .lighboxExpandImageCustomCatalog .close-expand-lightbox-image{
		margin:0;
		padding: 0;
		line-height: 1;
		min-height: auto;
	}
    
    .close-expand-lightbox-image {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 1001;
    display:none;
}
.lighboxExpandImageCustomCatalog.fullcenter .close-expand-lightbox-image{
    display:flex;
}
.close-expand-lightbox-image:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.close-expand-lightbox-image:focus {
    outline: none;
}
.html.custom .gtranslate_wrapper {
    position: relative;
    z-index: 9999;
}

.html.custom .gtranslate_wrapper .gt_option{
    position: absolute;
    top: 100%;
    left: 0;
}
.product-status-notice-indes .ht-product-status-notices {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-status-notice-indes .ht-product-status-notice {
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    border-left: 4px solid;
}

.product-status-notice-indes .ht-notice--cart {
    background: #fff8e1;
    border-color: #f0b429;
    color: #7a5b00;
}

.product-status-notice-indes .ht-notice--pending {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #0d4a7a;
}

.product-status-notice-indes .ht-notice--history {
    background: #f1f8f4;
    border-color: #4caf50;
    color: #2e5c34;
}
.button.button-full-width {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width:100%;
    margin: 0 15px !important;
    padding: 8px 15px;
    background: linear-gradient(
        180deg,
        #36B42B 0%,
        #2A981F 55%,
        #237D1A 100%
    );
    color: #fff !important;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow:
        0 10px 24px rgba(42,152,31,.25),
        inset 0 1px 0 rgba(255,255,255,.3);
    transition: all .3s ease;
}
.button.button-full-width:hover{
    background: linear-gradient(135deg, #24851A 0%, #2FAF24 100%);
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(42, 152, 31, .40),
        inset 0 1px 0 rgba(255,255,255,.35);
}