﻿@charset "utf-8";

/* =========================================================
   EGOO Product Detail
   Brand Color: #e66b2e
========================================================= */

.egoo-product-page,
.egoo-product-page *,
.egoo-product-page *::before,
.egoo-product-page *::after {
    box-sizing: border-box;
}

.egoo-product-page {
    width: 100%;
    padding: 34px 0 76px;
    overflow: visible;
    font-size: 14px;
}

.egoo-product-shell {
    position: relative;
}


/* =========================================================
   Top Product Layout
========================================================= */

.egoo-product-overview {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.egoo-product-media,
.egoo-product-summary,
.egoo-rfq-panel,
.egoo-content-section,
.egoo-resource-section,
.egoo-sourcing-cta {
    border: 1px solid #e7e0db;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(49, 39, 32, .045);
}

.egoo-product-media {
    min-width: 0;
    height: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.egoo-product-summary {
    min-width: 0;
    height: 100%;
    padding: 28px;
}


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

.egoo-product-gallery-card {
    position: relative;
}

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

.gallery-main-wrap {
    overflow: visible;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e8e1dc;
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(230, 107, 46, .035), transparent 46%),
        #faf9f8;
    cursor: zoom-in;
}

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

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

.zoom-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e66b2e;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(230, 107, 46, .18);
}

.zoom-lens {
    position: absolute;
    z-index: 6;
    display: none;
    border: 1px solid rgba(230, 107, 46, .5);
    background: rgba(230, 107, 46, .10);
    pointer-events: none;
}

.zoom-view {
    position: absolute;
    top: 0;
    left: calc(100% + 18px);
    z-index: 100;
    width: 440px;
    height: 390px;
    display: none;
    overflow: hidden;
    border: 1px solid #e7dfda;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(36, 30, 26, .14);
}

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

.gallery-thumbs {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 7px;
    align-items: center;
}

.thumbs-track-wrap {
    width: 100%;
    overflow: hidden;
}

.thumbs-track {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform .25s ease;
}

.thumb-item {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    margin-right: 7px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e7e0db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

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

.thumb-item.active,
.thumb-item:hover {
    border-color: #e66b2e;
    background: #fff8f4;
}

.thumb-arrow {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #e4ddd8;
    border-radius: 50%;
    background: #fff;
    color: #666b70;
    cursor: pointer;
}

.thumb-arrow:hover {
    border-color: #e66b2e;
    color: #e66b2e;
}

.thumb-arrow.disabled {
    opacity: .35;
    cursor: default;
}

.egoo-media-hint {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #9a928c;
    font-size: 14px;
    line-height: 20px;
}

.egoo-media-hint i {
    color: #e66b2e;
}


/* =========================================================
   Product Support Items
========================================================= */

.egoo-product-assurance {
    margin-top: auto;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #eee8e4;
}

.egoo-product-assurance > div {
    min-width: 0;
    padding: 15px 10px 14px;
    display: grid;
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
}

.egoo-product-assurance > div:nth-child(odd) {
    border-right: 1px solid #f0ebe7;
}

.egoo-product-assurance > div:nth-child(n+3) {
    border-top: 1px solid #f0ebe7;
}

.egoo-product-assurance i {
    width: 31px;
    height: 31px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff3ec;
    color: #e66b2e;
    font-size: 14px;
}

.egoo-product-assurance strong,
.egoo-product-assurance em {
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-break: normal;
}

.egoo-product-assurance strong {
    color: #34393f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.egoo-product-assurance em {
    margin-top: 3px;
    color: #99918b;
    font-size: 14px;
    line-height: 21px;
    font-style: normal;
}


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

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

.egoo-product-labels a,
.egoo-product-labels > span {
    min-height: 27px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
}

.egoo-brand-label {
    border: 1px solid #f1d8ca;
    background: #fff5ef;
    color: #e66b2e;
}

.egoo-brand-label:hover {
    border-color: #e66b2e;
    background: #e66b2e;
    color: #fff;
}

.egoo-product-labels > span {
    border: 1px solid #e7e2de;
    background: #f8f7f6;
    color: #74797e;
}

.egoo-product-heading h1 {
    margin: 12px 0 0;
    color: #20252b;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    word-break: break-word;
}

.egoo-product-heading > p {
    max-width: 820px;
    margin: 10px 0 0;
    color: #73787d;
    font-size: 14px;
    line-height: 24px;
}


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

.egoo-product-facts {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #ebe5e1;
    border-radius: 11px;
    overflow: hidden;
    background: #faf8f6;
}

.egoo-product-fact-card {
    min-width: 0;
    min-height: 92px;
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #faf8f6;
}

.egoo-product-fact-card + .egoo-product-fact-card {
    border-left: 1px solid #ebe5e1;
}

.egoo-product-fact-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.egoo-product-fact-head > i {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #fff1e9;
    color: #e66b2e;
    font-size: 14px;
}

.egoo-product-fact-head > img {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: block;
    object-fit: contain;
}

.egoo-product-fact-head > span {
    color: #8f8781;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.egoo-product-fact-card > strong {
    margin-top: 9px;
    display: block;
    overflow: visible;
    color: #30353b;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    white-space: normal;
    word-break: normal;
}

.egoo-product-fact-stock > strong {
    color: #e66b2e;
    font-size: 16px;
}

.egoo-product-fact-rohs {
    background: #f7fbf8;
}

.egoo-product-fact-rohs .egoo-product-fact-head > span {
    color: #64806d;
}

.egoo-product-fact-rohs > strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #27834a;
}

