﻿/* =========================================================
   Product Detail Page
   Primary Color: #309a63
   Secondary Color: #23784c
========================================================= */

.products-all-main,
.products-all-main *,
.products-all-main *::before,
.products-all-main *::after {
    box-sizing: border-box;
}

.products-all-main {
    width: 100%;
    padding: 34px 0 76px;
    overflow: visible;
    background: #f5faf7;
    color: #51645a;
    font-size: 14px;
}

.products-detail {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
    overflow: visible;
}

.products-detail-left {
    width: calc(100% - 376px);
    min-width: 0;
    overflow: visible;
}

.products-detail-right {
    position: sticky;
    top: 96px;
    width: 350px;
    max-height: calc(100vh - 120px);
    flex: 0 0 350px;
    padding-right: 5px;
    overflow-x: hidden;
    overflow-y: auto;
}

.products-detail-right::-webkit-scrollbar {
    width: 5px;
}

.products-detail-right::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #edf8f2;
}

.products-detail-right::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #8fc9a8;
}

.products-detail-right::-webkit-scrollbar-thumb:hover {
    background: #309a63;
}


/* =========================================================
   Product Overview Card
========================================================= */

.products-detail-left-info {
    position: relative;
    width: 100%;
    padding: 30px;
    overflow: visible;
    border: 1px solid #d8e8df;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(48, 154, 99, 0.10);
}

.products-detail-left-info-main {
    display: grid !important;
    grid-template-columns: 370px minmax(0, 1fr);
    align-items: start !important;
    gap: 34px;
}


/* =========================================================
   Product Heading
========================================================= */

.products-detail-left-info-head {
    margin-bottom: 22px;
}

.product-heading-labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.product-heading-labels > span,
.products-detail-left-info-head > span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border: 1px solid rgba(48, 154, 99, 0.20);
    border-radius: 999px;
    background: #eef8f2;
    color: #309a63;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.product-heading-labels > em {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border: 1px solid rgba(48, 154, 99, 0.34);
    border-radius: 999px;
    background: #f3faf6;
    color: #23784c;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.4px;
}

.products-detail-left-info h1,
.products-detail-left-info-head h1 {
    margin: 14px 0 0;
    color: #17251e;
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 800;
    word-break: break-word;
}

.products-detail-left-info h1::before {
    display: none;
}

.products-detail-left-info-head p {
    margin: 13px 0 0;
    color: #66756d;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   Quick Facts
========================================================= */

.product-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 21px;
}

.product-quick-fact {
    min-width: 0;
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid #d8e8df;
    border-radius: 12px;
    background: #f6fbf8;
}

.product-quick-fact > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #309a63;
    color: #ffffff;
    font-size: 16px;
}

.product-quick-fact > div {
    min-width: 0;
}

.product-quick-fact span {
    display: block;
    margin-bottom: 4px;
    color: #66756d;
    font-size: 14px;
    line-height: 21px;
}

.product-quick-fact strong {
    display: block;
    overflow: hidden;
    color: #17251e;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   Product Primary Data
========================================================= */

.products-detail-left-info-list {
    min-width: 0;
}

.product-primary-data {
    overflow: hidden;
    border: 1px solid #dfe9e3;
    border-radius: 14px;
}

.product-primary-data dl,
.products-detail-left-info-list dl {
    width: 100%;
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start !important;
    margin: 0;
    padding: 12px 14px;
    border-bottom: 1px solid #e5eee9;
}

.product-primary-data dl:nth-child(even) {
    background: #f8fbf9;
}

.product-primary-data dl:last-child {
    border-bottom: none;
}

.product-primary-data dl dt,
.products-detail-left-info-list dl dt {
    width: auto;
    padding-right: 12px;
    color: #61746a;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.product-primary-data dl dd,
.products-detail-left-info-list dl dd {
    width: auto;
    min-width: 0;
    margin: 0;
    color: #24372e;
    font-size: 14px;
    line-height: 24px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.product-primary-data dl dd a,
.products-detail-left-info-list dl dd a {
    color: #309a63;
    text-decoration: none;
}

.product-primary-data dl dd a:hover,
.products-detail-left-info-list dl dd a:hover {
    color: #23784c;
    text-decoration: underline;
}

.product-description-row dd {
    color: #5d6f65;
}

.product-datasheet-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.product-datasheet-link i {
    color: #d92d20;
    font-size: 17px;
}


/* =========================================================
   Purchase Panel
========================================================= */

.product-purchase-panel {
    margin-top: 18px;
    padding: 17px;
    border: 1px solid rgba(48, 154, 99, 0.20);
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #eef8f2 0%,
        #ffffff 60%,
        #f3faf6 100%
    );
}

.product-purchase-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.product-purchase-title > span {
    color: #17251e;
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
}

.product-purchase-title > em {
    color: #66756d;
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
}

.product-purchase-title > em strong {
    color: #309a63;
}

.product-purchase-controls {
    display: grid;
    grid-template-columns: 90px minmax(122px, 0.75fr) minmax(160px, 1fr);
    gap: 9px;
}

.products-detail-left-info-list #commoditySelectNum {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    border: 1px solid #cfe1d7;
    border-radius: 9px;
    outline: none;
    background: #ffffff;
    color: #17251e;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
}

.products-detail-left-info-list #commoditySelectNum:focus {
    border-color: #309a63;
    box-shadow: 0 0 0 3px rgba(48, 154, 99, 0.12);
}

