.tree-commerce.product-Allitem {
    background: #f6f8fb;
    padding-top: 64px;
}

.tree-commerce .box-tit,
.tree-commerce .box-intro {
    text-align: center;
}

.tree-commerce .box-tit p {
    color: #0a3d62;
}

.tree-commerce .box-intro {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
}

.tree-commerce .box-intro p {
    color: #44525e;
}

.tree-commerce .product-Allitem-List {
    align-items: flex-start;
    gap: 28px;
}

.tree-commerce .product-Allitem-List .CategoryList {
    width: 280px;
}

.tree-commerce .product-Allitem-List .CategoryList > ul > li > a {
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5edf3;
    padding: 20px 22px;
}

.tree-commerce .product-Allitem-List .CategoryList > ul > li > a:hover {
    border-color: #cfe2f0;
    box-shadow: 0 10px 24px rgba(10, 61, 98, .08);
}

.tree-commerce .product-Allitem-List .CategoryList > ul > li > a p {
    font-size: 16px;
    line-height: 1.45;
}

.tree-commerce .product-Allitem-List .itemList {
    flex: 1;
    width: auto;
    margin-left: 0;
}

.tree-commerce .product-Allitem-List .itemList ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 22px;
    margin: 0;
}

.tree-commerce .product-Allitem-List .itemList ul li {
    width: auto;
    padding: 0;
    margin: 0;
}

.tree-commerce .pro-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.tree-commerce .pro-item:hover {
    border-color: #cfe2f0;
    box-shadow: 0 16px 34px rgba(10, 61, 98, .12);
}

.tree-commerce .pro-item .pic .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 246px;
    padding: 22px;
    background: linear-gradient(135deg, #f3f7fa 0%, #e0ecf3 100%);
}

.tree-commerce .pro-item .pic .img-box::after {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 4px;
    background: #0a3d62;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tree-commerce .itemList li:nth-child(1) .img-box::after { content: "Split"; background: #1e6091; }
.tree-commerce .itemList li:nth-child(2) .img-box::after { content: "Rooftop"; }
.tree-commerce .itemList li:nth-child(3) .img-box::after { content: "Overland"; background: #5a4a2a; }
.tree-commerce .itemList li:nth-child(4) .img-box::after { content: "VS01"; }
.tree-commerce .itemList li:nth-child(5) .img-box::after { content: "VS02-PRO"; background: #ff8c00; }

.tree-commerce .pro-item .pic img {
    position: static;
    width: 100%;
    max-width: 240px;
    height: auto;
    padding: 0;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .14));
}

.tree-commerce .pro-item .pic img[src*="/data/thumb/"] {
    max-width: none;
    border-radius: 6px;
    filter: none;
}

.tree-commerce .pro-item .infobox {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 20px 21px;
}

.tree-commerce .pro-item .tit a {
    min-height: 46px;
    color: #0a3d62;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.42;
}

.tree-commerce .pro-item .tit a:hover {
    color: #ff8c00;
}

.tree-commerce .pro-item .intro {
    min-height: 54px;
}

.tree-commerce .pro-item .intro p {
    color: #5a6773;
    font-size: 14px;
    line-height: 1.55;
}

.tree-commerce .pro-item .normal-more {
    margin-top: auto;
}

.tree-commerce .pro-item .normal-more a {
    width: 100%;
    justify-content: center;
    min-height: 40px;
    border-radius: 5px;
    background: #0a3d62;
    font-size: 13px;
    font-weight: 800;
}

.tree-commerce .pro-item .normal-more a:hover {
    background: #ff8c00;
    color: #fff;
}

.tree-commerce-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tree-commerce-card:hover {
    transform: translateY(-3px);
    border-color: #cfe2f0;
    box-shadow: 0 16px 34px rgba(10, 61, 98, .12);
}

.tree-commerce-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 246px;
    padding: 22px;
    background: linear-gradient(135deg, #f3f7fa 0%, #e0ecf3 100%);
}

.tree-commerce-card__media img {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .14));
}

.tree-commerce-card__media img[src*="/data/thumb/"] {
    max-width: none;
    object-fit: cover;
    border-radius: 6px;
    filter: none;
}

.tree-commerce-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 4px;
    background: #0a3d62;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tree-commerce-card__tag--split {
    background: #1e6091;
}

.tree-commerce-card__tag--premium {
    background: #ff8c00;
}

.tree-commerce-card__tag--industrial {
    background: #586477;
}

.tree-commerce-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 20px 21px;
}

.tree-commerce-card__model {
    margin: 0 0 7px;
    color: #7a8895;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tree-commerce-card__title {
    min-height: 46px;
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42;
}

.tree-commerce-card__title a {
    color: #0a3d62;
    text-decoration: none;
}

.tree-commerce-card__title a:hover {
    color: #ff8c00;
}

.tree-commerce-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 13px;
}

.tree-commerce-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #eaf2f8;
    color: #1e6091;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.tree-commerce-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 16px;
    padding: 11px 0;
    border-top: 1px solid #eef2f5;
    border-bottom: 1px solid #eef2f5;
}

.tree-commerce-card__specs div {
    min-width: 0;
    text-align: center;
}