.egoo-product-fact-rohs > strong i {
    color: #27a354;
}


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

.egoo-product-data {
    margin-top: 18px;
    border-top: 1px solid #eee8e4;
}

.egoo-product-data dl {
    margin: 0;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    border-bottom: 1px solid #f0ebe8;
}

.egoo-product-data dt {
    color: #8a8e92;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}

.egoo-product-data dd {
    min-width: 0;
    margin: 0;
    color: #34393f;
    font-size: 14px;
    line-height: 21px;
    word-break: break-word;
}

.egoo-product-data a {
    color: #e66b2e;
    text-decoration: none;
}

.egoo-product-data a:hover {
    color: #c95722;
}

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

.egoo-datasheet-link i {
    color: #d94235;
}


/* =========================================================
   Tier Pricing
========================================================= */

.egoo-tier-pricing-section {
    margin-top: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    border: 1px solid #e7e0db;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(49, 39, 32, .045);
}

.egoo-tier-pricing-copy {
    padding: 5px 4px 5px 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.egoo-tier-pricing-copy > span {
    display: block;
    margin-bottom: 5px;
    color: #e66b2e;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .9px;
}

.egoo-tier-pricing-copy h2 {
    margin: 0;
    color: #292e34;
    font-size: 21px;
    line-height: 29px;
    font-weight: 600;
}

.egoo-tier-pricing-copy > p {
    margin: 8px 0 0;
    color: #7f8388;
    font-size: 14px;
    line-height: 20px;
}

.egoo-tier-pricing-note {
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #99918b;
    font-size: 14px;
    line-height: 20px;
}

.egoo-tier-pricing-note i {
    margin-top: 3px;
    color: #e66b2e;
}

.egoo-tier-pricing-table-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
}

.egoo-price-table {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #eadfd8;
    border-radius: 9px;
    background: #fff;
}

.egoo-price-table table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.egoo-price-table td,
.egoo-price-table th {
    height: 38px;
    padding: 7px 12px;
    border-right: 1px solid #eee7e2;
    border-bottom: 1px solid #eee7e2;
    color: #62676c;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.egoo-price-table tr:first-child td,
.egoo-price-table tr:first-child th {
    background: #f6f2ef;
    color: #363b41;
    font-weight: 600;
}

.egoo-price-table tr:last-child td {
    border-bottom: 0;
}

.egoo-price-table td:last-child,
.egoo-price-table th:last-child {
    border-right: 0;
}

.egoo-price-table span,
.egoo-price-table b,
.egoo-price-table strong {
    color: #e66b2e;
}


/* =========================================================
   Quick RFQ Actions
========================================================= */

.egoo-quote-box {
    margin-top: 16px;
    padding: 18px;
    border-radius: 11px;
    background:
        linear-gradient(135deg, rgba(230,107,46,.06), transparent 42%),
        #292d32;
    color: #fff;
}

.egoo-quote-box-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 20px;
    align-items: end;
}

.egoo-quote-box-head span {
    display: block;
    margin-bottom: 2px;
    color: #e66b2e;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .8px;
}

.egoo-quote-box-head h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

.egoo-quote-box-head p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 21px;
    text-align: right;
}

.egoo-quote-status {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,.045);
}

