
    /* 1. CSS cho Thanh Cam Kết (image_650f62.png) */
    .cat-commitment-bar {
        background-color: #0056b3; /* Màu xanh đậm như hình */
        border-radius: 8px;
        padding: 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 20px;
        color: #fff;
        font-family: Arial, sans-serif;
    }
    .commitment-item {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
        justify-content: center;
        position: relative;
    }
    /* Vạch ngăn cách giữa các item */
    .commitment-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        height: 30px;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
    .commitment-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    .commitment-text {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    /* 2. CSS cho Box Nội Dung (image_656273.png) */
    .category-description-wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        border: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        position: relative;
    }
    .category-description-content {
        position: relative;
        overflow: hidden;
        max-height: 200px; /* Chiều cao giới hạn */
        transition: max-height 0.5s ease;
        line-height: 1.8;
        color: #444;
    }
    .category-description-content.expanded {
        max-height: 2000px; /* Cho phép mở rộng */
    }
    .category-description-content:not(.expanded)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(transparent, #fff);
    }
    .read-more-btn-container {
        text-align: center;
        margin-top: 25px;
    }
    .read-more-btn {
        display: inline-block;
        padding: 8px 25px;
        border: 1px solid #0056b3;
        color: #0056b3;
        border-radius: 6px;
        background: transparent;
        cursor: pointer;
        font-weight: 500;
        transition: 0.3s;
    }
    .read-more-btn:hover {
        background: #0056b3;
        color: #fff;
    }

    /* Responsive cho mobile */
    @media (max-width: 768px) {
        .cat-commitment-bar { flex-direction: column; gap: 15px; }
        .commitment-item:after { display: none; }
    }


        .vtx-faq-container {
            margin: 20px 0;
           background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .vtx-faq-header {
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 1px solid #dce4eb;
            padding-bottom: 20px;
        }

        .vtx-faq-header h2 {
            color: #1a2b49;
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .vtx-faq-header p {
            color: #5e6d82;
            font-size: 15px;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        .vtx-faq-item {
            background: transparent;
            border-bottom: 1px solid #e1e8ed;
            padding: 15px 0;
        }

        .vtx-faq-item:last-child {
            border-bottom: none;
        }

        .vtx-faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 0;
            user-select: none;
        }

        .vtx-faq-question h3 {
            margin: 0;
            font-size: 16px;
            color: #1a2b49;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .vtx-faq-item.active .vtx-faq-question h3 {
            color: #0056b3;
        }

        .vtx-faq-icon {
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .vtx-faq-icon svg {
            width: 25px;
            fill: #0056b3;
        }

        .vtx-faq-item.active .vtx-faq-icon {
            transform: rotate(180deg);
        }

        .vtx-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: #4a5568;
            font-size: 15px;
            line-height: 1.6;
        }

        .vtx-faq-item.active .vtx-faq-answer {
            max-height: 1000px; /* Độ cao tối đa khi mở */
            padding-top: 10px;
            padding-bottom: 10px;
        }

       
.vtx-sidebar-fixed{
position: fixed;
    top: 20px;
    z-index: 999;
}
.pcat-toolbar select#pcat-orderby {
    width: auto;
    padding: 0 25px;
}

.pcat-wrap{
    max-width:1850px;
    margin:0 auto;
    padding:20px 16px;
    font-family:Arial,sans-serif;
    font-size:14px;
}

.pcat-row{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

/* ============================================================================
   SIDEBAR
============================================================================ */

.pcat-sidebar{
    width:220px;
    
}
.custom-category-footer {
    padding-top: 20px;
}

.pcat-box{
    background:#fff;
    border:1px solid #dfe5ec;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:14px;
}
.pcat-filter{
    display:none;
}

.pcat-filter.active{
    display:block;
}
.pcat-box-title{
    background:#0056ad;
    color:#fff;
    padding:14px 16px;
    font-weight:700;
    text-transform:uppercase;
    cursor: pointer;
}

.pcat-subcats a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #edf1f5;
}

.pcat-subcats a:hover{
    background:#f8fafc;
}

.pcat-subcats .count{
    color:#8a95a5;
}

.pcat-filter{
    padding:16px;
}

.filter-title{
    font-weight:700;
    margin-bottom:14px;
    color:#0056ad;
    text-transform:uppercase;
}

.brand-filter-list{
    list-style:none;
    margin:0;
    padding:0;
}

.brand-filter-list li{
    margin-bottom:10px;
}

.brand-filter-list label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.brand-filter-list input{
    width:16px;
    height:16px;
}

/* ============================================================================
   MAIN
============================================================================ */

.pcat-main{
    flex:1;
    min-width:0;
    max-width: 1338px;
    width: 100%;
        margin: 0 auto;
}

.pcat-content{
    background:#fff;
    border-radius:10px;
    padding:18px;
    border:1px solid #dfe5ec;
    
}

.pcat-breadcrumb{
    margin-bottom:16px;
    color:#666;
}

.pcat-breadcrumb a{
    color:#0056ad;
    text-decoration:none;
}

.sep{
    margin:0 5px;
}

.pcat-title-bar{
    background:#0056ad;
    border-radius:6px;
    padding:16px 18px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px;
}

.pcat-title-bar h1{
   margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.tax-product_cat .shop-page-title.category-page-title.page-title {
    display: none;
}
.found-count{
    font-size:14px;
    min-width: 12%;
    max-width: 12%;
}

/* ============================================================================
   FILTER CHIP
============================================================================ */

.pcat-active-filters{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.filter-chip{
    padding:7px 10px;
    border-radius:4px;
    background:#eef4fc;
    border:1px solid #c8daf4;
    color:#0056ad;
    text-decoration:none;
    font-size:13px;
}

.clear-all-link{
    color:red;
    text-decoration:none;
}

/* ============================================================================
   TOOLBAR
============================================================================ */

.pcat-toolbar{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.pcat-toolbar select{
    border:1px solid #d8dee6;
    border-radius:6px;
    padding:10px 12px;
}

/* ============================================================================
   GRID
============================================================================ */

.pcat-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

/* ============================================================================
   CARD
============================================================================ */

.pcat-card{
    border:1px solid #e5e9ef;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    position:relative;
    transition:.2s;
    display:flex;
    flex-direction:column;
}

.pcat-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.badge-sale{
    position:absolute;
    top:8px;
    left:8px;
    background:red;
    color:#fff;
    padding:3px 8px;
    font-size:11px;
    font-weight:700;
    border-radius:4px;
    z-index:2;
}

.card-img{
    aspect-ratio:1;
    background:#f5f5f5;
    overflow:hidden;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.card-body{
    padding:12px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.card-title{
    font-size:15px;
    font-weight:700;
    line-height:1.5;
    color:#222;
    text-decoration:none;
    margin-bottom:10px;
    min-height:44px;
}

.card-price{
    margin-bottom:12px;
}

.price-sale{
    color:red;
    font-size:22px;
    font-weight:700;
}

.price-regular{
    color:#999;
    text-decoration:line-through;
    margin-left:5px;
    font-size:13px;
}

.card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #edf1f5;
    padding-top:10px;
    margin-top:auto;
    font-size:12px;
}

.btn-add-compare{
    background:none;
    border:none;
    color:#0056ad;
    cursor:pointer;
    font-size:12px;
    margin: 0;
}

.btn-add-compare.is-added{
    color:red;
    font-weight:700;
}

/* ============================================================================
   PAGINATION
============================================================================ */

.pcat-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:30px;
}

.pcat-pagination a,
.pcat-pagination span{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    border:1px solid #d9e0e7;
    text-decoration:none;
    color:#333;
    background:#fff;
}

.pcat-pagination .current{
    background:#0056ad;
    color:#fff;
    border-color:#0056ad;
}

.pcat-pagination .disabled{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    border:1px solid #d9e0e7;
    color:#bbb;
    background:#f5f5f5;
    cursor:not-allowed;
}

.pcat-pagination .dots{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    background:none;
    color:#666;
    font-size:16px;
}

/* ============================================================================
   PROMO
============================================================================ */

.promo-banner{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    border:1px solid #dfe5ec;
}

.promo-banner img{
    width:100%;
    display:block;
}

/* ============================================================================
   COMPARE BAR
============================================================================ */

.cmp-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:-250px;
    background:#fff;
    border-top:2px solid #0056ad;
    z-index:9999;
    transition:.3s;
    box-shadow:0 -6px 20px rgba(0,0,0,.15);
}

.cmp-bar.is-visible{
    bottom:0;
}

.cmp-bar-inner{
    max-width:1320px;
    margin:0 auto;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:16px;
}

.cmp-bar-slots{
    flex:1;
    display:flex;
    gap:14px;
}

.cmp-slot{
    width:240px;
    background:#f5f7fa;
    border:1px solid #dbe3ee;
    border-radius:8px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
}

.cmp-slot img{
    width:60px;
    height:60px;
    border-radius:6px;
    object-fit:cover;
}

.slot-name{
    font-size:12px;
    font-weight:700;
    line-height:1.4;
}

.slot-remove{
    position: absolute;
    top: 2px;
    left: -2px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #f00a0a;
    padding: 5px 15px !important;
    border-radius: 50px;
    line-height: 1;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.cmp-btn-go:hover {
    transform: translateY(-1px);
}

.cmp-btn-go{
    background:#0056ad;
    color:#fff;
    border:none;
    border-radius:6px;
    padding:8px 20px;
    cursor:pointer;
    font-weight:700;
    font-size: 16px;
}

.cmp-btn-go:disabled{
    opacity:.5;
    cursor:not-allowed;
}

.cmp-btn-clear{
    margin-top:8px;
    background:none;
    border:none;
    cursor:pointer;
    color:#777;
}

/* ============================================================================
   OVERLAY
============================================================================ */

.cmp-overlay{
    position:fixed;
    inset:0;
    background:#f4f6f9;
    z-index:10000;
    overflow:auto;
    display:none;
}

.cmp-overlay.is-open{
    display:block;
    padding-top: 50px;
}

.cmp-overlay-inner{
    max-width:1100px;
    margin:0 auto;
    padding:30px 16px 80px;
}

.cmp-overlay-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.cmp-back{
    background:none;
    border:none;
    cursor:pointer;
    color:#0056ad;
    font-size:15px;
}

.cmp-overlay-title{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    max-width: 50%;
}

.cmp-table{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #dfe5ec;
}

.cmp-products-row{
    display:grid;
}

.cmp-product-col{
    padding:30px 20px;
    border-right:1px solid #edf1f5;
    text-align:center;
}

.cmp-product-col:last-child{
    border-right:none;
}

.cmp-product-col img{
    width:170px;
    height:170px;
    object-fit:cover;
    margin:0 auto 16px;
    display:block;
}

.cmp-prod-name{
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

/* Giá trong overlay so sánh */
.cmp-prod-price-wrap{
    margin-bottom:14px;
    line-height:1.5;
}

.cmp-price-sale{
    display:block;
    font-size:22px;
    font-weight:700;
    color:red;
}

.cmp-price-regular{
    display:inline-block;
    font-size:14px;
    color:#999;
    text-decoration:line-through;
    margin-top:3px;
}

/* Đánh giá sao trong overlay */
.cmp-prod-rating{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:5px;
    margin-bottom:16px;
    font-size:13px;
    color:#555;
}

.cmp-stars{
    display:inline-flex;
    gap:2px;
    vertical-align:middle;
}

.cmp-stars svg{
    width:16px;
    height:16px;
}

.cmp-view-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.cmp-view-btn{
    display: inline-block;
    background: #0056ad;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
}

.cmp-prod-desc{
    margin-top:16px;
    font-size:13px;
    line-height:1.7;
    color:#666;
    text-align:left;
}

.cmp-attr-group-heading{
    background:#f3f6fa;
    padding:16px;
    text-align:center;
    font-weight:700;
    border-top:1px solid #e6ebf1;
    color:#0056ad;
}

.cmp-attr-row{
    display:grid;
}

.cmp-attr-cell{
    padding:18px;
    border-top:1px solid #edf1f5;
    border-right:1px solid #edf1f5;
    text-align:center;
}

.cmp-attr-cell:last-child{
    border-right:none;
}

/* ============================================================================
   RESPONSIVE
============================================================================ */

@media(max-width:1200px){

    .pcat-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .pcat-sidebar-right{
        display:none;
    }
}

@media(max-width:992px){

    .pcat-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .pcat-row{
        flex-direction:column;
    }

    .pcat-sidebar{
        width:100%;
        position:static;
    }

    .pcat-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cmp-bar-inner{
        flex-direction:column;
    }

    .cmp-bar-slots{
        width:100%;
        overflow:auto;
    }

    .cmp-slot{
        min-width:220px;
    }
}


    .promo-sidebar-card {
        width: 100%;
        max-width: 280px; /* Độ rộng tối ưu cho sidebar */
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        margin: 10px auto;
        border: 1px solid #eee;
    }

    /* Header: Ưu đãi hot */
    .promo-header {
        background-color: #d3081c; /* Màu đỏ đô */
        color: #fff;
        text-align: center;
        padding: 10px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Ảnh nền và text đè lên ảnh */
    .promo-image-container {
        position: relative;
        height: 200px;
        background-image: url('https://vcdn1-dulich.vnecdn.net/2021/07/20/St-Basils-Cathedral-1-1626772733.jpg'); /* Link ảnh minh họa nhà thờ Saint Basil */
        background-size: cover;
        background-position: center;
    }

    .promo-image-container::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Làm tối ảnh một chút để nổi chữ */
    }

    .promo-discount-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        color: #00ff00; /* Màu xanh neon */
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.5);
    }

    .promo-discount-text span.big {
        font-size: 24px;
        display: block;
    }

    .promo-discount-text span.percent {
        font-size: 32px;
        display: block;
    }

    /* Phần thân dưới */
    .promo-body {
        padding: 20px 15px;
        text-align: center;
    }

    .promo-description {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .promo-hotline {
        color: #0056b3;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 15px;
        display: block;
        text-decoration: none;
    }

    /* Form nhập liệu */
    .promo-form input {
        width: 100%;
        padding: 12px 12px 12px 40px;
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 14px;
        box-sizing: border-box;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23d3081c" class="bi bi-telephone" viewBox="0 0 16 16"><path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328z"/></svg>') no-repeat 12px center;
        background-color: #f9f9f9;
    }

    .promo-submit-btn {
        width: 100%;
        background-color: #d3081c;
        color: #fff;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: background 0.3s;
    }

    .promo-submit-btn:hover {
        background-color: #b00617;
    }

    .promo-submit-btn svg {
        width: 16px;
        height: 16px;
    }

    