
 ul.products li.product {
        padding: 0 !important;
        margin-bottom: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
    ul.products { gap: 18px !important; row-gap: 22px !important; }

    .cpcard-wrap {
        position: relative;
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 2px 14px rgba(13,63,152,.07);
        border: 1px solid #e4eaf5;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: box-shadow .25s, transform .25s;
    }
    .cpcard-wrap:hover {
        box-shadow: 0 10px 32px rgba(13,63,152,.15);
        transform: translateY(-4px);
    }
    .cpcard-badge {
        position: absolute;
        top: 10px; left: 10px; z-index: 10;
        background: #ff7a00; color: #fff;
        font-size: 10px; font-weight: 700;
        padding: 4px 10px; border-radius: 20px;
        display: inline-flex; align-items: center; gap: 4px; line-height: 1;
    }
    .cpcard-img-link {
        display: block !important;
        overflow: hidden; background: #f5f7fb;
        aspect-ratio: 1/1; text-decoration: none !important;
    }
    .cpcard-img-link img {
        width: 100% !important; height: 100% !important;
        object-fit: contain !important; padding: 12px !important;
        margin: 0 !important; transition: transform .35s;
    }
    .cpcard-wrap:hover .cpcard-img-link img { transform: scale(1.06); }

    .cpcard-body {
        display: flex; flex-direction: column; flex: 1;
        padding: 12px 14px 14px; gap: 6px;
    }
    .cpcard-title {
        font-size: 13px !important; font-weight: 600 !important;
        line-height: 1.5 !important; margin: 0 !important; padding: 0 !important;
        color: #0d3f98 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        min-height: 2.8em;
    }
    .cpcard-title a { color: #0d3f98 !important; text-decoration: none !important; }
    .cpcard-title a:hover { color: #ff7a00 !important; }

    .cpcard-desc {
        font-size: 11px; color: #7a8aaa; margin: 0; line-height: 1.5;
        display: -webkit-box; -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; overflow: hidden;
    }
    .cpcard-price-wrap {
        display: flex; align-items: baseline;
        flex-wrap: wrap; gap: 5px; margin-top: 2px;
    }
    .cpcard-price-sale,
    .cpcard-price-sale .woocommerce-Price-amount,
    .cpcard-price-sale bdi {
        font-size: 13px !important; font-weight: 700 !important;
        color: #ff7a00 !important; line-height: 1 !important;
    }
    .cpcard-price-regular,
    .cpcard-price-regular .woocommerce-Price-amount,
    .cpcard-price-regular bdi {
        font-size: 11px !important; color: #b0bac8 !important;
        text-decoration: line-through !important; font-weight: 400 !important;
    }
    .cpcard-discount-tag {
        background: #fff0e6; color: #ff7a00;
        font-size: 10px; font-weight: 700;
        padding: 2px 7px; border-radius: 20px;
        border: 1px solid #ffd0a0; line-height: 1.4;
    }
    .cpcard-footer {
        display: flex; align-items: center;
        justify-content: space-between;
        margin-top: auto; padding-top: 10px;
        border-top: 1px solid #edf1f9; gap: 6px;
    }
    .cpcard-stock {
        font-size: 11px; font-weight: 600;
        display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
    }
    .cpcard-stock.in-stock       { color: #16a34a; }
    .cpcard-stock.in-stock i     { color: #16a34a; font-size: 13px; }
    .cpcard-stock.out-of-stock   { color: #dc2626; }
    .cpcard-stock.out-of-stock i { color: #dc2626; font-size: 13px; }

    .cpcard-buy-btn {
        display: inline-flex !important; align-items: center !important;
        justify-content: center !important; gap: 5px !important;
        background: #0d3f98 !important; color: #fff !important;
        font-size: 11px !important; font-weight: 700 !important;
        padding: 7px 13px !important; border-radius: 8px !important;
        text-decoration: none !important; white-space: nowrap;
        border: none !important; cursor: pointer;
        transition: background .2s, transform .15s; line-height: 1;
    }
    .cpcard-buy-btn i { font-size: 11px !important; }
    .cpcard-buy-btn:hover { background: #ff7a00 !important; color: #fff !important; transform: scale(1.04); }
    .cpcard-buy-btn.disabled { background: #c5cfe0 !important; cursor: not-allowed; pointer-events: none; transform: none !important; }

    @media (max-width: 768px) {
        ul.products  { gap: 10px !important; row-gap: 14px !important; }
        .cpcard-body { padding: 10px 11px 12px; gap: 5px; }
        .cpcard-title { font-size: 12px !important; min-height: auto; }
        .cpcard-price-sale,
        .cpcard-price-sale .woocommerce-Price-amount { font-size: 13px !important; }
        .cpcard-buy-btn { padding: 6px 10px !important; font-size: 10px !important; }
    }



#cpopup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99998;
    animation: cpFadeIn .2s ease;
}
/* Popup box */
#cpopup-box {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.92);
    z-index: 99999;
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    width: 92%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(13,63,152,.18);
    animation: cpPopIn .25s ease forwards;
    text-align: center;
}
@keyframes cpFadeIn { from{opacity:0} to{opacity:1} }
@keyframes cpPopIn  { from{opacity:0;transform:translate(-50%,-50%) scale(.88)} to{opacity:1;transform:translate(-50%,-50%) scale(1)} }

/* Icon check */
#cpopup-box .cp-icon {
    width: 56px; height: 56px;
    background: #edfaf3;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
#cpopup-box .cp-icon i { color: #16a34a; font-size: 26px; }

/* Tiêu đề */
#cpopup-box .cp-title {
    font-size: 16px;
    font-weight: 700;
    color: #0d3f98;
    margin: 0 0 6px;
}
/* Tên sản phẩm */
#cpopup-box .cp-name {
    font-size: 13px;
    color: #6b7a99;
    margin: 0 0 20px;
    line-height: 1.5;
}
/* Nút */
#cpopup-box .cp-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
#cpopup-box .cp-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 9px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
    line-height: 1;
}
#cpopup-box .cp-btn-continue {
	margin: 0;
    background: #f0f4ff;
    color: #0d3f98 !important;
}
#cpopup-box .cp-btn-continue:hover { background: #dce6ff; transform: scale(1.03); }
#cpopup-box .cp-btn-cart {
    background: #0d3f98;
    color: #fff !important;
}
#cpopup-box .cp-btn-cart:hover { background: #ff7a00; transform: scale(1.03); }

/* Close button */
#cpopup-box .cp-close {
    position: absolute;
    top: 12px; right: 14px;
    background: none; border: none;
    font-size: 18px; color: #aab0c0;
    cursor: pointer; line-height: 1;
    padding: 4px;
}
#cpopup-box .cp-close:hover { color: #0d3f98; }
.mfp-content.off-canvas-cart {
    max-width: 420px;
    width: 100%;
    height: 100vh;
    margin-left: auto;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(13, 63, 152, 0.12);
    animation: cartSidebarIn 0.3s ease;
}

#cart-popup {
    height: 100%;
    background: #ffffff;
}

