﻿/* =========================================================
   Goods Category Head
   Primary Color: #309a63
   Secondary Color: #23784c
========================================================= */

.goods-category-head {
    width: 98%;
    padding: 42px 0 26px;
}

.goods-category-title {
    width: 100%;
    max-width: 980px;
    margin-bottom: 18px;
}

    .goods-category-title > span {
        min-height: 30px;
        display: inline-flex;
        align-items: center;
        margin-bottom: 11px;
        padding: 5px 14px;
        border: 1px solid rgba(48, 154, 99, 0.38);
        border-radius: 999px;
        background: #eef8f2;
        color: #23784c;
        font-size: 12px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .goods-category-title h1,
    .goods-category-head h1 {
        position: relative;
        margin: 0 0 12px;
        padding-left: 16px;
        color: #17251e;
        font-size: 2rem;
        line-height: 42px;
        font-weight: 800;
    }

        .goods-category-title h1::before,
        .goods-category-head h1::before {
            content: "";
            position: absolute;
            top: 11px;
            left: 0;
            width: 4px;
            height: 20px;
            border-radius: 4px;
            background: #309a63;
        }

.goods-category-content {
    max-width: 1080px;
    color: #5d6f65;
    font-size: 0.98rem;
    line-height: 28px;
}

    .goods-category-content p {
        margin: 0 0 12px;
    }

        .goods-category-content p:last-child {
            margin-bottom: 0;
        }

    .goods-category-content a {
        color: #309a63;
        text-decoration: underline;
        transition: color 0.25s ease;
    }

        .goods-category-content a:hover {
            color: #23784c;
        }

    .goods-category-content ul,
    .goods-category-content ol {
        margin: 12px 0;
        padding-left: 22px;
    }

    .goods-category-content ul {
        list-style: disc;
    }

    .goods-category-content ol {
        list-style: decimal;
    }

    .goods-category-content li {
        margin-bottom: 6px;
    }


/* =========================================================
   Parts List Table
========================================================= */

.parts-list {
    width: 98%;
    padding: 10px 0 60px;
}

    .parts-list .jss187 {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border: 1px solid #d8e8df;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 14px 34px rgba(48, 154, 99, 0.08);
    }

    .parts-list table {
        width: 100%;
        min-width: 1320px;
        border-spacing: 0;
        border-collapse: separate;
        background: #ffffff;
    }

        .parts-list table th,
        .parts-list table td {
            box-sizing: border-box;
        }

        .parts-list table thead {
            background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
        }

        .parts-list table th {
            padding: 15px 14px;
            border-bottom: 1px solid #d8e8df;
            background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
            color: #17251e;
            font-size: 0.92rem;
            line-height: 22px;
            font-weight: 700;
            text-align: left;
            white-space: nowrap;
        }

            .parts-list table th.th-photo {
                width: 115px;
                min-width: 115px;
                max-width: 115px;
                text-align: center;
            }

            .parts-list table th.th-part {
                width: 260px;
                min-width: 260px;
                max-width: 260px;
            }

        .parts-list table td {
            padding: 16px 14px;
            border-bottom: 1px solid #e2ece6;
            background: #ffffff;
            color: #51645a;
            font-size: 0.9rem;
            line-height: 23px;
            vertical-align: middle;
        }

        .parts-list table tbody tr {
            transition: background-color 0.25s ease;
        }

            .parts-list table tbody tr:hover {
                background: #eef8f2;
            }

                .parts-list table tbody tr:hover td {
                    background: #eef8f2;
                }

            .parts-list table tbody tr:last-child td {
                border-bottom: none;
            }


    /* =========================================================
   Product Photo
========================================================= */

    .parts-list td.image {
        width: 115px;
        min-width: 115px;
        max-width: 115px;
        text-align: center;
    }

        .parts-list td.image a {
            width: 86px;
            height: 86px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            overflow: hidden;
            border: 1px solid #d8e8df;
            border-radius: 12px;
            background: #ffffff;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

            .parts-list td.image a:hover {
                border-color: #309a63;
                box-shadow: 0 10px 22px rgba(48, 154, 99, 0.13);
                transform: translateY(-2px);
            }

        .parts-list td.image img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }


    /* =========================================================
   Part Information
========================================================= */

    .parts-list td.parts {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
    }

        .parts-list td.parts h2 {
            max-width: 230px;
            margin: 0 0 7px;
            overflow: hidden;
            color: #17251e;
            font-size: 1rem;
            line-height: 24px;
            font-weight: 700;
            text-overflow: ellipsis;
        }

            .parts-list td.parts h2 a {
                color: #17251e;
                text-decoration: none;
                transition: color 0.25s ease;
            }

                .parts-list td.parts h2 a:hover {
                    color: #309a63;
                }

        .parts-list td.parts p {
            max-width: 230px;
            margin: 0 0 5px;
            overflow: hidden;
            color: #66756d;
            font-size: 0.86rem;
            line-height: 21px;
            text-overflow: ellipsis;
        }

            .parts-list td.parts p:last-child {
                margin-bottom: 0;
            }

            .parts-list td.parts p a {
                color: #309a63;
                text-decoration: none;
                transition: color 0.25s ease;
            }

                .parts-list td.parts p a:hover {
                    color: #23784c;
                    text-decoration: underline;
                }


    /* =========================================================
   Stock and Price
========================================================= */

    .parts-list td.stock {
        color: #17251e;
        font-weight: 600;
        white-space: nowrap;
    }

    .parts-list td.price {
        color: #309a63;
        font-weight: 600;
        white-space: nowrap;
    }


    /* =========================================================
   Quantity and RFQ
========================================================= */

    .parts-list td.quantity {
        width: 200px;
        min-width: 200px;
    }

    .parts-list .selectnum {
        width: 100%;
        margin-bottom: 8px;
    }

    .parts-list .selectbtn {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 180px;
    }

    .parts-list .selectnum input {
        width: 86px;
        height: 36px;
        padding: 0 10px;
        border: 1px solid #d8e8df;
        border-radius: 8px;
        outline: none;
        background: #f6fbf8;
        color: #17251e;
        font-size: 0.9rem;
        line-height: 36px;
        text-align: center;
        transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

        .parts-list .selectnum input:focus {
            border-color: #309a63;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(48, 154, 99, 0.12);
        }

    .parts-list .selectbtn .view {
        width: 86px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border: 1px solid #309a63;
        border-radius: 8px;
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .parts-list .selectbtn .rfq-view {
        background: linear-gradient( 135deg, #23784c 0%, #309a63 100% );
        box-shadow: 0 8px 18px rgba(48, 154, 99, 0.18);
    }

        .parts-list .selectbtn .rfq-view:hover {
            border-color: #185d3a;
            background: #185d3a;
            color: #ffffff;
            box-shadow: 0 10px 22px rgba(35, 120, 76, 0.25);
            transform: translateY(-2px);
        }

    .parts-list .selectbtn .sell-view {
        border-color: #309a63;
        background: #ffffff;
        color: #309a63;
        box-shadow: 0 8px 18px rgba(48, 154, 99, 0.08);
    }

        .parts-list .selectbtn .sell-view:hover {
            border-color: #309a63;
            background: #eef8f2;
            color: #23784c;
            box-shadow: 0 10px 22px rgba(48, 154, 99, 0.14);
            transform: translateY(-2px);
        }

    .parts-list .selectbtn .view.is-loading {
        opacity: 0.75;
        pointer-events: none;
    }


    /* =========================================================
   PDF Link
========================================================= */

    .parts-list td.pdf-cell {
        min-width: 130px;
    }

    .parts-list .pdf-link {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0 12px;
        border: 1px solid #d8e8df;
        border-radius: 8px;
        background: #f3faf6;
        color: #309a63;
        font-size: 0.88rem;
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

        .parts-list .pdf-link i {
            color: #309a63;
            font-size: 1rem;
            transition: color 0.25s ease;
        }

        .parts-list .pdf-link:hover {
            border-color: #309a63;
            background: #309a63;
            color: #ffffff;
            transform: translateY(-2px);
        }

            .parts-list .pdf-link:hover i {
                color: #ffffff;
            }


    /* =========================================================
   Specification Columns
========================================================= */

    .parts-list td.spec {
        min-width: 120px;
        color: #51645a;
    }


/* =========================================================
   Desktop Sticky Columns
========================================================= */

@media (min-width: 769px) {
    .parts-list table th.th-photo,
    .parts-list table td.image {
        position: sticky;
        left: 0;
        z-index: 20;
        width: 115px;
        min-width: 115px;
        max-width: 115px;
        background: #ffffff;
    }

    .parts-list table th.th-part,
    .parts-list table td.parts {
        position: sticky;
        left: 115px;
        z-index: 20;
        width: 260px;
        min-width: 260px;
        max-width: 260px;
        background: #ffffff;
        box-shadow: 8px 0 14px rgba(48, 154, 99, 0.08);
    }

    .parts-list table thead th.th-photo,
    .parts-list table thead th.th-part {
        z-index: 30;
        background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
    }

    .parts-list table tbody tr:hover td.image,
    .parts-list table tbody tr:hover td.parts {
        background: #eef8f2;
    }
}


/* =========================================================
   Fixed Cloned Table Header
========================================================= */

#partsFixedThead {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    display: none;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-bottom: none;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(48, 154, 99, 0.14);
    pointer-events: none;
}

    #partsFixedThead .parts-fixed-scroll {
        width: 100%;
        overflow: hidden;
    }

    #partsFixedThead table {
        width: 100%;
        min-width: 1250px;
        border-spacing: 0;
        border-collapse: separate;
        background: #ffffff;
    }

    #partsFixedThead thead {
        background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
    }

    #partsFixedThead th {
        box-sizing: border-box;
        padding: 15px 14px;
        border-bottom: 1px solid #d8e8df;
        background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
        color: #17251e;
        font-size: 0.92rem;
        line-height: 22px;
        font-weight: 700;
        text-align: left;
        white-space: nowrap;
    }

        #partsFixedThead th.th-photo {
            position: sticky;
            left: 0;
            z-index: 60;
            width: 115px;
            min-width: 115px;
            max-width: 115px;
            background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
            text-align: center;
        }

        #partsFixedThead th.th-part {
            position: sticky;
            left: 115px;
            z-index: 60;
            width: 260px;
            min-width: 260px;
            max-width: 260px;
            background: linear-gradient( 180deg, #f6fbf8 0%, #edf8f2 100% );
            box-shadow: 8px 0 14px rgba(48, 154, 99, 0.08);
        }