.products-detail-left-info-list .btnbuy,
.products-detail-left-info-list .btnbuy1 {
    min-width: 0;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 44px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.products-detail-left-info-list .btnbuy {
    border: 1px solid #309a63;
    background: linear-gradient(
        135deg,
        #23784c 0%,
        #309a63 100%
    );
    color: #ffffff;
    box-shadow: 0 9px 20px rgba(48, 154, 99, 0.18);
}

.products-detail-left-info-list .btnbuy:hover {
    border-color: #185d3a;
    background: #185d3a;
    color: #ffffff;
    transform: translateY(-2px);
}

.products-detail-left-info-list .btnbuy1 {
    border: 1px solid #cfe1d7;
    background: #ffffff;
    color: #309a63;
}

.products-detail-left-info-list .btnbuy1:hover {
    border-color: #309a63;
    background: #eef8f2;
    color: #23784c;
    transform: translateY(-2px);
}

.products-detail-left-info-list .sell-inventory-btn {
    border-color: #309a63;
    background: #ffffff;
    color: #309a63;
    box-shadow: 0 8px 18px rgba(48, 154, 99, 0.08);
}

.products-detail-left-info-list .sell-inventory-btn:hover {
    border-color: #309a63;
    background: #eef8f2;
    color: #23784c;
    box-shadow: 0 10px 22px rgba(48, 154, 99, 0.14);
}

.products-detail-left-info-list .sell-inventory-btn.is-loading {
    opacity: 0.72;
    pointer-events: none;
}


/* =========================================================
   Compare and Favorite
========================================================= */

.products-detail-left-info-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 15px;
}

.sub_compare {
    min-width: 118px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    border: 1px solid #d8e8df;
    border-radius: 9px;
    background: #ffffff;
    color: #5d6f65;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

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


/* =========================================================
   Product Gallery
========================================================= */

.products-detail-left-info-pic {
    position: relative;
    z-index: 20;
    width: 370px;
    min-width: 0;
}

.pic-box,
.product-gallery,
.gallery-main-wrap {
    overflow: visible;
}

.gallery-main-wrap {
    position: relative;
    width: 100%;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(48, 154, 99, 0.035),
            transparent 55%
        ),
        #ffffff;
    cursor: zoom-in;
}

.gallery-main::before {
    content: "";
    position: absolute;
    top: -75px;
    left: -75px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(48, 154, 99, 0.05);
}

.gallery-main::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(84, 183, 125, 0.08);
}

.gallery-main img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    height: auto;
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.04);
}

.zoom-icon {
    position: absolute;
    right: 13px;
    bottom: 13px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #309a63;
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 9px 20px rgba(48, 154, 99, 0.22);
}

.zoom-lens {
    position: absolute;
    z-index: 6;
    display: none;
    width: 110px;
    height: 110px;
    border: 1px solid #309a63;
    background: rgba(48, 154, 99, 0.11);
    pointer-events: none;
}

.zoom-view {
    position: absolute;
    top: 0;
    left: calc(100% + 18px);
    z-index: 999;
    display: none;
    width: 410px;
    height: 410px;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(48, 154, 99, 0.20);
}

.zoom-view img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
}

.gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.thumb-arrow {
    width: 30px;
    height: 56px;
    flex: 0 0 30px;
    padding: 0;
    border: 1px solid #d8e8df;
    border-radius: 9px;
    background: #f3faf6;
    color: #309a63;
    font-size: 17px;
    line-height: 54px;
    text-align: center;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.thumb-arrow:hover {
    border-color: #309a63;
    background: #309a63;
    color: #ffffff;
}

.thumb-arrow.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.thumbs-track-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.thumbs-track {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.thumb-item {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    padding: 6px;
    border: 1px solid #d8e8df;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #309a63;
    box-shadow: 0 7px 16px rgba(48, 154, 99, 0.12);
    transform: translateY(-2px);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   Product Gallery Sourcing Support
========================================================= */

.product-gallery-support {
    position: relative;
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        #eef8f2 0%,
        #ffffff 58%,
        #f3faf6 100%
    );
}

.product-gallery-support::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #23784c 0%,
        #309a63 68%,
        #54b77d 100%
    );
}

.product-gallery-support::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(48, 154, 99, 0.04);
    pointer-events: none;
}

.product-gallery-support-head {
    position: relative;
    z-index: 2;
}

.product-gallery-support-head > span {
    display: block;
    margin-bottom: 5px;
    color: #309a63;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.product-gallery-support-head h3 {
    margin: 0;
    color: #17251e;
    font-size: 19px;
    line-height: 29px;
    font-weight: 800;
}