#cart-popup .cart-popup-inner {
    height: 100%;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

#cart-popup .cart-popup-title {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #ffffff;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e4eaf5;
}

#cart-popup .cart-popup-title .heading-font {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0d3f98;
    letter-spacing: 0.3px;
}

#cart-popup .cart-popup-title .is-divider {
    display: none;
}

#cart-popup .widget_shopping_cart,
#cart-popup .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

#cart-popup .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding-right: 2px;
}

#cart-popup .woocommerce-mini-cart::-webkit-scrollbar {
    width: 6px;
}

#cart-popup .woocommerce-mini-cart::-webkit-scrollbar-thumb {
    background: #d8e0ef;
    border-radius: 20px;
}

#cart-popup .woocommerce-mini-cart-item {
    position: relative;
    margin: 0; 
    background: #ffffff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(13, 63, 152, 0.07);
}

#cart-popup .woocommerce-mini-cart-item > a.remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    min-height: 22px;
    line-height: 20px;
    border-radius: 50%;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626 !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    z-index: 3;
}

#cart-popup .woocommerce-mini-cart-item > a.remove:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff !important;
    transform: rotate(90deg);
}

  
#cart-popup .woocommerce-mini-cart-item > a:not(.remove) {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #0d3f98;
}

#cart-popup .woocommerce-mini-cart-item > a:not(.remove):hover {
    color: #ff7a00;
}

#cart-popup .ux-mini-cart-qty {
    margin-top: 10px;
}

#cart-popup .ux-mini-cart-qty .quantity {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #7a8aaa;
    line-height: 1.4;
}

#cart-popup .ux-mini-cart-qty .woocommerce-Price-amount {
    font-size: 14px;
    font-weight: 700;
    color: #ff7a00;
}

#cart-popup .ux-mini-cart-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e4eaf5;
    background: #ffffff;
    position: sticky;
    bottom: 0;
}

#cart-popup .woocommerce-mini-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 14px;
    padding: 12px 14px;
    background: #f8fbff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    font-size: 13px;
    color: #0d3f98;
}

#cart-popup .woocommerce-mini-cart__total strong {
    font-size: 13px;
    font-weight: 700;
    color: #0d3f98;
}

#cart-popup .woocommerce-mini-cart__total .woocommerce-Price-amount {
    font-size: 18px;
    font-weight: 800;
    color: #ff7a00;
}

#cart-popup .woocommerce-mini-cart__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

#cart-popup .woocommerce-mini-cart__buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    border-radius: 10px !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    text-decoration: none;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

#cart-popup .woocommerce-mini-cart__buttons .button.wc-forward {
    background: #f0f4ff !important;
    border: 1px solid #d9e5ff !important;
    color: #0d3f98 !important;
}

#cart-popup .woocommerce-mini-cart__buttons .button.wc-forward:hover {
    background: #e6eeff !important;
    border-color: #c9d9ff !important;
    color: #0d3f98 !important;
}

#cart-popup .woocommerce-mini-cart__buttons .button.checkout {
    background: #0d3f98 !important;
    border: 1px solid #0d3f98 !important;
    color: #fff !important;
}

#cart-popup .woocommerce-mini-cart__buttons .button.checkout:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
    color: #fff !important;
}

#cart-popup .woocommerce-mini-cart__empty-message {
    margin: 12px 0 14px;
    font-size: 13px;
    color: #7a8aaa;
    line-height: 1.6;
}

#cart-popup .ux-mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 6px;
}

#cart-popup .ux-mini-cart-empty-icon svg {
    height: 72px !important;
    color: #0d3f98;
    opacity: 0.12;
}

#cart-popup .return-to-shop .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px !important;
    background: #0d3f98 !important;
    border: 1px solid #0d3f98 !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

#cart-popup .return-to-shop .button:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
    color: #fff !important;
}

.mfp-wrap:has(.off-canvas-cart) {
    background: rgba(0, 0, 0, 0.45);
}