/* =========================================================
   Sticky Bottom Scrollbar
========================================================= */

#partsStickyScrollbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    display: none;
    height: 20px;
    padding: 4px 0;
    border-top: 1px solid #d8e8df;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -8px 22px rgba(48, 154, 99, 0.10);
    backdrop-filter: blur(6px);
}

    #partsStickyScrollbar .psb-track {
        width: calc(100% - 40px);
        height: 12px;
        margin: 0 auto;
        overflow-x: auto;
        overflow-y: hidden;
    }

    #partsStickyScrollbar .psb-spacer {
        height: 1px;
    }

    #partsStickyScrollbar .psb-track::-webkit-scrollbar {
        height: 8px;
    }

    #partsStickyScrollbar .psb-track::-webkit-scrollbar-track {
        border-radius: 10px;
        background: #edf8f2;
    }

    #partsStickyScrollbar .psb-track::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #8fc9a8;
    }

        #partsStickyScrollbar .psb-track::-webkit-scrollbar-thumb:hover {
            background: #309a63;
        }


/* =========================================================
   Table Scrollbar
========================================================= */

.parts-list .jss187::-webkit-scrollbar {
    height: 8px;
}

.parts-list .jss187::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #edf8f2;
}

.parts-list .jss187::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #8fc9a8;
}

    .parts-list .jss187::-webkit-scrollbar-thumb:hover {
        background: #309a63;
    }