.product-gallery-support-head p {
    margin: 9px 0 0;
    color: #66756d;
    font-size: 14px;
    line-height: 23px;
}

.product-gallery-support-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin-top: 17px;
}

.product-gallery-support-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-gallery-support-item > i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #309a63;
    color: #ffffff;
    font-size: 14px;
}

.product-gallery-support-item > div {
    min-width: 0;
}

.product-gallery-support-item strong {
    display: block;
    color: #17251e;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.product-gallery-support-item span {
    display: block;
    margin-top: 2px;
    color: #74877c;
    font-size: 14px;
    line-height: 22px;
}

.product-gallery-support-meta {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
}

.product-gallery-support-meta > div {
    min-width: 0;
    padding: 12px;
    border: 1px solid #d8e8df;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
}

.product-gallery-support-meta span {
    display: block;
    margin-bottom: 4px;
    color: #66756d;
    font-size: 14px;
    line-height: 21px;
}

.product-gallery-support-meta strong {
    display: block;
    overflow: hidden;
    color: #309a63;
    font-size: 14px;
    line-height: 22px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-gallery-support-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.product-gallery-support-primary,
.product-gallery-support-secondary {
    min-width: 0;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 22px;
    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;
}

.product-gallery-support-primary {
    border: 1px solid #309a63;
    background: linear-gradient(
        135deg,
        #23784c 0%,
        #309a63 100%
    );
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(48, 154, 99, 0.18);
}

.product-gallery-support-primary:hover {
    border-color: #185d3a;
    background: #185d3a;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(35, 120, 76, 0.22);
    transform: translateY(-2px);
}

.product-gallery-support-secondary {
    border: 1px solid #cfe1d7;
    background: #ffffff;
    color: #309a63;
}

.product-gallery-support-secondary:hover {
    border-color: #309a63;
    background: #eef8f2;
    color: #23784c;
    transform: translateY(-2px);
}


/* =========================================================
   Trust Information
========================================================= */

.products-detail-trust {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #e5eee9;
}

.products-detail-trust dl {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    padding: 16px;
    border: 1px solid #dfe9e3;
    border-radius: 13px;
    background: #f8fbf9;
}

.products-detail-trust dl dt {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #309a63;
    color: #ffffff;
    font-size: 16px;
}

.products-detail-trust dl dd {
    min-width: 0;
    margin: 0;
}

.products-detail-trust dl dd strong {
    display: block;
    color: #17251e;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.products-detail-trust dl dd p {
    margin: 4px 0 0;
    color: #74877c;
    font-size: 14px;
    line-height: 22px;
}


/* =========================================================
   Content Sections
========================================================= */

.products-spec,
.products-container,
.user-guide-wrap {
    width: 100%;
    margin-top: 24px;
    padding: 30px;
    overflow: visible;
    border: 1px solid #d8e8df;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(48, 154, 99, 0.08);
}

.product-section-heading {
    margin-bottom: 22px;
}

.product-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #309a63;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.product-section-heading h2,
.products-spec h2,
.user-guide-wrap > h2,
.products-container > h2 {
    position: relative;
    margin: 0;
    padding-left: 15px;
    color: #17251e;
    font-size: 1.45rem;
    line-height: 34px;
    font-weight: 800;
}

.product-section-heading h2::before,
.products-spec h2::before,
.user-guide-wrap > h2::before,
.products-container > h2::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: #309a63;
}

.product-tab-pane {
    color: #5d6f65;
    font-size: 15px;
    line-height: 1.9;
}

.product-tab-pane p {
    margin: 0 0 15px;
}

.product-tab-pane p:last-child {
    margin-bottom: 0;
}

.product-tab-pane h2,
.product-tab-pane h3,
.product-tab-pane h4 {
    margin: 24px 0 11px;
    color: #17251e;
    font-weight: 700;
}

.product-tab-pane h2 {
    font-size: 1.45rem;
    line-height: 34px;
}

.product-tab-pane h3 {
    font-size: 1.25rem;
    line-height: 31px;
}

.product-tab-pane h4 {
    font-size: 1.05rem;
    line-height: 28px;
}

.product-tab-pane a {
    color: #309a63;
    text-decoration: underline;
}

.product-tab-pane a:hover {
    color: #23784c;
}

.product-tab-pane img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.product-tab-pane ul,
.product-tab-pane ol {
    margin: 14px 0;
    padding-left: 24px;
}

.product-tab-pane ul {
    list-style: disc;
}

.product-tab-pane ol {
    list-style: decimal;
}

.product-tab-pane li {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 26px;
}

.product-tab-pane table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
}

.product-tab-pane table th,
.product-tab-pane table td {
    padding: 12px 13px;
    border: 1px solid #d8e8df;
    color: #51645a;
    font-size: 14px;
    line-height: 23px;
}

.product-tab-pane table th {
    background: #f3faf6;
    color: #17251e;
}


/* =========================================================
   Technical Tabs
========================================================= */

.products-spec-tab {
    position: sticky;
    top: 84px;
    z-index: 800;
    margin-bottom: 24px;
    padding: 7px;
    border: 1px solid #d8e8df;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 22px rgba(48, 154, 99, 0.10);
    backdrop-filter: blur(8px);
}