@keyframes cartSidebarIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .mfp-content.off-canvas-cart {
        max-width: 100%;
    }

    #cart-popup .cart-popup-inner {
        padding: 14px 12px 12px;
    }

    #cart-popup .cart-popup-title {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    #cart-popup .cart-popup-title .heading-font {
        font-size: 16px;
    }

    #cart-popup .woocommerce-mini-cart-item {
        padding: 10px !important;
        border-radius: 12px;
    }

    #cart-popup .woocommerce-mini-cart-item > a:not(.remove) {
        grid-template-columns: 68px 1fr;
        gap: 10px;
    }

    #cart-popup .woocommerce-mini-cart-item img {
        width: 68px !important;
        height: 68px !important;
    }

    #cart-popup .ux-mini-cart-qty {
        padding-left: 78px;
    }

    #cart-popup .woocommerce-mini-cart__buttons {
        grid-template-columns: 1fr;
    }
}

.items-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.absolute-footer {
	display: none;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact p i {
    flex: 0 0 18px;
    font-size: 15px;
    color: #7FB3FF;
    margin-top: 4px;
    text-align: center;
}

.footer-contact p span {
    display: block;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-contact a:hover {
    color: #7FB3FF;
}

.footer-contact p:hover i {
    transform: translateY(-1px);
    transition: all 0.25s ease;
}

.footer-contact p:hover span {
    color: #fff;
    transition: all 0.25s ease;
}


.footer-hotline-box a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
}

.footer-hotline-box .hotline-number {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.footer-hotline-box .hotline-time {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-icons a img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.ux-menu-link__link {
	color: #fff;
	border: none!important;
	font-size: 15px;
}
.ux-menu-link__link:hover {
	color: #7FB3FF!important;
}

.topbar-service-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 10px 18px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.topbar-item i {
    font-size: 15px;
    color: #fff;
    line-height: 1;
}

@media (max-width: 849px) {
    .topbar-service-inner {
        gap: 14px 20px;
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .topbar-item {
        font-size: 13px;
        gap: 8px;
    }

    .topbar-item i {
        font-size: 15px;
    }
}

.searchform {
    margin: 0;
}

.searchform .flex-row.relative {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    overflow: hidden;
    min-height: 45px;
}

.searchform .flex-col.flex-grow {
    flex: 1 1 auto;
    min-width: 0;
}

.searchform .search-field {
    height: 45px;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 18px !important;
    font-size: 15px;
    color: #10203a;
    margin: 0 !important;
}

.searchform .search-field::placeholder {
    color: #b5b8bf;
    opacity: 1;
}

.searchform .flex-col:last-child {
    flex: 0 0 auto;
}

.searchform .ux-search-submit {
    height: 45px;
    min-width: 110px;
    border: 0 !important;
    border-left: 1px solid #d9dee8 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0d3f98 !important;
    box-shadow: none !important;
    padding: 0 18px !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
}

.searchform .ux-search-submit i {
    font-size: 16px;
    line-height: 1;
}

.searchform .ux-search-submit::after {
    content: "Tìm kiếm";
    display: inline-block;
}

.searchform .ux-search-submit:hover,
.searchform .ux-search-submit:focus {
    background: rgba(14, 63, 153, 0.04) !important;
    color: #0E3F99 !important;
}

.searchform .search-field:focus {
    background: transparent !important;
}

.searchform .live-search-results {
    width: 100%;
}

@media (max-width: 549px) {
    .searchform .flex-row.relative {
        min-height: 48px;
        border-radius: 10px;
    }

    .searchform .search-field {
        height: 48px;
        padding: 0 14px !important;
        font-size: 14px;
    }

    .searchform .ux-search-submit {
        height: 48px;
        min-width: 92px;
        padding: 0 14px !important;
        font-size: 14px;
    }

    .searchform .ux-search-submit i {
        font-size: 14px;
    }
}
.cart-item .header-cart-link,
.account-item .account-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    background: #f3f4f6;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    color: #10203a;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.25s ease;
}

.cart-item .header-cart-link:hover,
.account-item .account-link:hover {
    background: #eef3fb;
    border-color: #b9c9e6;
    color: #0E3F99;
}

.cart-item .header-cart-link i,
.account-item .account-link i {
    font-size: 18px;
    line-height: 1;
    color: #0d3f98;
    transition: all 0.25s ease;
}

.cart-item .header-cart-link:hover i,
.account-item .account-link:hover i {
    color: #0E3F99;
}

.cart-item .header-cart-title,
.account-item .header-account-title {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    margin: 0;
}

.cart-item .cart-price {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    line-height: 1.2;
}

.cart-item .header-cart-link .icon-shopping-basket,
.account-item .account-link .icon-user {
    position: relative;
    top: 0;
}

.cart-item .header-cart-link .icon-shopping-basket[data-icon-label]:after {
    background: #0E3F99;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 99px;
    box-shadow: 0 0 0 2px #f3f4f6;
}

.cart-item:hover .header-cart-link,
.account-item:hover .account-link {
    border-color: #b9c9e6;
}

.cart-item .nav-dropdown,
.account-item .nav-dropdown {
    min-width: 280px;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(16, 32, 58, 0.08);
}

.account-item .nav-dropdown li,
.cart-item .nav-dropdown li {
    list-style: none;
}

.account-item .nav-dropdown li a,
.cart-item .nav-dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #10203a;
    text-decoration: none;
    background: transparent;
    transition: all 0.25s ease;
}

.account-item .nav-dropdown li a:hover,
.cart-item .nav-dropdown li a:hover {
    background: #f4f7fd;
    color: #0E3F99;
}

.account-item .nav-dropdown .is-active > a,
.account-item .nav-dropdown .active > a {
    background: #eef3fb;
    color: #0E3F99;
}

.cart-item .widget_shopping_cart_content {
    padding: 8px 14px 14px;
}

.cart-item .ux-mini-cart-empty {
    padding: 10px 0;
}

.cart-item .ux-mini-cart-empty-icon svg {
    color: #0E3F99;
    opacity: 0.12;
}

.cart-item .woocommerce-mini-cart__empty-message {
    margin: 8px 0 12px;
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}

.cart-item .return-to-shop {
    margin: 0;
}

.cart-item .return-to-shop .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: #0E3F99;
    border: 1px solid #0E3F99;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.25s ease;
}

.cart-item .return-to-shop .button:hover {
    background: #0A2F78;
    border-color: #0A2F78;
    color: #fff;
}

@media (max-width: 849px) {
    .cart-item .header-cart-link,
    .account-item .account-link {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 10px;
        gap: 8px;
    }

    .cart-item .header-cart-title,
    .account-item .header-account-title,
    .cart-item .cart-price {
        font-size: 13px;
    }

    .cart-item .header-cart-link i,
    .account-item .account-link i {
        font-size: 16px;
    }

    .cart-item .nav-dropdown,
    .account-item .nav-dropdown {
        min-width: 240px;
    }
}
.header-vertical-menu {
    position: relative;
}

.header-vertical-menu .header-vertical-menu__opener {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    background: #0E3F99;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.header-vertical-menu .header-vertical-menu__opener:hover {
    background: #0A2F78;
}

.header-vertical-menu .header-vertical-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.header-vertical-menu .header-vertical-menu__title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.header-vertical-menu .header-vertical-menu__opener > .icon-angle-down {
    font-size: 14px;
    line-height: 1;
}

.header-vertical-menu .header-vertical-menu__fly-out {
    margin-top: 8px;
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(16, 32, 58, 0.08);
    overflow: hidden;
}

.header-vertical-menu .ux-nav-vertical-menu {
    margin: 0;
    padding: 6px 0;
    list-style: none;
}

.header-vertical-menu .ux-nav-vertical-menu > li {
    margin: 0;
    list-style: none;
}

.header-vertical-menu .ux-nav-vertical-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 14px;
    color: #10203a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.25s ease;
}