.tree-commerce-card__specs dt {
    margin: 0 0 3px;
    color: #7a8895;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tree-commerce-card__specs dd {
    margin: 0;
    color: #0a3d62;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.tree-commerce-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.tree-commerce-card__btn {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.tree-commerce-card__btn--primary {
    background: #0a3d62;
    color: #fff;
}

.tree-commerce-card__btn--primary:hover {
    background: #ff8c00;
    color: #fff;
}

.tree-commerce-card__btn--ghost {
    border: 1px solid #cfd8e0;
    background: #fff;
    color: #0a3d62;
}

.tree-commerce-card__btn--ghost:hover {
    border-color: #0a3d62;
    background: #f3f6f9;
    color: #0a3d62;
}

.tree-commerce .sorter {
    padding-top: 36px;
}

.tree-commerce .sorter ul li a.active,
.tree-commerce .sorter ul li a:hover {
    color: #ff8c00;
}

@media (max-width: 1199px) {
    .tree-commerce .product-Allitem-List {
        display: block;
    }

    .tree-commerce .product-Allitem-List .itemList ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

main .product-Allitem.tree-commerce .product-Allitem-List {
    align-items: flex-start;
    gap: 28px;
}

main .product-Allitem.tree-commerce .product-Allitem-List .CategoryList {
    width: 280px;
}

main .product-Allitem.tree-commerce .product-Allitem-List .itemList {
    flex: 1;
    width: auto;
    margin-left: 0;
}

main .product-Allitem.tree-commerce .product-Allitem-List .itemList ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 22px;
    margin: 0;
}

main .product-Allitem.tree-commerce .product-Allitem-List .itemList ul li {
    width: auto !important;
    padding: 0;
    margin: 0;
}

main .product-Allitem.tree-commerce .pro-item .pic .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 246px;
    padding: 22px;
}

main .product-Allitem.tree-commerce .pro-item .pic img {
    position: static;
    width: 100%;
    max-width: 240px;
    height: auto;
    padding: 0;
    object-fit: contain;
}

@media (max-width: 1199px) {
    main .product-Allitem.tree-commerce .product-Allitem-List {
        display: block;
    }

    main .product-Allitem.tree-commerce .product-Allitem-List .itemList ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    main .product-Allitem.tree-commerce .product-Allitem-List .itemList ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tree-commerce.product-Allitem {
        padding-top: 42px;
    }

    .tree-commerce .box-tit p {
        font-size: 24px;
        line-height: 1.25;
    }

    .tree-commerce .product-Allitem-List .itemList ul {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tree-commerce-card__media {
        min-height: 220px;
    }

    .tree-commerce-card__actions {
        flex-direction: column;
    }
}

/* Vethy theme hierarchy pass for product directory */
body main .product-Allitem.tree-commerce {
    background: linear-gradient(180deg, #f7faff 0%, #fff 46%, #f7faff 100%);
    padding-top: 54px;
}

body main .product-Allitem.tree-commerce .container {
    max-width: 1240px;
}

body main .product-Allitem.tree-commerce .box-tit,
body main .product-Allitem.tree-commerce .box-intro {
    text-align: left;
}

body main .product-Allitem.tree-commerce .box-tit {
    max-width: 760px;
    margin: 0 0 18px;
    padding-left: 18px;
    border-left: 5px solid #e1262f;
}

body main .product-Allitem.tree-commerce .box-tit p {
    color: #071f57;
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 1.04;
}

body main .product-Allitem.tree-commerce .box-intro {
    max-width: 920px;
    margin: 0 0 38px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #dce7f5;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 31, 87, 0.07);
}

body main .product-Allitem.tree-commerce .box-intro p {
    color: #324763;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

body main .product-Allitem.tree-commerce .itemList li:nth-child(1) .img-box::after,
body main .product-Allitem.tree-commerce .tree-commerce-card__tag--split {
    background: #0b5bd3;
}

body main .product-Allitem.tree-commerce .itemList li:nth-child(3) .img-box::after,
body main .product-Allitem.tree-commerce .tree-commerce-card__tag--industrial {
    background: #071f57;
}

body main .product-Allitem.tree-commerce .itemList li:nth-child(5) .img-box::after,
body main .product-Allitem.tree-commerce .tree-commerce-card__tag--premium {
    background: #e1262f;
}

body main .product-Allitem.tree-commerce .pro-item .tit a:hover,
body main .product-Allitem.tree-commerce .sorter ul li a.active,
body main .product-Allitem.tree-commerce .sorter ul li a:hover {
    color: #0b5bd3;
}

body main .product-Allitem.tree-commerce .pro-item .normal-more a:hover,
body main .product-Allitem.tree-commerce .tree-commerce-card__btn--primary:hover {
    background: #e1262f;
}

@media (max-width: 767px) {
    body main .product-Allitem.tree-commerce {
        padding-top: 34px;
    }

    body main .product-Allitem.tree-commerce .box-tit {
        margin-bottom: 14px;
        padding-left: 14px;
        border-left-width: 4px;
    }

    body main .product-Allitem.tree-commerce .box-tit p {
        font-size: clamp(30px, 8.4vw, 36px) !important;
        line-height: 1.08 !important;
    }

    body main .product-Allitem.tree-commerce .box-intro {
        margin-bottom: 28px;
        padding: 15px 16px;
    }

    body main .product-Allitem.tree-commerce .box-intro p {
        font-size: 15.5px !important;
        line-height: 1.62 !important;
    }
}