.egoo-quote-status > div {
    min-width: 0;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.egoo-quote-status > div + div {
    border-left: 1px solid rgba(255,255,255,.09);
}

.egoo-quote-status > div > i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(230,107,46,.14);
    color: #e66b2e;
    font-size: 14px;
}

.egoo-quote-status span,
.egoo-quote-status em,
.egoo-quote-status strong {
    min-width: 0;
    display: block;
}

.egoo-quote-status em {
    color: rgba(255,255,255,.46);
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
}

.egoo-quote-status strong {
    margin-top: 1px;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.egoo-quote-actions {
    margin-top: 11px;
    display: grid;
    grid-template-columns: 130px minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 9px;
    align-items: end;
}

.egoo-quote-quantity {
    min-width: 0;
}

.egoo-quote-actions label > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 20px;
}

.egoo-quote-actions input {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: #2c3137;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
}

.egoo-quote-actions input:focus {
    border-color: #e66b2e;
    box-shadow: 0 0 0 3px rgba(230,107,46,.12);
}

.egoo-action-primary,
.egoo-action-secondary {
    min-height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 42px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.egoo-action-primary {
    border: 1px solid #e66b2e;
    background: #e66b2e;
    color: #fff;
}

.egoo-action-primary:hover {
    border-color: #c95722;
    background: #c95722;
    color: #fff;
}

.egoo-action-secondary {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.egoo-action-secondary:hover {
    border-color: #e66b2e;
    background: rgba(230,107,46,.15);
    color: #fff;
}

.egoo-product-tools {
    margin-top: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.egoo-tool-link {
    min-height: 37px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e4ddd8;
    border-radius: 7px;
    background: #fff;
    color: #6d7277;
    font-size: 14px;
    line-height: 35px;
    text-decoration: none;
}

.egoo-tool-link:hover {
    border-color: #e66b2e;
    color: #e66b2e;
}


/* =========================================================
   Direct RFQ Panel
========================================================= */

.egoo-rfq-panel {
    margin-top: 22px;
    padding: 0;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    overflow: hidden;
}

.egoo-rfq-intro {
    padding: 28px;
    background: #25292e;
}

.egoo-rfq-intro > span {
    display: block;
    margin-bottom: 5px;
    color: #e66b2e;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .9px;
}

.egoo-rfq-intro h2 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    line-height: 31px;
    font-weight: 600;
}

.egoo-rfq-intro > p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.54);
    font-size: 14px;
    line-height: 21px;
}

.egoo-rfq-intro-points {
    margin-top: 20px;
}

.egoo-rfq-intro-points > div {
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 20px;
}

.egoo-rfq-intro-points i {
    color: #e66b2e;
}

.egoo-rfq-form-wrap {
    padding: 28px 26px;
}

.egoo-rfq-form {
    width: 100%;
}

.egoo-rfq-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 14px;
}

.egoo-rfq-fields label {
    min-width: 0;
}

.egoo-rfq-fields label > span {
    display: block;
    margin-bottom: 5px;
    color: #656a70;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.egoo-rfq-fields label > span em {
    color: #e66b2e;
    font-style: normal;
}

.egoo-rfq-fields input,
.egoo-rfq-fields textarea {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd7d2;
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: #34393f;
    font-size: 14px;
}

.egoo-rfq-fields textarea {
    height: 96px;
    min-height: 96px;
    padding: 10px 12px;
    line-height: 22px;
    resize: vertical;
}

.egoo-rfq-fields input:focus,
.egoo-rfq-fields textarea:focus,
.egoo-rfq-fields input.is-error,
.egoo-rfq-fields textarea.is-error {
    border-color: #e66b2e;
    box-shadow: 0 0 0 3px rgba(230,107,46,.09);
}

.egoo-rfq-field-wide {
    grid-column: 1 / -1;
}

.egoo-rfq-submit-row {
    margin-top: 18px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #eee8e4;
}

.egoo-rfq-submit-row p {
    margin: 0;
    color: #99918b;
    font-size: 14px;
    line-height: 20px;
}

.egoo-rfq-submit-row p i {
    margin-right: 4px;
    color: #e66b2e;
}

.egoo-rfq-submit {
    min-width: 150px;
    height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid #e66b2e;
    border-radius: 7px;
    background: #e66b2e;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
    cursor: pointer;
}

.egoo-rfq-submit:hover {
    border-color: #c95722;
    background: #c95722;
}


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