.header-vertical-menu .ux-nav-vertical-menu > li > a:hover {
    background: #f4f7fd;
    color: #0E3F99;
}

.header-vertical-menu .ux-nav-vertical-menu > li > a img.ux-menu-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    object-fit: cover;
    border-radius: 4px;
    background: #fff;
}

.header-vertical-menu .ux-nav-vertical-menu > li + li > a {
    border-top: 1px solid #eef2f7;
}

@media (max-width: 849px) {
    .header-vertical-menu .header-vertical-menu__opener {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .header-vertical-menu .header-vertical-menu__title {
        font-size: 13px;
    }

    .header-vertical-menu .ux-nav-vertical-menu > li > a {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 12px;
        gap: 8px;
    }

    .header-vertical-menu .ux-nav-vertical-menu > li > a img.ux-menu-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }
}
.p0 {
	padding: 0!important;
}
.img-radius,
.img-radius img{
	border-radius: 12px;
}
.section-head-tech {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 0 14px;
    background: #0d3f98;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(13, 63, 152, 0.07);
}

.section-head-tech .section-head-title {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.section-head-tech .read-more-head {
    margin: 0;
    flex: 0 0 auto;
}

.section-head-tech .section-head-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.section-head-tech .section-head-link i {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.section-head-tech .section-head-link:hover {
    color: #ffd2a8;
}

.section-head-tech .section-head-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .section-head-tech {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .section-head-tech .section-head-title {
        font-size: 13px;
    }

    .section-head-tech .section-head-link {
        font-size: 11px;
        gap: 6px;
    }

    .section-head-tech .section-head-link i {
        font-size: 10px;
    }
}



 

.categories-custom h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d3f98;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.categories-custom .row-small {
    row-gap: 22px;
}

.categories-custom .product-category .col-inner {
    height: 100%;
}

.categories-custom .product-category a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.categories-custom .product-category .box-category {
    height: 100%;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(13, 63, 152, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.categories-custom .product-category .box-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(13, 63, 152, 0.15);
    border-color: #d7e2f3;
}

.categories-custom .product-category .box-image {
    padding: 12px 12px 0;
}

.categories-custom .product-category .image-cover {
    background: #f5f7fb;
    border-radius: 12px;
    overflow: hidden;
}

.categories-custom .product-category .box-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.categories-custom .product-category .box-category:hover .box-image img {
    transform: scale(1.04);
}

.categories-custom .product-category .box-text {
    padding: 12px 14px 14px;
    text-align: center;
}

.categories-custom .product-category .box-text-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.categories-custom .product-category .header-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #0d3f98;
    text-transform: none;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.categories-custom .product-category .count {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
    color: #7a8aaa;
}

.categories-custom .product-category .count::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: #ff7a00;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .categories-custom h2 {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .categories-custom .row-small {
        row-gap: 14px;
    }

    .categories-custom .product-category .box-image {
        padding: 10px 10px 0;
    }

    .categories-custom .product-category .box-image img {
        padding: 10px;
    }

    .categories-custom .product-category .box-text {
        padding: 10px 10px 12px;
    }

    .categories-custom .product-category .header-title {
        font-size: 12px;
        min-height: 34px;
    }

    .categories-custom .product-category .count {
        font-size: 10px;
    }
}
.post-item .col-inner {
    height: 100%;
}

.post-item a {
    text-decoration: none;
}

.post-item .box-blog-post {
    height: 100%;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(13, 63, 152, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.post-item .box-blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(13, 63, 152, 0.15);
    border-color: #d7e2f3;
}

.post-item .box-image {
    overflow: hidden;
}

.post-item .image-cover {
    background: #f5f7fb;
}

.post-item .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item .box-blog-post:hover .box-image img {
    transform: scale(1.04);
}

.post-item .box-text {
    padding: 10px 12px 12px;
    text-align: left !important;
}

.post-item .blog-post-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-item .post-title {
    margin: 0 !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.post-item .post-title a {
    color: #0d3f98;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item .post-title a:hover {
    color: #ff7a00;
}

.post-item .is-divider {
    display: none;
}

.post-item .from_the_blog_excerpt {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.55;
    color: #7a8aaa;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .post-item .box-text {
        padding: 9px 10px 10px;
    }

    .post-item .post-title {
        font-size: 12px;
    }

    .post-item .post-title a {
        min-height: 34px;
    }

    .post-item .from_the_blog_excerpt {
        font-size: 10px;
    }
}
.post-sidebar .widget-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-sidebar .widget {
    margin: 0 !important;
    padding: 14px;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
}

.post-sidebar .widget-title {
    display: block;
    margin: 0 0 12px;
    color: #0d3f98;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.post-sidebar .widget .is-divider.small {
    display: none;
}

.post-sidebar .searchform {
    margin: 0;
}

.post-sidebar .searchform .flex-row.relative {
    display: flex;
    align-items: center;
    background: #f5f7fb;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 42px;
}

.post-sidebar .searchform .flex-col.flex-grow {
    flex: 1 1 auto;
    min-width: 0;
}

.post-sidebar .searchform .search-field {
    height: 42px;
    margin: 0 !important;
    padding: 0 12px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 12px;
    color: #0d3f98;
}

.post-sidebar .searchform .search-field::placeholder {
    color: #8a97ad;
    opacity: 1;
}

.post-sidebar .searchform .ux-search-submit {
    width: 42px;
    height: 42px;
    min-height: 42px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 1px solid #e4eaf5 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0d3f98 !important;
    box-shadow: none !important;
}

.post-sidebar .searchform .ux-search-submit:hover {
    background: #eef4ff !important;
    color: #ff7a00 !important;
}

.post-sidebar .flatsome_recent_posts ul,
.post-sidebar .widget_products ul.product_list_widget {
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-sidebar .recent-blog-posts-li,
.post-sidebar .widget_products ul.product_list_widget li {
    margin: 0;
 }

.post-sidebar .recent-blog-posts-li + .recent-blog-posts-li,
.post-sidebar .widget_products ul.product_list_widget li + li {
    border-top: 1px solid #edf2f8;
}

.post-sidebar .recent-blog-posts {
    gap: 10px;
}

.post-sidebar .badge.post-date {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border: 0;
}

.post-sidebar .badge.post-date .badge-inner {
    border-radius: 10px;
    background-size: cover !important;
    background-position: center !important;
}

.post-sidebar .flatsome_recent_posts .flex-grow > a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: #0d3f98;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
}

.post-sidebar .flatsome_recent_posts .flex-grow > a:hover {
    color: #ff7a00;
}

.post-sidebar .post_comments {
    display: none;
}

 

.post-sidebar .widget_products ul.product_list_widget li > a {
    display: contents;
    text-decoration: none;
}

.post-sidebar .widget_products ul.product_list_widget img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    padding: 6px;
    background: #f5f7fb;
    border: 1px solid #edf2f8;
    border-radius: 10px;
    margin: 0 !important;
    grid-row: span 2;
}

.post-sidebar .widget_products .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: #0d3f98;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.post-sidebar .widget_products a:hover .product-title {
    color: #ff7a00;
}