.products-spec-tab ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    margin: 0;
    padding: 0 0 2px;
    overflow-x: auto;
    overflow-y: hidden;
}

.products-spec-tab ul::-webkit-scrollbar {
    height: 4px;
}

.products-spec-tab ul::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #edf8f2;
}

.products-spec-tab ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #8fc9a8;
}

.products-spec-tab ul li {
    min-width: 132px;
    height: 42px;
    flex: 1 0 auto;
    padding: 0 18px;
    border: 1px solid #d8e8df;
    border-radius: 9px;
    background: #f6fbf8;
    color: #309a63;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.products-spec-tab ul li:hover,
.products-spec-tab ul li.active {
    border-color: #309a63;
    background: #309a63;
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(48, 154, 99, 0.16);
}

.products-spec-tab-info {
    width: 100%;
    margin-bottom: 28px;
    padding-top: 5px;
    scroll-margin-top: 150px;
}

.products-spec-tab-info:last-child {
    margin-bottom: 0;
}

.products-spec-tab-info > h3 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 14px;
    color: #17251e;
    font-size: 1.2rem;
    line-height: 30px;
    font-weight: 700;
}

.products-spec-tab-info > h3::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #309a63;
}


/* =========================================================
   Specification Table
========================================================= */

.product-tab-spec {
    width: 100%;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 13px;
}

.product-tab-spec dl {
    display: grid;
    grid-template-columns: 34% minmax(0, 1fr);
    margin: 0;
    border-bottom: 1px solid #e5eee9;
}

.product-tab-spec dl:last-child {
    border-bottom: none;
}

.product-tab-spec dl:nth-child(odd) {
    background: #fafcfb;
}

.product-tab-spec dl dt,
.product-tab-spec dl dd {
    margin: 0;
    padding: 13px 15px;
    color: #51645a;
    font-size: 14px;
    line-height: 24px;
    word-break: break-word;
}

.product-tab-spec dl dt {
    border-right: 1px solid #e5eee9;
    background: #f3faf6;
    color: #17251e;
    font-weight: 600;
}

.product-tab-spec dl dd {
    min-width: 0;
}

.product-tab-spec .product-spec-header dt,
.product-tab-spec .product-spec-header dd {
    background: #309a63;
    color: #ffffff;
    font-weight: 700;
}


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

.product-tab-faq {
    display: grid;
    gap: 12px;
}

.product-faq-item {
    padding: 17px 18px;
    border: 1px solid #d8e8df;
    border-radius: 12px;
    background: #f8fbf9;
}

.product-tab-faq h3 {
    margin: 0 0 7px;
    color: #17251e;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
}

.product-tab-faq p {
    margin: 0;
    color: #66756d;
    font-size: 14px;
    line-height: 24px;
}


/* =========================================================
   Hot Sale
========================================================= */

.products-lab-saleapro {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.products-lab-saleapro a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #d8e8df;
    border-radius: 8px;
    background: #f6fbf8;
    color: #5d6f65;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.products-lab-saleapro a:hover {
    border-color: #309a63;
    background: #309a63;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   Related Products
========================================================= */

.products-lab-retapro {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch !important;
    gap: 13px;
}

.products-lab-retapro dl {
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 13px;
    background: #ffffff;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.products-lab-retapro dl:hover {
    border-color: #309a63;
    box-shadow: 0 10px 24px rgba(48, 154, 99, 0.12);
    transform: translateY(-3px);
}

.products-lab-retapro dl dt {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
    border-bottom: 1px solid #e5eee9;
    background: #ffffff;
}

.products-lab-retapro dl dt a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-lab-retapro dl dt img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 82% !important;
    max-height: 82% !important;
    margin: 0 auto;
    object-fit: contain;
}

.products-lab-retapro dl dd {
    padding: 14px;
    background: #ffffff;
}

.products-lab-retapro dl dd > a {
    display: block;
    height: 46px;
    overflow: hidden;
    color: #17251e;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.products-lab-retapro dl dd > a:hover {
    color: #309a63;
}

.products-lab-retapro dl dd p {
    height: 22px;
    margin: 8px 0 0;
    overflow: hidden;
    color: #66756d;
    font-size: 14px;
    line-height: 22px;
}


/* =========================================================
   SEO Product Summary
========================================================= */

.product-seo-summary {
    position: relative;
    overflow: hidden;
}

.product-seo-summary::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(48, 154, 99, 0.04);
    pointer-events: none;
}

.product-seo-summary .product-tab-pane {
    position: relative;
    z-index: 2;
}

.product-seo-summary .product-tab-pane p {
    color: #5f7167;
    font-size: 15px;
    line-height: 1.9;
}

.product-seo-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
    margin-top: 20px;
}

.product-seo-points dl {
    min-width: 0;
    margin: 0;
    padding: 16px;
    border: 1px solid #d8e8df;
    border-radius: 11px;
    background: #f6fbf8;
}