/* =========================================================
   Goods List Sourcing CTA
========================================================= */

.goods-list-cta {
    width: 100%;
    padding: 0 0 72px;
}

.goods-list-cta-inner {
    position: relative;
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    padding: 42px 48px;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 22px;
    background: linear-gradient( 135deg, #f3faf6 0%, #ffffff 56%, #eef8f2 100% );
    box-shadow: 0 18px 46px rgba(48, 154, 99, 0.10);
}

    .goods-list-cta-inner::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 6px;
        background: linear-gradient( 90deg, #54b77d 0%, #54b77d 32%, #309a63 100% );
    }

    .goods-list-cta-inner::after {
        content: "";
        position: absolute;
        right: -95px;
        bottom: -130px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(48, 154, 99, 0.05);
    }

.goods-list-cta-text {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    max-width: 830px;
}

    .goods-list-cta-text > span {
        min-height: 30px;
        display: inline-flex;
        align-items: center;
        margin-bottom: 13px;
        padding: 5px 14px;
        border: 1px solid rgba(48, 154, 99, 0.38);
        border-radius: 999px;
        background: #eef8f2;
        color: #23784c;
        font-size: 12px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .goods-list-cta-text h2 {
        margin: 0 0 14px;
        color: #17251e;
        font-size: 30px;
        line-height: 1.4;
        font-weight: 800;
    }

    .goods-list-cta-text p {
        margin: 0;
        color: #5d6f65;
        font-size: 15px;
        line-height: 1.85;
    }

.goods-list-cta-actions {
    position: relative;
    z-index: 2;
    flex: 0 0 250px;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goods-list-cta-primary,
.goods-list-cta-secondary {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.goods-list-cta-primary {
    border: 1px solid #309a63;
    background: #309a63;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(48, 154, 99, 0.25);
}

    .goods-list-cta-primary:hover {
        border-color: #23784c;
        background: #23784c;
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(35, 120, 76, 0.24);
        transform: translateY(-2px);
    }

.goods-list-cta-secondary {
    border: 1px solid #cfe1d7;
    background: #ffffff;
    color: #309a63;
}

    .goods-list-cta-secondary:hover {
        border-color: #309a63;
        background: #f3faf6;
        color: #23784c;
        box-shadow: 0 10px 22px rgba(48, 154, 99, 0.10);
        transform: translateY(-2px);
    }

    .goods-list-cta-primary i,
    .goods-list-cta-secondary i {
        font-size: 16px;
    }


/* =========================================================
   Mobile Layout
========================================================= */

@media (max-width: 768px) {
    .goods-category-head {
        width: 94%;
        padding: 30px 0 18px;
    }

    .goods-category-title {
        margin-bottom: 14px;
    }

        .goods-category-title > span {
            min-height: 28px;
            margin-bottom: 9px;
            padding: 4px 11px;
            font-size: 10px;
            line-height: 18px;
            letter-spacing: 0.9px;
        }

        .goods-category-title h1,
        .goods-category-head h1 {
            margin-bottom: 10px;
            font-size: 1.45rem;
            line-height: 34px;
        }

            .goods-category-title h1::before,
            .goods-category-head h1::before {
                top: 8px;
                height: 18px;
            }

    .goods-category-content {
        font-size: 0.9rem;
        line-height: 25px;
    }

        .goods-category-content p {
            margin-bottom: 10px;
        }

    .parts-list {
        width: 94%;
        padding: 8px 0 42px;
    }

        .parts-list .jss187 {
            overflow-x: auto;
            overflow-y: hidden;
            border-radius: 12px;
        }

        .parts-list table {
            min-width: 1170px;
        }

            .parts-list table th {
                padding: 12px 10px;
                font-size: 0.84rem;
            }

            .parts-list table td {
                padding: 12px 10px;
                font-size: 0.82rem;
                line-height: 21px;
            }

        .parts-list td.image a {
            width: 72px;
            height: 72px;
            border-radius: 10px;
        }

            .parts-list td.image a:hover {
                transform: none;
            }

        .parts-list td.parts h2 {
            font-size: 0.92rem;
            line-height: 22px;
        }

        .parts-list td.parts p {
            font-size: 0.8rem;
            line-height: 20px;
        }

        .parts-list .selectnum input,
        .parts-list .selectbtn .view {
            width: 78px;
            height: 34px;
            font-size: 0.82rem;
            line-height: 34px;
        }

            .parts-list .selectbtn .view:hover {
                transform: none;
            }

        .parts-list .pdf-link {
            min-height: 34px;
            padding: 0 10px;
            font-size: 0.8rem;
        }

            .parts-list .pdf-link:hover {
                transform: none;
            }

    #partsStickyScrollbar {
        display: none !important;
    }

    #partsFixedThead {
        display: none !important;
    }

    .parts-list table thead th,
    .parts-list table th.th-photo,
    .parts-list table th.th-part,
    .parts-list table td.image,
    .parts-list table td.parts {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        box-shadow: none;
    }

    .goods-list-cta {
        padding: 0 0 46px;
    }

    .goods-list-cta-inner {
        min-height: 0;
        display: block;
        padding: 34px 20px 26px;
        border-radius: 17px;
    }

        .goods-list-cta-inner::after {
            right: -130px;
            bottom: -160px;
        }

    .goods-list-cta-text > span {
        min-height: 28px;
        margin-bottom: 11px;
        padding: 4px 11px;
        font-size: 10px;
        line-height: 18px;
        letter-spacing: 0.9px;
    }

    .goods-list-cta-text h2 {
        margin-bottom: 12px;
        font-size: 23px;
        line-height: 1.45;
    }

    .goods-list-cta-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .goods-list-cta-actions {
        width: 100%;
        margin-top: 24px;
    }

    .goods-list-cta-primary,
    .goods-list-cta-secondary {
        min-height: 48px;
        padding: 11px 16px;
        font-size: 14px;
    }

        .goods-list-cta-primary:hover,
        .goods-list-cta-secondary:hover {
            transform: none;
        }
}
/* =========================================================
   Unified Category Navigation (goods_list.html)
   ========================================================= */

.goods-category-content h2,
.goods-category-faq-content h2 {
    margin: 26px 0 12px;
    color: #17251e;
    font-size: 1.45rem;
    line-height: 34px;
}

    .goods-category-content h2:first-child,
    .goods-category-faq-content h2:first-child {
        margin-top: 0;
    }

.goods-category-content h3,
.goods-category-faq-content h3 {
    margin: 20px 0 8px;
    color: #24372e;
    font-size: 1.08rem;
    line-height: 28px;
}

.products-sub-menu {
    width: 98%;
    padding: 10px 0 60px;
}

.products-sub-menu-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 22px 26px;
}

.product-menu-list-item {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid #d8e8df;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(48, 154, 99, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .product-menu-list-item:hover {
        border-color: #309a63;
        box-shadow: 0 18px 42px rgba(48, 154, 99, 0.14);
        transform: translateY(-3px);
    }

    .product-menu-list-item.no-child {
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

        .product-menu-list-item.no-child:hover {
            border-color: transparent;
            box-shadow: none;
            transform: none;
        }

.product-menu-list-title {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 15px;
    color: #17251e;
    font-size: 1.05rem;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

    .product-menu-list-title::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #309a63;
        transition: background-color 0.25s ease, transform 0.25s ease;
    }

    .product-menu-list-title:hover {
        color: #309a63;
    }

        .product-menu-list-title:hover::before {
            transform: scale(1.25);
        }

.product-menu-list-item.no-child .product-menu-list-title {
    min-height: 46px;
    padding: 11px 16px 11px 30px;
    border: 1px solid #d8e8df;
    border-radius: 10px;
    background: #f6fbf8;
    color: #24372e;
    font-size: 0.98rem;
    line-height: 24px;
    box-shadow: 0 10px 24px rgba(48, 154, 99, 0.06);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .product-menu-list-item.no-child .product-menu-list-title::before {
        top: 21px;
        left: 16px;
    }

    .product-menu-list-item.no-child .product-menu-list-title:hover {
        border-color: transparent;
        background: linear-gradient(135deg, #23784c 0%, #309a63 100%);
        color: #ffffff;
        box-shadow: 0 12px 26px rgba(48, 154, 99, 0.20);
        transform: translateY(-2px);
    }

        .product-menu-list-item.no-child .product-menu-list-title:hover::before {
            background: #ffffff;
        }

.product-menu-list-child {
    width: 100%;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px dashed #d8e8df;
}

    .product-menu-list-child > li {
        position: relative;
        width: 100%;
        margin-bottom: 8px;
    }

        .product-menu-list-child > li:last-child {
            margin-bottom: 0;
        }

        .product-menu-list-child > li > a {
            display: block;
            color: #51645a;
            font-size: 0.92rem;
            line-height: 23px;
            text-decoration: none;
            transition: color 0.25s ease, padding-left 0.25s ease;
        }

            .product-menu-list-child > li > a span {
                display: inline-block;
                margin-right: 5px;
                color: #309a63;
            }

            .product-menu-list-child > li > a:hover {
                padding-left: 4px;
                color: #23784c;
            }

        .product-menu-list-child > li.has-child > a {
            color: #24372e;
        }

.product-menu-list-grandchild {
    margin-top: 6px;
    padding-left: 15px;
}

    .product-menu-list-grandchild > li {
        margin-bottom: 5px;
    }

        .product-menu-list-grandchild > li:last-child {
            margin-bottom: 0;
        }

        .product-menu-list-grandchild > li > a {
            display: block;
            color: #66756d;
            font-size: 0.84rem;
            line-height: 21px;
            text-decoration: none;
            transition: color 0.25s ease, padding-left 0.25s ease;
        }

            .product-menu-list-grandchild > li > a span {
                display: inline-block;
                margin-right: 5px;
                color: #8aad98;
            }

            .product-menu-list-grandchild > li > a:hover {
                padding-left: 4px;
                color: #309a63;
            }


/* =========================================================
   Category FAQ
   ========================================================= */

.goods-category-faq {
    width: 98%;
    padding: 0 0 58px;
}

.goods-category-faq-content {
    padding: 30px 34px;
    border: 1px solid #d8e8df;
    border-radius: 16px;
    background: #ffffff;
    color: #5d6f65;
    font-size: 0.98rem;
    line-height: 28px;
    box-shadow: 0 14px 34px rgba(48, 154, 99, 0.07);
}

    .goods-category-faq-content p {
        margin: 0 0 16px;
    }

        .goods-category-faq-content p:last-child {
            margin-bottom: 0;
        }

    .goods-category-faq-content a {
        color: #309a63;
        text-decoration: underline;
    }

    .goods-category-faq-content ul,
    .goods-category-faq-content ol {
        margin: 12px 0 18px;
        padding-left: 22px;
    }

    .goods-category-faq-content ul {
        list-style: disc;
    }

    .goods-category-faq-content ol {
        list-style: decimal;
    }

    .goods-category-faq-content li {
        margin-bottom: 6px;
    }

@media (max-width: 768px) {
    .goods-category-content h2,
    .goods-category-faq-content h2 {
        margin: 22px 0 10px;
        font-size: 1.2rem;
        line-height: 30px;
    }

    .goods-category-content h3,
    .goods-category-faq-content h3 {
        margin: 17px 0 7px;
        font-size: 1rem;
        line-height: 26px;
    }

    .products-sub-menu {
        width: 94%;
        padding: 8px 0 42px;
    }

    .products-sub-menu-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-menu-list-item {
        padding: 16px 15px;
        border-radius: 12px;
    }

        .product-menu-list-item:hover,
        .product-menu-list-item.no-child .product-menu-list-title:hover {
            transform: none;
        }

    .product-menu-list-title {
        font-size: 1rem;
        line-height: 26px;
    }

    .product-menu-list-item.no-child .product-menu-list-title {
        min-height: 42px;
        padding: 9px 14px 9px 28px;
        font-size: 0.9rem;
    }

        .product-menu-list-item.no-child .product-menu-list-title::before {
            top: 18px;
            left: 14px;
        }

    .product-menu-list-child {
        margin-top: 10px;
        padding-top: 10px;
    }

        .product-menu-list-child > li > a {
            font-size: 0.86rem;
            line-height: 22px;
        }

    .product-menu-list-grandchild {
        padding-left: 12px;
    }

        .product-menu-list-grandchild > li > a {
            font-size: 0.8rem;
            line-height: 20px;
        }

    .goods-category-faq {
        width: 94%;
        padding: 0 0 42px;
    }

    .goods-category-faq-content {
        padding: 22px 18px;
        border-radius: 12px;
        font-size: 0.9rem;
        line-height: 25px;
    }
}

/* =========================================================
   Product List Column Alignment
   Price column is hidden, keep the remaining columns tidy.
========================================================= */
@media (min-width: 769px) {
    .parts-list table th:nth-child(3),
    .parts-list table td.stock {
        width: 22%;
        min-width: 180px;
        text-align: center;
    }

    .parts-list table th:nth-child(5),
    .parts-list table td.quantity {
        width: 220px;
        min-width: 220px;
        text-align: center;
    }

    .parts-list table th:nth-child(6),
    .parts-list table td.pdf-cell {
        width: 220px;
        min-width: 220px;
        text-align: center;
    }

    .parts-list .selectnum,
    .parts-list .selectbtn {
        width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

        .parts-list .selectnum input {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

    .parts-list .selectbtn {
        justify-content: center;
    }
}