.post-sidebar .widget_products del,
.post-sidebar .widget_products ins {
    display: inline-block;
    text-decoration: none;
    line-height: 1.3;
}

.post-sidebar .widget_products del {
    margin-right: 6px;
}

.post-sidebar .widget_products del .woocommerce-Price-amount {
    font-size: 10px;
    font-weight: 500;
    color: #b0bac8;
}

.post-sidebar .widget_products ins .woocommerce-Price-amount,
.post-sidebar .widget_products > ul > li > .woocommerce-Price-amount,
.post-sidebar .widget_products .amount {
    font-size: 13px;
    font-weight: 700;
    color: #ff7a00;
}

@media (max-width: 768px) {
    .post-sidebar .widget {
        padding: 12px;
        border-radius: 12px;
    }

    .post-sidebar .widget-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .post-sidebar .badge.post-date {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }

    .post-sidebar .flatsome_recent_posts .flex-grow > a,
    .post-sidebar .widget_products .product-title {
        font-size: 11px;
    }

    .post-sidebar .widget_products ul.product_list_widget li {
        grid-template-columns: 58px 1fr;
    }

    .post-sidebar .widget_products ul.product_list_widget img {
        width: 58px !important;
        height: 58px !important;
    }

    .post-sidebar .widget_products ins .woocommerce-Price-amount,
    .post-sidebar .widget_products .amount {
        font-size: 12px;
    }
}

.entry-header-text.entry-header-text-top {
    margin-bottom: 18px;
    padding: 0;
    text-align: left;
}

.entry-header-text.entry-header-text-top .entry-category {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.entry-header-text.entry-header-text-top .entry-category a {
    display: inline-block;
    color: #0d3f98;
    text-decoration: none;
    background: #f0f4ff;
    border: 1px solid #dbe5ff;
    border-radius: 20px;
    padding: 4px 10px;
    transition: all 0.25s ease;
}

.entry-header-text.entry-header-text-top .entry-category a:hover {
    color: #fff;
    background: #ff7a00;
    border-color: #ff7a00;
}

.entry-header-text.entry-header-text-top .entry-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: #0d3f98;
    letter-spacing: -0.2px;
}