.product-seo-points dl dt {
    margin-bottom: 6px;
    color: #66756d;
    font-size: 14px;
    line-height: 22px;
}

.product-seo-points dl dd {
    margin: 0;
    color: #17251e;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    word-break: break-word;
}

.product-support-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.product-support-primary,
.product-support-secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    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;
}

.product-support-primary {
    border: 1px solid #309a63;
    background: linear-gradient(
        135deg,
        #23784c 0%,
        #309a63 100%
    );
    color: #ffffff !important;
    box-shadow: 0 9px 20px rgba(48, 154, 99, 0.18);
}

.product-support-primary:hover {
    border-color: #185d3a;
    background: #185d3a;
    color: #ffffff;
    transform: translateY(-2px);
}

.product-support-secondary {
    border: 1px solid #cfe1d7;
    background: #ffffff;
    color: #309a63;
}

.product-support-secondary:hover {
    border-color: #309a63;
    background: #eef8f2;
    color: #23784c;
    transform: translateY(-2px);
}


/* =========================================================
   Sidebar Cards
========================================================= */

.products-detail-price-list,
.products-detail-right-rfq {
    width: 100%;
    padding: 22px;
    border: 1px solid #d8e8df;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(48, 154, 99, 0.10);
}

.products-detail-price-list {
    margin-top: 18px;
}

.product-sidebar-heading {
    margin-bottom: 17px;
}

.product-sidebar-heading > span {
    display: block;
    margin-bottom: 5px;
    color: #309a63;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.product-sidebar-heading h2 {
    margin: 0;
    color: #17251e;
    font-size: 1.2rem;
    line-height: 29px;
    font-weight: 800;
}

.product-sidebar-heading p {
    margin: 8px 0 0;
    color: #718379;
    font-size: 14px;
    line-height: 23px;
}

.product-sidebar-stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
    padding: 14px;
    border: 1px solid rgba(48, 154, 99, 0.20);
    border-radius: 11px;
    background: #eef8f2;
}

.product-sidebar-stock span {
    color: #5d6f65;
    font-size: 14px;
    line-height: 22px;
}

.product-sidebar-stock strong {
    color: #309a63;
    font-size: 20px;
    line-height: 27px;
    font-weight: 800;
}

.product-price-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid #d8e8df;
    border-radius: 11px;
}

.products-detail-price-list table {
    width: 100%;
    border-collapse: collapse;
}

.products-detail-price-list table td {
    padding: 11px 8px;
    border-bottom: 1px solid #e5eee9;
    color: #5d6f65;
    font-size: 14px;
    line-height: 22px;
}

.products-detail-price-list table tr:last-child td {
    border-bottom: none;
}

.products-detail-price-list table tr:first-child td {
    background: #f3faf6;
    color: #17251e;
    font-weight: 700;
}

.products-detail-price-list dl {
    margin: 14px 0 0;
}

.products-detail-price-list dl dd {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.products-detail-price-list .gs-pricea1,
.products-detail-price-list .gs-pricea2 {
    width: 100%;
    min-width: 0;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    line-height: 43px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.products-detail-price-list .gs-pricea1 {
    border: 1px solid #309a63;
    background: #309a63;
    color: #ffffff;
}

.products-detail-price-list .gs-pricea2 {
    border: 1px solid #cfe1d7;
    background: #ffffff;
    color: #309a63;
}

.products-detail-price-list .gs-pricea1:hover {
    border-color: #185d3a;
    background: #185d3a;
    color: #ffffff;
    transform: translateY(-2px);
}

.products-detail-price-list .gs-pricea2:hover {
    border-color: #309a63;
    background: #eef8f2;
    color: #23784c;
    transform: translateY(-2px);
}

.product-sidebar-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 11px 12px;
    border-radius: 9px;
    background: #eef8f2;
    color: #476653;
    font-size: 14px;
    line-height: 22px;
}

.product-sidebar-note i {
    flex-shrink: 0;
    margin-top: 3px;
    color: #309a63;
    font-size: 15px;
}


/* =========================================================
   Sell Inventory Form
========================================================= */

.products-detail-right-rfq-fed dl {
    width: 100%;
    display: block !important;
    margin: 0 0 12px;
}

.products-detail-right-rfq-fed dl dt {
    width: 100%;
    margin-bottom: 6px;
    color: #5d6f65;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}

.products-detail-right-rfq-fed dl dd {
    width: 100%;
    margin: 0;
}

.products-detail-right-rfq-fed .red {
    margin-left: 3px;
    color: #d92d20;
}

.products-detail-right-rfq-fed input,
.products-detail-right-rfq-fed textarea {
    width: 100%;
    border: 1px solid #d3e4da;
    border-radius: 9px;
    outline: none;
    background: #f8fbf9;
    color: #17251e;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.products-detail-right-rfq-fed input {
    height: 42px;
    padding: 0 12px;
    line-height: 42px;
}

.products-detail-right-rfq-fed textarea {
    height: 100px;
    padding: 10px 12px;
    line-height: 23px;
    resize: vertical;
}

.products-detail-right-rfq-fed input::placeholder,
.products-detail-right-rfq-fed textarea::placeholder {
    color: #98a59e;
}

.products-detail-right-rfq-fed input[readonly] {
    border-color: #d8e8df;
    background: #f1f6f3;
    color: #405249;
    cursor: default;
}

.products-detail-right-rfq-fed input[readonly]:focus {
    border-color: #d8e8df;
    background: #f1f6f3;
    box-shadow: none;
}

.products-detail-right-rfq-fed input:focus,
.products-detail-right-rfq-fed textarea:focus {
    border-color: #309a63;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(48, 154, 99, 0.11);
}

.products-detail-right-rfq-fed input.is-error,
.products-detail-right-rfq-fed textarea.is-error {
    border-color: #d92d20 !important;
    background: #fff8f7 !important;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.09) !important;
}

.products-detail-right-sell {
    position: relative;
    overflow: hidden;
}

.products-detail-right-sell::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #23784c 0%,
        #309a63 62%,
        #65bd8a 100%
    );
}