.egoo-content-section,
.egoo-resource-section,
.egoo-sourcing-cta {
    margin-top: 22px;
    padding: 27px;
}

.egoo-section-heading {
    margin-bottom: 21px;
}

.egoo-section-heading > span,
.egoo-card-heading > span,
.egoo-sourcing-cta > div:first-child > span {
    display: block;
    margin-bottom: 4px;
    color: #e66b2e;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .9px;
}

.egoo-section-heading h2,
.egoo-sourcing-cta h2 {
    margin: 0;
    color: #252a30;
    font-size: 25px;
    line-height: 34px;
    font-weight: 600;
}

.egoo-section-heading p,
.egoo-sourcing-cta > div:first-child > p {
    max-width: 840px;
    margin: 6px 0 0;
    color: #81858a;
    font-size: 14px;
    line-height: 21px;
}

.egoo-editor-content {
    color: #555b61;
    font-size: 14px;
    line-height: 1.85;
}

.egoo-editor-content h2,
.egoo-editor-content h3,
.egoo-editor-content h4 {
    margin: 24px 0 9px;
    color: #292e34;
    font-weight: 600;
}

.egoo-editor-content h2 {
    font-size: 22px;
    line-height: 31px;
}

.egoo-editor-content h3 {
    font-size: 18px;
    line-height: 27px;
}

.egoo-editor-content p {
    margin: 10px 0;
}

.egoo-editor-content ul,
.egoo-editor-content ol {
    margin: 10px 0;
    padding-left: 22px;
}

.egoo-editor-content img {
    max-width: 100%;
    height: auto;
}

.egoo-editor-content table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

.egoo-editor-content table td,
.egoo-editor-content table th {
    padding: 9px 11px;
    border: 1px solid #e8e1dc;
}


/* =========================================================
   Left Floating Resource Navigation
========================================================= */

.egoo-resource-layout {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.egoo-resource-nav {
    position: sticky;
    top: 96px;
    z-index: 18;
    align-self: start;
}

.egoo-resource-nav ul {
    margin: 0;
    padding: 7px;
    border: 1px solid #e5ded9;
    border-radius: 10px;
    background: #f8f6f4;
    list-style: none;
}

.egoo-resource-nav li {
    min-height: 42px;
    padding: 8px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 7px;
    color: #73787d;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.egoo-resource-nav li + li {
    margin-top: 3px;
}

.egoo-resource-nav li i {
    width: 20px;
    color: #aaa19b;
    text-align: center;
}

.egoo-resource-nav li:hover {
    background: #fff;
    color: #e66b2e;
}

.egoo-resource-nav li.active {
    background: #e66b2e;
    color: #fff;
}

.egoo-resource-nav li.active i {
    color: #fff;
}

.egoo-resource-stack {
    min-width: 0;
    display: grid;
    gap: 16px;
}

.egoo-resource-card {
    scroll-margin-top: 92px;
    padding: 22px;
    border: 1px solid #e9e2dd;
    border-radius: 11px;
    background: #fff;
}

.egoo-card-heading {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee8e4;
}

.egoo-card-heading h3 {
    margin: 0;
    color: #2d3238;
    font-size: 19px;
    line-height: 27px;
    font-weight: 600;
}


/* =========================================================
   Specifications
========================================================= */

.egoo-spec-table {
    border: 1px solid #e8e1dc;
    border-radius: 9px;
    overflow: hidden;
}

.egoo-spec-table dl {
    margin: 0;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    border-bottom: 1px solid #eee8e4;
}

.egoo-spec-table dl:last-child {
    border-bottom: 0;
}

.egoo-spec-table dl:nth-child(even) {
    background: #faf9f8;
}

.egoo-spec-table dt,
.egoo-spec-table dd {
    margin: 0;
    padding: 10px 13px;
    color: #555b61;
    font-size: 14px;
    line-height: 20px;
}

.egoo-spec-table dt {
    border-right: 1px solid #eee8e4;
    color: #70757a;
    font-weight: 500;
}

.egoo-spec-table dd {
    color: #31363c;
}

.egoo-spec-header {
    background: #2d3136 !important;
}

.egoo-spec-header dt,
.egoo-spec-header dd {
    border-color: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 600;
}


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

.egoo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.egoo-faq-item {
    min-width: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 11px;
    border: 1px solid #ebe4df;
    border-radius: 9px;
    background: #faf9f8;
}

.egoo-faq-item > span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #fff1e9;
    color: #e66b2e;
    font-size: 14px;
    line-height: 30px;
    font-weight: 600;
}