.entry-header-text.entry-header-text-top .entry-divider {
    display: none;
}

.entry-header-text.entry-header-text-top .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding-top: 10px;
    border-top: 1px solid #e4eaf5;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: none;
    color: #7a8aaa;
    letter-spacing: 0;
}

.entry-header-text.entry-header-text-top .entry-meta a {
    color: #7a8aaa;
    text-decoration: none;
    transition: all 0.25s ease;
}

.entry-header-text.entry-header-text-top .entry-meta a:hover {
    color: #ff7a00;
}

.entry-header-text.entry-header-text-top .posted-on,
.entry-header-text.entry-header-text-top .byline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.entry-header-text.entry-header-text-top .posted-on::before {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: #0d3f98;
}

.entry-header-text.entry-header-text-top .byline::before {
    content: "\f007";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: #0d3f98;
}

@media (max-width: 768px) {
    .entry-header-text.entry-header-text-top {
        margin-bottom: 14px;
    }

    .entry-header-text.entry-header-text-top .entry-category {
        margin-bottom: 7px;
        font-size: 10px;
    }

    .entry-header-text.entry-header-text-top .entry-category a {
        padding: 3px 8px;
    }

    .entry-header-text.entry-header-text-top .entry-title {
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 1.4;
    }

    .entry-header-text.entry-header-text-top .entry-meta {
        gap: 6px 10px;
        padding-top: 8px;
        font-size: 10px;
    }
}

#shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#shop-sidebar .widget {
    margin: 0 !important;
    padding: 14px;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
}

#shop-sidebar .widget-title.shop-sidebar {
    display: block;
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d3f98;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

#shop-sidebar .widget .is-divider.small {
    display: none;
}

/* Price filter */
#shop-sidebar .price_slider_wrapper {
    margin: 0;
}

#shop-sidebar .price_slider {
    height: 6px;
    margin: 0 4px 14px;
    background: #edf2fb !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 20px;
}

#shop-sidebar .ui-slider-range {
    background: #0d3f98 !important;
    border-radius: 20px;
}

#shop-sidebar .ui-slider-handle {
    top: -5px !important;
    width: 16px !important;
    height: 16px !important;
    background: #fff !important;
    border: 2px solid #0d3f98 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}

#shop-sidebar .price_slider_amount {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#shop-sidebar .price_label {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #7a8aaa;
}

#shop-sidebar .price_label .from,
#shop-sidebar .price_label .to {
    color: #0d3f98;
    font-weight: 700;
}

#shop-sidebar .widget_price_filter .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: #0d3f98 !important;
    border: 1px solid #0d3f98 !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    box-shadow: none !important;
    transition: all 0.25s ease;
	margin: 0;
}

#shop-sidebar .widget_price_filter .button:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
    color: #fff !important;
}

/* Product categories */
#shop-sidebar .product-categories {
    margin: 0;
    padding: 0;
    list-style: none;
}

#shop-sidebar .product-categories .cat-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

#shop-sidebar .product-categories .cat-item + .cat-item {
    border-top: 1px solid #edf2f8;
}

#shop-sidebar .product-categories .cat-item a {
    display: inline-block;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    color: #0d3f98;
    text-decoration: none;
    transition: all 0.25s ease;
}

#shop-sidebar .product-categories .cat-item a:hover {
    color: #ff7a00;
    transform: translateX(3px);
}

#shop-sidebar .product-categories .count {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #7a8aaa;
}

/* Active category nếu WP tự thêm class */
#shop-sidebar .product-categories .current-cat > a,
#shop-sidebar .product-categories .current-cat-parent > a {
    color: #ff7a00;
}

/* Mobile */
@media (max-width: 768px) {
    #shop-sidebar {
        gap: 12px;
    }

    #shop-sidebar .widget {
        padding: 12px;
        border-radius: 12px;
    }

    #shop-sidebar .widget-title.shop-sidebar {
        margin-bottom: 10px;
        font-size: 13px;
    }

    #shop-sidebar .product-categories .cat-item a {
        padding: 9px 0;
        font-size: 11px;
    }

    #shop-sidebar .product-categories .count,
    #shop-sidebar .price_label {
        font-size: 10px;
    }
}

.page-title-inner {
    align-items: center;
    justify-content: space-between;
    gap: 14px 18px;
    padding: 10px 0 14px;
    border-bottom: 1px solid #e4eaf5;
}

.page-title-inner .flex-col {
    min-width: 0;
}

/* Breadcrumb */
.page-title-inner .woocommerce-breadcrumb {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    color: #7a8aaa;
}

.page-title-inner .woocommerce-breadcrumb a {
    color: #0d3f98;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-title-inner .woocommerce-breadcrumb a:hover {
    color: #ff7a00;
}

.page-title-inner .woocommerce-breadcrumb .divider {
    margin: 0 6px;
    color: #b0bac8;
}

/* Kết quả */
.page-title-inner .woocommerce-result-count {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    color: #7a8aaa;
}

/* Form sắp xếp */
.page-title-inner .woocommerce-ordering {
    margin: 0;
}

.page-title-inner .woocommerce-ordering .orderby {
    min-width: 220px;
    height: 40px;
    margin: 0;
    padding: 0 36px 0 12px;
    background-color: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 10px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 600;
    color: #0d3f98;
    outline: none;
    cursor: pointer;
}

.page-title-inner .woocommerce-ordering .orderby:focus {
    border-color: #cfdcf3;
}

/* Nút lọc mobile */
.page-title-inner .category-filtering {
    margin-top: 8px;
}

.page-title-inner .filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    background: #f0f4ff;
    border: 1px solid #dbe5ff;
    border-radius: 10px;
    color: #0d3f98;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.page-title-inner .filter-button:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
}