.products-detail-right-sell .product-sidebar-heading > span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 3px 10px;
    border: 1px solid rgba(48, 154, 99, 0.22);
    border-radius: 999px;
    background: #eef8f2;
}

.products-detail-right-sell .product-sidebar-heading h2 {
    margin-top: 7px;
}

.products-detail-right-sell .product-sidebar-heading p {
    color: #66786e;
}

.rfq-submit {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(
        135deg,
        #23784c 0%,
        #309a63 100%
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(48, 154, 99, 0.18);
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.rfq-submit:hover {
    background: #185d3a;
    box-shadow: 0 11px 24px rgba(35, 120, 76, 0.22);
    transform: translateY(-2px);
}


/* =========================================================
   Comparison Panel
========================================================= */

.contrast {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    border-top: 1px solid #d8e8df;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -12px 36px rgba(48, 154, 99, 0.16);
}

.contrast-nr {
    width: 1360px;
    max-width: 96%;
    margin: 0 auto;
}

.contrast1 {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2ece6;
}

.contrast-bt ul {
    margin: 0;
    padding: 0;
}

.contrast-bt ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #309a63;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
}

.contrast-yc a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e8df;
    border-radius: 8px;
    background: #f6fbf8;
    color: #66756d;
    font-size: 15px;
    text-decoration: none;
}

.contrast-yc a:hover {
    border-color: #309a63;
    background: #309a63;
    color: #ffffff;
}

.contrast-cp {
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 14px 0;
}

.contrast-cp1 {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.contrast-cp1 dl {
    width: 260px;
    flex: 0 0 260px;
    display: flex;
    gap: 11px;
    margin: 0;
    padding: 11px;
    border: 1px solid #d8e8df;
    border-radius: 10px;
    background: #f6fbf8;
}

.contrast-cp1 dl dt {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    padding: 5px;
    border: 1px solid #e2ece6;
    border-radius: 8px;
    background: #ffffff;
}

.contrast-cp1 dl dt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contrast-cp1 dl dd {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.contrast-cp1 dl dd p {
    margin: 0 0 5px;
    overflow: hidden;
    color: #66756d;
    font-size: 14px;
    line-height: 21px;
    text-overflow: ellipsis;
}

.contrast-cp1 dl dd p a {
    color: #17251e;
    text-decoration: none;
}

.contrast-cp1 dl dd p a:hover {
    color: #309a63;
}

.compare-brand {
    color: #66756d;
}

.db-nr2-2 {
    color: #309a63 !important;
}

.contrast-btn {
    width: 155px;
    flex: 0 0 155px;
    text-align: center;
}

.contrast-btn input {
    width: 100%;
    height: 41px;
    border: none;
    border-radius: 9px;
    background: #309a63;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.contrast-btn input:hover {
    background: #185d3a;
}

.contrast-btn p {
    margin: 8px 0 0;
}

.contrast-btn p a {
    color: #66756d;
    font-size: 14px;
}


/* =========================================================
   Loading Overlay
========================================================= */

.product-rfq-loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100003;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(23, 37, 30, 0.56);
    backdrop-filter: blur(4px);
}

.product-rfq-loading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    max-width: calc(100% - 36px);
    padding: 38px 26px 32px;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 22px 60px rgba(23, 37, 30, 0.22);
    transform: translate(-50%, -50%);
}

.product-rfq-loading-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border: 5px solid rgba(48, 154, 99, 0.15);
    border-top-color: #309a63;
    border-radius: 50%;
    animation: productRfqSpin 0.85s linear infinite;
}

.product-rfq-loading-title {
    color: #309a63;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.product-rfq-loading-text {
    margin-top: 8px;
    color: #66756d;
    font-size: 14px;
    line-height: 22px;
}

@keyframes productRfqSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* =========================================================
   RFQ Result Modal
========================================================= */

.product-rfq-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100004;
    display: none;
    width: 100%;
    height: 100%;
}

.product-rfq-modal-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 37, 30, 0.58);
    backdrop-filter: blur(3px);
}