.egoo-faq-item h3 {
    margin: 1px 0 5px;
    color: #33383e;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
}

.egoo-faq-item p {
    margin: 0;
    color: #7a7e83;
    font-size: 14px;
    line-height: 20px;
}


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

.egoo-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.egoo-related-grid article {
    min-width: 0;
    padding: 12px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid #ebe4df;
    border-radius: 9px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease;
}

.egoo-related-grid article:hover {
    border-color: #f0b18f;
    transform: translateY(-2px);
}

.egoo-related-image {
    width: 70px;
    height: 70px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
    background: #f8f6f4;
}

.egoo-related-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.egoo-related-name {
    height: 40px;
    display: -webkit-box;
    overflow: hidden;
    color: #34393f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.egoo-related-name:hover {
    color: #e66b2e;
}

.egoo-related-grid p {
    margin: 4px 0 0;
    overflow: hidden;
    color: #99918b;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   Popular Parts
========================================================= */

.egoo-popular-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.egoo-popular-list a {
    min-width: 0;
    min-height: 38px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #ebe4df;
    border-radius: 7px;
    background: #faf9f8;
    color: #555a60;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.egoo-popular-list a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.egoo-popular-list a i {
    flex: 0 0 auto;
    color: #e66b2e;
}

.egoo-popular-list a:hover {
    border-color: #e66b2e;
    background: #fff5ef;
    color: #e66b2e;
}


/* =========================================================
   Bottom Sourcing CTA
========================================================= */

.egoo-sourcing-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    background:
        linear-gradient(120deg, rgba(230,107,46,.055), transparent 44%),
        #fff;
}

.egoo-cta-facts {
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #eee7e2;
    border-left: 1px solid #eee7e2;
}

.egoo-cta-facts dl {
    margin: 0;
    padding: 10px 12px;
    border-right: 1px solid #eee7e2;
    border-bottom: 1px solid #eee7e2;
}

.egoo-cta-facts dt {
    color: #99918b;
    font-size: 14px;
    line-height: 20px;
}

.egoo-cta-facts dd {
    margin: 3px 0 0;
    overflow: hidden;
    color: #34393f;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.egoo-cta-actions {
    min-width: 190px;
}

.egoo-cta-primary,
.egoo-cta-secondary {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 7px;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
    text-decoration: none;
}

.egoo-cta-primary {
    border: 1px solid #e66b2e;
    background: #e66b2e;
    color: #fff;
}

.egoo-cta-primary:hover {
    background: #c95722;
    border-color: #c95722;
    color: #fff;
}

.egoo-cta-secondary {
    margin-top: 8px;
    border: 1px solid #e0d8d3;
    background: #fff;
    color: #5f646a;
}

.egoo-cta-secondary:hover {
    border-color: #e66b2e;
    color: #e66b2e;
}


/* =========================================================
   RFQ Loading
========================================================= */

.egoo-rfq-loading,
.egoo-rfq-modal {
    position: fixed;
    inset: 0;
    z-index: 100050;
    display: none;
}

.egoo-rfq-loading {
    background: rgba(31, 27, 24, .48);
}

.egoo-rfq-loading-box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    padding: 28px 22px;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.egoo-rfq-loading-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border: 3px solid #f1e6df;
    border-top-color: #e66b2e;
    border-radius: 50%;
    animation: egooRfqSpin .8s linear infinite;
}

@keyframes egooRfqSpin {
    to {
        transform: rotate(360deg);
    }
}

.egoo-rfq-loading-title {
    color: #2f343a;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.egoo-rfq-loading-text {
    margin-top: 5px;
    color: #8c9095;
    font-size: 14px;
    line-height: 20px;
}


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

.egoo-rfq-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(31, 27, 24, .48);
}

.egoo-rfq-modal-box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 360px;
    max-width: calc(100% - 30px);
    padding: 28px 24px 24px;
    transform: translate(-50%, -50%);
    border-radius: 13px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 54px rgba(0,0,0,.18);
}

.egoo-rfq-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1e9;
    color: #e66b2e;
    font-size: 21px;
}

.egoo-rfq-modal.success .egoo-rfq-modal-icon {
    background: #edf8f1;
    color: #25a25a;
}

.egoo-rfq-modal-box h3 {
    margin: 0;
    color: #292e34;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.egoo-rfq-modal-box p {
    margin: 8px 0 0;
    color: #7b7f84;
    font-size: 14px;
    line-height: 20px;
}