.page-title-inner .filter-button i {
    font-size: 13px;
    line-height: 1;
}

/* Canh phải block sort */
.page-title-inner > .flex-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Mobile */
@media (max-width: 849px) {
    .page-title-inner {
        gap: 10px 12px;
        padding: 8px 0 12px;
    }

    .page-title-inner .woocommerce-breadcrumb {
        font-size: 10px;
    }

    .page-title-inner .woocommerce-result-count {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .page-title-inner .woocommerce-ordering .orderby {
        min-width: 190px;
        height: 38px;
        font-size: 11px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .page-title-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .page-title-inner > .flex-col:last-child {
        align-items: stretch;
    }

    .page-title-inner .woocommerce-ordering .orderby {
        width: 100%;
        min-width: 0;
    }

    .page-title-inner .category-filtering {
        margin-top: 8px;
    }
}
.commit-product-box {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
}

.commit-product-title {
    margin: 0 0 14px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ff7a00;
}

.commit-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.commit-product-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.commit-product-item i {
    font-size: 16px;
    line-height: 1.2;
    color: #0d3f98;
    position: relative;
    top: 2px;
    text-align: center;
}

.commit-product-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #4b5563;
}

.commit-product-text a {
    color: #0d3f98;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.commit-product-text a:hover {
    color: #ff7a00;
}

@media (max-width: 768px) {
    .commit-product-box {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .commit-product-title {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .commit-product-list {
        gap: 10px;
    }

    .commit-product-item {
        grid-template-columns: 20px 1fr;
        gap: 8px;
    }

    .commit-product-item i {
        font-size: 15px;
    }

    .commit-product-text {
        font-size: 12px;
        line-height: 1.45;
    }
}
.spec-tech-box {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    overflow: hidden;
}

.spec-tech-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f5f7fb;
    border-bottom: 1px solid #e4eaf5;
    color: #0d3f98;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.spec-tech-head i {
    font-size: 15px;
    color: #0d3f98;
}

.spec-tech-body {
    padding: 12px;
}

.spec-tech-content {
    position: relative;
    overflow: hidden;
    max-height: 360px;
    transition: max-height 0.3s ease;
}

.spec-tech-content.is-expanded {
    max-height: 5000px;
}

.spec-tech-content:not(.is-expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
    pointer-events: none;
}

.spec-tech-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    min-height: 40px;
    margin: 12px auto 0;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #cfd8ea;
    border-radius: 10px;
    color: #0d3f98;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.spec-tech-toggle:hover {
    background: #0d3f98;
    border-color: #0d3f98;
    color: #fff;
}

.spec-tech-toggle i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.spec-tech-toggle.is-expanded i {
    transform: rotate(180deg);
}

/* chỉnh nhẹ cho bảng shortcode bên trong */
.spec-tech-content table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
}

.spec-tech-content table tr:nth-child(odd) td {
    background: #f8faff;
}

.spec-tech-content table td,
.spec-tech-content table th {
    padding: 11px 12px;
    border-bottom: 1px solid #e4eaf5;
    font-size: 13px;
    line-height: 1.45;
    color: #25324a;
    vertical-align: middle;
}

.spec-tech-content table tr:last-child td,
.spec-tech-content table tr:last-child th {
    border-bottom: 0;
}

.spec-tech-content table td:first-child,
.spec-tech-content table th:first-child {
    width: 38%;
    font-weight: 700;
    color: #0d3f98;
}

@media (max-width: 768px) {
    .spec-tech-head {
        padding: 12px 14px;
        font-size: 14px;
    }

    .spec-tech-body {
        padding: 10px;
    }

    .spec-tech-content {
        max-height: 320px;
    }

    .spec-tech-toggle {
        min-width: 200px;
        min-height: 38px;
        font-size: 11px;
    }

    .spec-tech-content table td,
    .spec-tech-content table th {
        padding: 10px 10px;
        font-size: 12px;
    }
}
.hacom-gift-inner {
	display: block;
}
.hacom-gift-header {
	padding: 15px 10px;
}
.product-info-right .col-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-info-right .product-title-container {
    margin: 0;
}

.product-info-right .product-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: #0d3f98;
    letter-spacing: -0.2px;
}

/* Chỉ box mô tả ngắn */
.product-info-right .product-short-description {
    margin: 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
}

.product-info-right .product-short-description ul {
    margin: 0;
    padding-left: 18px;
    max-height: none !important;
    overflow: visible !important;
    list-style: disc;
}

.product-info-right .product-short-description li {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #4b5563;
}

.product-info-right .product-short-description li:last-child {
    margin-bottom: 0;
}

.product-info-right .product-short-description strong {
    font-weight: 600;
    color: #25324a;
}

/* Giá */
.product-info-right .product-price-container {
    margin: 0;
}

.product-info-right .product-price-container .price-wrapper {
    margin: 0;
}

.product-info-right .product-price-container .price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    line-height: 1.3;
}

.product-info-right .product-price-container del {
    order: 2;
    color: #b0bac8;
    font-size: 13px;
}

.product-info-right .product-price-container del .woocommerce-Price-amount {
    color: #b0bac8;
    font-size: 13px;
    font-weight: 500;
}

.product-info-right .product-price-container ins {
    order: 1;
    text-decoration: none;
}