.product-rfq-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    max-width: calc(100% - 32px);
    padding: 36px 30px 28px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(48, 154, 99, 0.28);
    transform: translate(-50%, -50%);
}

.product-rfq-modal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #23784c 0%,
        #54b77d 100%
    );
}

.product-rfq-modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
    border-radius: 16px;
    background: #309a63;
    color: #ffffff;
    font-size: 29px;
    box-shadow: 0 14px 30px rgba(48, 154, 99, 0.24);
}

.product-rfq-modal.success .product-rfq-modal-icon i::before {
    content: "\f00c";
}

.product-rfq-modal.error .product-rfq-modal-icon {
    background: #d92d20;
    box-shadow: 0 14px 30px rgba(217, 45, 32, 0.20);
}

.product-rfq-modal-box h3 {
    margin: 0;
    color: #17251e;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.product-rfq-modal-box p {
    margin: 11px 0 0;
    color: #66756d;
    font-size: 14px;
    line-height: 1.75;
}

.product-rfq-modal-box button {
    min-width: 135px;
    height: 44px;
    margin-top: 23px;
    padding: 0 26px;
    border: none;
    border-radius: 9px;
    background: #309a63;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(48, 154, 99, 0.22);
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.product-rfq-modal-box button:hover {
    background: #185d3a;
    transform: translateY(-2px);
}


/* =========================================================
   Gallery Preview
========================================================= */

.gallery-preview-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    height: 100%;
    background: rgba(23, 37, 30, 0.78);
    backdrop-filter: blur(4px);
}

.gallery-preview-box {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 90%;
    max-height: 88%;
    padding: 22px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 25px 80px rgba(23, 37, 30, 0.30);
    transform: translate(-50%, -50%);
}

.gallery-preview-box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.gallery-preview-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #309a63;
    color: #ffffff;
    font-size: 15px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.gallery-preview-close:hover {
    background: #185d3a;
    transform: rotate(90deg);
}


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