#productRfqModalClose {
    min-width: 100px;
    height: 38px;
    margin-top: 18px;
    border: 1px solid #e66b2e;
    border-radius: 7px;
    background: #e66b2e;
    color: #fff;
    cursor: pointer;
}


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

.egoo-gallery-preview-mask {
    position: fixed;
    inset: 0;
    z-index: 100080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(20, 18, 17, .78);
}

.egoo-gallery-preview-box {
    position: relative;
    width: 900px;
    max-width: 94vw;
    height: 720px;
    max-height: 88vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
}

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

.egoo-gallery-preview-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e66b2e;
    color: #fff;
    cursor: pointer;
}


/* =========================================================
   Comparison Drawer
   Legacy structure classes stay in HTML for existing JS.
========================================================= */

.egoo-compare-drawer {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 10000;
    width: 1040px;
    max-width: calc(100% - 24px);
    transform: translateX(-50%);
    border: 1px solid #ded7d2;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background: #fff;
    box-shadow: 0 -12px 36px rgba(49,39,32,.10);
}

.egoo-compare-drawer-head {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee8e4;
    background: #292d32;
}

.egoo-compare-drawer-head ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.egoo-compare-drawer-head a {
    color: #fff;
    text-decoration: none;
}

.egoo-compare-drawer-head i {
    margin-right: 6px;
    color: #e66b2e;
}

.egoo-compare-drawer-body {
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 12px;
}

#product-compare-list-div {
    min-width: 0;
    display: flex;
    gap: 9px;
    overflow-x: auto;
}

#product-compare-list-div dl {
    width: 225px;
    flex: 0 0 225px;
    margin: 0;
    padding: 9px;
    display: grid;
    grid-template-columns: 54px minmax(0,1fr);
    gap: 8px;
    border: 1px solid #ebe4df;
    border-radius: 7px;
    background: #faf9f8;
}

#product-compare-list-div dt {
    width: 54px;
    height: 54px;
}

#product-compare-list-div dt img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#product-compare-list-div dd {
    min-width: 0;
    margin: 0;
}

#product-compare-list-div p {
    margin: 0 0 3px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#product-compare-list-div a {
    color: #555a60;
    text-decoration: none;
}

#product-compare-list-div .db-nr2-2 {
    color: #e66b2e;
}

.egoo-compare-drawer-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.egoo-compare-drawer-actions input {
    height: 42px;
    border: 1px solid #e66b2e;
    border-radius: 7px;
    background: #e66b2e;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.egoo-compare-drawer-actions p {
    margin: 6px 0 0;
    text-align: center;
}

.egoo-compare-drawer-actions a {
    color: #85898e;
    font-size: 14px;
    text-decoration: none;
}


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