.product-info-right .product-price-container ins .woocommerce-Price-amount {
    color: #ff7a00;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

/* Add to cart */
.product-info-right .add-to-cart-container {
    margin: 0;
}

.product-info-right .add-to-cart-container form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.product-info-right .ux-quantity.quantity {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dbe4f2;
    border-radius: 10px;
    background: #f5f7fb;
}

.product-info-right .ux-quantity .ux-quantity__button {
    width: 40px;
    height: 42px;
    min-height: 42px;
    margin: 0 !important;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    color: #0d3f98 !important;
    font-size: 18px;
    font-weight: 700;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

.product-info-right .ux-quantity .ux-quantity__button:hover {
    background: #eaf0fb !important;
    color: #ff7a00 !important;
}

.product-info-right .ux-quantity .qty {
    width: 56px;
    height: 42px;
    min-height: 42px;
    margin: 0 !important;
    padding: 0 6px !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #0d3f98;
}

.product-info-right .single_add_to_cart_button {
    min-width: 200px;
    min-height: 42px;
    padding: 0 18px !important;
    background: #0d3f98 !important;
    border: 1px solid #0d3f98 !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

.product-info-right .single_add_to_cart_button:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
    color: #fff !important;
}

/* Meta */
.product-info-right .product_meta {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-info-right .product_meta > span,
.product-info-right .product_meta .posted_in {
    font-size: 13px;
    line-height: 1.55;
    color: #4b5563;
}

.product-info-right .product_meta .posted_in a {
    color: #0d3f98;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.product-info-right .product_meta .posted_in a:hover {
    color: #ff7a00;
}

/* Khối thông số kỹ thuật nếu nằm trong cột phải */
.product-info-right .spec-tech-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.product-info-right .spec-tech-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f5f7fb;
    color: #0d3f98;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-info-right .spec-tech-head i {
    font-size: 15px;
    color: #0d3f98;
}

.product-info-right .spec-tech-body {
    padding: 0;
}

.product-info-right .spec-tech-content table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
}

.product-info-right .spec-tech-content table tr:nth-child(odd) td {
    background: #f8faff;
}

.product-info-right .spec-tech-content table td,
.product-info-right .spec-tech-content table th {
    padding: 11px 12px;
    border-bottom: 1px solid #e4eaf5;
    font-size: 13px;
    line-height: 1.45;
    color: #25324a;
    vertical-align: middle;
}

.product-info-right .spec-tech-content table tr:last-child td,
.product-info-right .spec-tech-content table tr:last-child th {
    border-bottom: 0;
}

.product-info-right .spec-tech-content table td:first-child,
.product-info-right .spec-tech-content table th:first-child {
    width: 38%;
    font-weight: 700;
    color: #0d3f98;
}

.product-info-right .spec-tech-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    min-height: 40px;
    margin: 12px auto 0;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #cfd8ea;
    border-radius: 10px;
    color: #0d3f98;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-info-right .spec-tech-toggle:hover {
    background: #0d3f98;
    border-color: #0d3f98;
    color: #fff;
}

@media (max-width: 768px) {
    .product-info-right .col-inner {
        gap: 12px;
    }

    .product-info-right .product-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .product-info-right .product-short-description {
        padding: 12px;
        border-radius: 12px;
    }

    .product-info-right .product-short-description li,
    .product-info-right .product_meta > span,
    .product-info-right .product_meta .posted_in {
        font-size: 12px;
    }

    .product-info-right .product-price-container ins .woocommerce-Price-amount {
        font-size: 24px;
    }

    .product-info-right .product-price-container del,
    .product-info-right .product-price-container del .woocommerce-Price-amount {
        font-size: 12px;
    }

    .product-info-right .add-to-cart-container form.cart {
        align-items: stretch;
        gap: 10px;
    }

    .product-info-right .single_add_to_cart_button {
        flex: 1 1 100%;
        min-width: 0;
        font-size: 12px;
    }

    .product-info-right .spec-tech-head {
        padding: 12px 14px;
        font-size: 14px;
    }

    .product-info-right .spec-tech-content table td,
    .product-info-right .spec-tech-content table th {
        padding: 10px 10px;
        font-size: 12px;
    }
}
.spec-tech-body {
	text-align: center;
	padding: 20px!important;
}
.hacom-gift-summary {
	justify-content: start;
}
.vuong-product-reviews {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vuong-reviews-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vuong-reviews-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0d3f98;
}

.vuong-reviews-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #7a8aaa;
}

.vuong-reviews-average {
    font-size: 22px;
    font-weight: 700;
    color: #ff7a00;
    line-height: 1;
}

.vuong-product-reviews .commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vuong-product-reviews .commentlist li {
    margin: 0 0 12px;
    padding: 14px;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    background: #fff;
}

.vuong-product-reviews .woocommerce-noreviews {
    margin: 0;
    font-size: 13px;
    color: #7a8aaa;
}

.vuong-product-reviews #review_form_wrapper {
    margin-top: 8px;
    padding: 16px;
    border: 1px solid #e4eaf5;
    border-radius: 14px;
    background: #fff;
}

.vuong-product-reviews .comment-reply-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0d3f98;
}

.vuong-product-reviews .comment-form-author,
.vuong-product-reviews .comment-form-email,
.vuong-product-reviews .comment-form-rating,
.vuong-product-reviews .comment-form-comment {
    margin: 0 0 12px;
}

.vuong-product-reviews input[type="text"],
.vuong-product-reviews input[type="email"],
.vuong-product-reviews select,
.vuong-product-reviews textarea {
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid #dbe4f2;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    font-size: 13px;
    color: #25324a;
}

.vuong-product-reviews textarea {
    min-height: 120px;
    resize: vertical;
}

.vuong-product-reviews .form-submit {
    margin: 0;
}

.vuong-product-reviews .submit {
    min-height: 42px;
    padding: 0 18px !important;
    background: #0d3f98 !important;
    border: 1px solid #0d3f98 !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

.vuong-product-reviews .submit:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
}