@media (max-width: 768px) {
    .products-all-main {
        padding: 22px 0 44px;
        font-size: 14px;
    }

    .products-detail {
        width: 94%;
        display: block;
    }

    .products-detail-left,
    .products-detail-right {
        width: 100%;
    }

    .products-detail-right {
        position: static;
        max-height: none;
        margin-top: 20px;
        padding-right: 0;
        overflow: visible;
    }

    .products-detail-left-info {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .products-detail-left-info-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .products-detail-left-info-pic {
        width: 100%;
    }

    .gallery-main {
        height: 290px;
        border-radius: 13px;
    }

    .gallery-main img {
        max-width: 88%;
        max-height: 88%;
    }

    .zoom-view,
    .zoom-lens {
        display: none !important;
    }

    .zoom-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        line-height: 38px;
    }

    .thumb-item {
        width: 57px;
        height: 57px;
        flex-basis: 57px;
    }

    .thumb-arrow {
        height: 50px;
        line-height: 48px;
    }

    .product-heading-labels > span,
    .products-detail-left-info-head > span,
    .product-heading-labels > em {
        font-size: 14px;
    }

    .products-detail-left-info h1,
    .products-detail-left-info-head h1 {
        font-size: 1.48rem;
        line-height: 1.4;
    }

    .products-detail-left-info-head p {
        font-size: 14px;
        line-height: 1.75;
    }

    .product-quick-facts {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-quick-fact {
        min-height: 78px;
    }

    .product-quick-fact span,
    .product-quick-fact strong {
        font-size: 14px;
    }

    .product-primary-data dl,
    .products-detail-left-info-list dl {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 11px 12px;
    }

    .product-primary-data dl dt,
    .products-detail-left-info-list dl dt {
        padding-right: 0;
        font-size: 14px;
        line-height: 22px;
    }

    .product-primary-data dl dd,
    .products-detail-left-info-list dl dd {
        font-size: 14px;
        line-height: 23px;
    }

    .product-purchase-panel {
        padding: 14px;
    }

    .product-purchase-title {
        display: block;
    }

    .product-purchase-title > span,
    .product-purchase-title > em {
        font-size: 14px;
    }

    .product-purchase-title > em {
        display: block;
        margin-top: 5px;
    }

    .product-purchase-controls {
        grid-template-columns: 1fr;
    }

    .products-detail-left-info-list #commoditySelectNum,
    .products-detail-left-info-list .btnbuy,
    .products-detail-left-info-list .btnbuy1 {
        width: 100%;
        font-size: 14px;
    }

    .products-detail-left-info-list .btnbuy:hover,
    .products-detail-left-info-list .btnbuy1:hover {
        transform: none;
    }

    .products-detail-left-info-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sub_compare {
        width: 100%;
        min-width: 0;
        font-size: 14px;
    }

    .sub_compare:hover {
        transform: none;
    }

    .products-detail-trust {
        grid-template-columns: 1fr;
        margin-top: 21px;
        padding-top: 20px;
    }

    .products-detail-trust dl dd strong,
    .products-detail-trust dl dd p {
        font-size: 14px;
    }

    .product-gallery-support {
        margin-top: 14px;
        padding: 18px 15px;
        border-radius: 14px;
    }

    .product-gallery-support-head > span,
    .product-gallery-support-head p,
    .product-gallery-support-item strong,
    .product-gallery-support-item span,
    .product-gallery-support-meta span,
    .product-gallery-support-meta strong {
        font-size: 14px;
    }

    .product-gallery-support-head h3 {
        font-size: 18px;
        line-height: 27px;
    }

    .product-gallery-support-meta {
        grid-template-columns: 1fr;
    }

    .product-gallery-support-actions {
        grid-template-columns: 1fr;
    }

    .product-gallery-support-primary,
    .product-gallery-support-secondary {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    .product-gallery-support-primary:hover,
    .product-gallery-support-secondary:hover {
        transform: none;
    }

    .products-spec,
    .products-container,
    .user-guide-wrap,
    .products-detail-price-list,
    .products-detail-right-rfq {
        padding: 21px 15px;
        border-radius: 15px;
    }

    .product-section-heading > span,
    .product-sidebar-heading > span {
        font-size: 14px;
    }

    .product-section-heading h2,
    .products-spec h2,
    .user-guide-wrap > h2,
    .products-container > h2 {
        font-size: 1.2rem;
        line-height: 30px;
    }

    .product-tab-pane {
        font-size: 14px;
        line-height: 1.85;
    }

    .product-tab-pane li,
    .product-tab-pane table th,
    .product-tab-pane table td {
        font-size: 14px;
    }

    .products-spec-tab {
        top: 76px;
        margin-bottom: 18px;
        padding: 5px;
        border-radius: 10px;
    }

    .products-spec-tab ul li {
        min-width: auto;
        height: 39px;
        padding: 0 14px;
        font-size: 14px;
        line-height: 37px;
    }

    .products-spec-tab-info {
        scroll-margin-top: 115px;
    }

    .product-tab-spec dl {
        grid-template-columns: 1fr;
    }

    .product-tab-spec dl dt {
        border-right: none;
        border-bottom: 1px solid #e5eee9;
    }

    .product-tab-spec dl dt,
    .product-tab-spec dl dd {
        padding: 11px 12px;
        font-size: 14px;
    }

    .product-faq-item {
        padding: 14px;
    }

    .product-tab-faq h3,
    .product-tab-faq p {
        font-size: 14px;
    }

    .products-lab-saleapro a {
        font-size: 14px;
    }

    .products-lab-retapro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .products-lab-retapro dl:hover {
        transform: none;
    }

    .products-lab-retapro dl dt {
        height: 120px;
        padding: 12px;
    }

    .products-lab-retapro dl dd {
        padding: 11px;
    }

    .products-lab-retapro dl dd > a {
        height: 44px;
        font-size: 14px;
        line-height: 22px;
    }

    .products-lab-retapro dl dd p {
        font-size: 14px;
        line-height: 22px;
    }

    .product-seo-summary .product-tab-pane p {
        font-size: 14px;
    }

    .product-seo-points {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-seo-points dl dt,
    .product-seo-points dl dd {
        font-size: 14px;
    }

    .product-support-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-support-primary,
    .product-support-secondary {
        width: 100%;
        font-size: 14px;
    }

    .product-support-primary:hover,
    .product-support-secondary:hover {
        transform: none;
    }

    .product-sidebar-heading p,
    .product-sidebar-stock span,
    .product-sidebar-note,
    .products-detail-price-list table td,
    .products-detail-price-list .gs-pricea1,
    .products-detail-price-list .gs-pricea2 {
        font-size: 14px;
    }

    .products-detail-right-rfq-fed dl dt,
    .products-detail-right-rfq-fed input,
    .products-detail-right-rfq-fed textarea,
    .rfq-submit {
        font-size: 14px;
    }

    .products-detail-price-list .gs-pricea1:hover,
    .products-detail-price-list .gs-pricea2:hover,
    .rfq-submit:hover {
        transform: none;
    }

    .contrast {
        display: none !important;
    }

    .product-rfq-loading-box {
        width: calc(100% - 32px);
        padding: 32px 20px 28px;
    }

    .product-rfq-loading-text {
        font-size: 14px;
    }

    .product-rfq-modal-box {
        width: calc(100% - 32px);
        padding: 32px 20px 25px;
    }

    .product-rfq-modal-icon {
        width: 66px;
        height: 66px;
        font-size: 27px;
    }

    .product-rfq-modal-box h3 {
        font-size: 20px;
    }

    .product-rfq-modal-box p,
    .product-rfq-modal-box button {
        font-size: 14px;
    }

    .product-rfq-modal-box button {
        width: 100%;
    }

    .gallery-preview-box {
        width: calc(100% - 28px);
        padding: 14px;
        border-radius: 12px;
    }

    .gallery-preview-close {
        top: 7px;
        right: 7px;
    }
}

/* Sell Inventory Submit */
.sell-submit {
    background: linear-gradient(135deg, #23784c 0%, #309a63 100%);
}

.sell-submit i {
    font-size: 15px;
}

.sell-submit:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}