@media screen and (max-width: 767px) {

    .egoo-product-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .egoo-product-fact-card + .egoo-product-fact-card {
        border-left: 0;
    }

    .egoo-product-fact-card:nth-child(even) {
        border-left: 1px solid #ebe5e1;
    }

    .egoo-product-fact-card:nth-child(n+3) {
        border-top: 1px solid #ebe5e1;
    }

    .egoo-quote-box-head {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .egoo-quote-box-head p {
        text-align: left;
    }

    .egoo-quote-status {
        grid-template-columns: 1fr;
    }

    .egoo-quote-status > div + div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.09);
    }

    .egoo-quote-status strong {
        white-space: normal;
    }

    .egoo-quote-actions {
        grid-template-columns: 95px minmax(0, 1fr);
    }

    .egoo-action-secondary {
        grid-column: 1 / -1;
    }


    .egoo-product-page {
        padding: 18px 0 46px;
    }

    .egoo-product-overview {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .egoo-product-media,
    .egoo-product-summary {
        padding: 15px;
        border-radius: 11px;
    }

    .gallery-main {
        height: 300px;
    }

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

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

    .egoo-product-assurance {
        grid-template-columns: 1fr;
    }

    .egoo-product-assurance > div,
    .egoo-product-assurance > div:nth-child(odd),
    .egoo-product-assurance > div:nth-child(n+3) {
        border-right: 0;
        border-top: 1px solid #f0ebe7;
    }

    .egoo-product-heading h1 {
        font-size: 25px;
        line-height: 33px;
    }

    .egoo-product-facts {
        grid-template-columns: 1fr;
    }

    .egoo-product-facts > div + div {
        border-left: 0;
        border-top: 1px solid #ebe5e1;
    }

    .egoo-product-data dl {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .egoo-tier-pricing-section {
        margin-top: 14px;
        padding: 16px 14px;
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 11px;
    }

    .egoo-tier-pricing-copy h2 {
        font-size: 19px;
        line-height: 27px;
    }

    .egoo-tier-pricing-table-wrap {
        display: block;
    }

    .egoo-price-table table {
        min-width: 460px;
    }

    .egoo-quote-box-head {
        display: block;
    }

    .egoo-quote-box-head p {
        margin-top: 5px;
        text-align: left;
    }

    .egoo-quote-actions {
        grid-template-columns: 78px minmax(0,1fr);
    }

    .egoo-action-secondary {
        grid-column: 1 / -1;
    }

    .egoo-rfq-panel {
        grid-template-columns: 1fr;
        border-radius: 11px;
    }

    .egoo-rfq-intro {
        padding: 21px 17px;
    }

    .egoo-rfq-form-wrap {
        padding: 18px 14px;
    }

    .egoo-rfq-fields {
        grid-template-columns: 1fr;
    }

    .egoo-rfq-field-wide {
        grid-column: auto;
    }

    .egoo-rfq-submit-row {
        display: block;
    }

    .egoo-rfq-submit-row p {
        margin-bottom: 11px;
    }

    .egoo-rfq-submit {
        width: 100%;
    }

    .egoo-content-section,
    .egoo-resource-section,
    .egoo-sourcing-cta {
        margin-top: 14px;
        padding: 18px 14px;
        border-radius: 11px;
    }

    .egoo-section-heading h2,
    .egoo-sourcing-cta h2 {
        font-size: 21px;
        line-height: 29px;
    }

    .egoo-resource-layout {
        display: block;
    }

    .egoo-resource-nav {
        position: sticky;
        top: 64px;
        z-index: 30;
        margin-bottom: 12px;
        overflow-x: auto;
        background: #fff;
    }

    .egoo-resource-nav ul {
        width: max-content;
        min-width: 100%;
        display: flex;
        gap: 4px;
        padding: 5px;
        border-radius: 8px;
    }

    .egoo-resource-nav li {
        min-width: 122px;
        min-height: 38px;
        margin: 0 !important;
        justify-content: center;
    }

    .egoo-resource-nav li i {
        width: auto;
    }

    .egoo-resource-card {
        padding: 15px;
        scroll-margin-top: 118px;
    }

    .egoo-spec-table dl {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .egoo-spec-table dt,
    .egoo-spec-table dd {
        padding: 9px 10px;
    }

    .egoo-faq-grid {
        grid-template-columns: 1fr;
    }

    .egoo-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .egoo-related-grid article {
        display: block;
    }

    .egoo-related-image {
        width: 100%;
        height: 110px;
        margin-bottom: 8px;
    }

    .egoo-popular-list {
        grid-template-columns: 1fr;
    }

    .egoo-sourcing-cta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .egoo-cta-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .egoo-cta-actions {
        min-width: 0;
    }

    .egoo-gallery-preview-mask {
        padding: 12px;
    }

    .egoo-gallery-preview-box {
        width: 100%;
        height: 75vh;
        padding: 14px;
    }

    .egoo-compare-drawer {
        max-width: calc(100% - 12px);
    }

    .egoo-compare-drawer-body {
        grid-template-columns: 1fr;
    }

    .egoo-compare-drawer-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .egoo-compare-drawer-actions p {
        margin: 0;
    }
}

/* Comparison list typography */
#product-compare-list-div .db-nr2-1,
#product-compare-list-div .db-nr2-2,
#product-compare-list-div .compare-brand,
.egoo-compare-drawer-head,
.egoo-compare-drawer-actions,
.egoo-compare-drawer-actions input,
.egoo-compare-drawer-actions a {
    font-size: 14px;
    line-height: 20px;
}

#product-compare-list-div .db-nr2-1 {
    display: block;
    overflow: hidden;
    color: #34393f;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#product-compare-list-div .compare-brand {
    color: #777c81;
}

#product-compare-list-div .db-nr2-2 {
    color: #e66b2e;
}

#product-compare-list-div dl.compare-item-highlight {
    border-color: #e66b2e;
    background: #fff5ef;
    box-shadow: 0 0 0 3px rgba(230,107,46,.08);
}



