.product-details-data-sheet a {
    margin-right: 6px;
}

.sku-properties-box {
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #fafafa;
}

.sku-properties-line {
    padding: 5px 0;
    margin: 5px 0;
}

.sku-property-box-normal {
    color: #1f2937;
    border: 1px solid #d1d5db;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s;
}

.sku-property-box-normal:hover {
    border-color: #6b7280;
}

.sku-property-box-active {
    color: #dc2626;
    border: 1px solid #dc2626;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #fef2f2;
    cursor: pointer;
    font-weight: 500;
}

.sku-property-box-disable {
    color: #9ca3af;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Dark mode */
html.dark .sku-properties-box {
    border-color: #374151;
    background-color: #111827;
}

html.dark .sku-property-box-normal {
    color: #e5e7eb;
    border-color: #4b5563;
    background-color: #1f2937;
}

html.dark .sku-property-box-normal:hover {
    border-color: #9ca3af;
}

html.dark .sku-property-box-active {
    color: #fca5a5;
    border-color: #ef4444;
    background-color: #1f2937;
}

html.dark .sku-property-box-disable {
    color: #4b5563;
    background-color: #111827;
    border-color: #374151;
}

.buy-qty {
    border: 0.01em solid #bbc3c6;
    padding: 0 0.02em;
    font-size: x-small;
    color: #303030;
    width: 8em;
    text-align: center;
    margin-left: 1.2em;
    border-radius: 2px;

}

.properties-link span {
    /*display: block;*/
    white-space: nowrap;
}

.button-disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.free-shipping-label {
    background-color: #ff0000;
    font-size: smaller;
    color: #ffffff;
    margin: 0 0 0 4px;
    padding: 3px 8px;
    border-radius: 3px;
}

.product-wishlist-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 9.5rem;
    min-height: 2.875rem;
    padding: 0.7rem 1rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    color: #44403c;
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.product-wishlist-button:hover {
    border-color: var(--color-secondary, #dc2626);
    color: var(--color-secondary, #dc2626);
    background: color-mix(in srgb, var(--color-secondary, #dc2626) 5%, white);
}

.product-wishlist-button:active { transform: translateY(1px); }
.product-wishlist-button:focus-visible { outline: 2px solid var(--color-secondary, #dc2626); outline-offset: 2px; }
.product-wishlist-button.is-added { border-color: #86efac; color: #15803d; background: #f0fdf4; }
.product-wishlist-button.is-error { border-color: #fca5a5; color: #b91c1c; background: #fef2f2; }
.product-wishlist-button:disabled { cursor: wait; opacity: 0.72; }

html.dark .product-wishlist-button {
    border-color: #57534e;
    color: #e7e5e4;
    background: #292524;
}

html.dark .product-wishlist-button:hover {
    border-color: #f87171;
    color: #fca5a5;
    background: rgba(248, 113, 113, 0.08);
}

html.dark .product-wishlist-button.is-added { border-color: #166534; color: #86efac; background: rgba(22, 101, 52, 0.18); }
html.dark .product-wishlist-button.is-error { border-color: #991b1b; color: #fca5a5; background: rgba(153, 27, 27, 0.16); }

dialog.wishlist-login-dialog {
    width: min(92vw, 27rem);
    max-width: 27rem;
    padding: 2.25rem;
    overflow: visible;
    border: 1px solid #e7e5e4;
    border-radius: 1.25rem;
    color: #1c1917;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
}

dialog.wishlist-login-dialog::backdrop { background: rgba(15, 23, 42, 0.68); backdrop-filter: blur(3px); }
dialog.wishlist-login-dialog .dialog-close { top: 0.7rem; right: 0.7rem; display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; padding: 0; }
dialog.wishlist-login-dialog .dialog-close svg { width: 1rem; height: 1rem; }

.wishlist-login-dialog__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    color: var(--color-secondary, #dc2626);
    background: color-mix(in srgb, var(--color-secondary, #dc2626) 9%, white);
}

.wishlist-login-dialog__icon svg { width: 1.5rem; height: 1.5rem; }
dialog.wishlist-login-dialog h2 { margin: 0; padding: 0; color: #1c1917; font-size: 1.25rem; font-weight: 750; }
dialog.wishlist-login-dialog p { margin: 0.75rem 0 1.75rem; color: #78716c; font-size: 0.9rem; line-height: 1.65; }
.wishlist-login-dialog__actions { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0.75rem; }
.wishlist-login-dialog__cancel,
.wishlist-login-dialog__confirm { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 2.75rem; padding: 0.7rem 1rem; border-radius: 0.7rem; font-size: 0.875rem; font-weight: 700; text-decoration: none; }
.wishlist-login-dialog__cancel { border: 1px solid #d6d3d1; color: #57534e; background: #ffffff; cursor: pointer; }
.wishlist-login-dialog__confirm { border: 1px solid var(--color-secondary, #dc2626); color: #ffffff; background: var(--color-secondary, #dc2626); }
.wishlist-login-dialog__confirm:hover { color: #ffffff; filter: brightness(0.94); }
.wishlist-login-dialog__confirm svg { width: 1rem; height: 1rem; }

html.dark dialog.wishlist-login-dialog { border-color: #44403c; color: #fafaf9; background: #1c1917; }
html.dark dialog.wishlist-login-dialog h2 { color: #fafaf9; }
html.dark dialog.wishlist-login-dialog p { color: #a8a29e; }
html.dark .wishlist-login-dialog__icon { background: rgba(248, 113, 113, 0.12); }
html.dark .wishlist-login-dialog__cancel { border-color: #57534e; color: #d6d3d1; background: #292524; }

@media (max-width: 520px) {
    .product-wishlist-button { min-width: 2.875rem; padding-right: 0.8rem; padding-left: 0.8rem; }
    .product-wishlist-button span { display: none; }
    dialog.wishlist-login-dialog { padding: 1.75rem 1.25rem 1.25rem; }
}

/*** reviews ***/
.mt--40 {
    margin-top: 40px !important;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.pt--40 {
    padding-top: 40px !important;
}

.mb--25 {
    margin-bottom: 25px !important;
}

.fa-star {
    color: #ffa41b;
}

.course-details-card {
    padding: 30px;
}

.course-details-card .course-details-two-content p:last-child {
    margin-bottom: 0;
}

.row--30 {
    margin-left: -30px;
    margin-right: -30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media only screen and (max-width: 767px) {
    .row--30 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}

.row--30 > [class*="col"],
.row--30 > [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media only screen and (max-width: 767px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.course-details-content .rating-box {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    text-align: center;
    min-width: 200px;
    padding: 29px 10px;
}

.course-details-content .rating-box .rating-number {
    font-weight: 800;
    font-size: 72px;
    line-height: 90px;
    color: #231F40;
}

.course-details-content .rating-box span {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.course-details-content .course-tab-content {
    margin-top: 40px;
}

.course-details-content .rating-box {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    text-align: center;
    min-width: 200px;
    padding: 29px 10px;
}

.course-details-content .rating-box .rating-number {
    font-weight: 800;
    font-size: 72px;
    line-height: 90px;
    color: #231F40;
}

.course-details-content .rating-box span {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.review-wrapper .single-progress-bar {
    position: relative;
}

.review-wrapper .rating-text {
    display: inline-block;
    position: relative;
    top: 19px;
}

.review-wrapper .progress {
    max-width: 83%;
    margin-left: 38px;
    height: 12px;
    background: #EEEEEE;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .review-wrapper .progress {
        max-width: 80%;
    }
}

.review-wrapper .progress .progress-bar {
    background-color: #FFA41B;
}

.review-wrapper span.rating-value {
    position: absolute;
    right: 0;
    top: 50%;
}

.edu-comment {
    display: flex;
}

@media only screen and (max-width: 575px) {
    .edu-comment {
        flex-direction: column;
    }
}

.edu-comment .avatar-thumbnail {
    min-width: 70px;
    width: 70px;
    max-height: 70px;
    border-radius: 100%;
    margin-right: 25px;
}

.edu-comment .avatar-thumbnail img {
    border-radius: 100%;
    width: 100%;
}

.edu-comment .comment-content .comment-top {
    display: flex;
    align-items: center;
}

.edu-comment .comment-content .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-right: 15px;
}

.edu-comment .comment-content .subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    display: block;
    margin-bottom: 10px;
    color: #231F40;
}

@media only screen and (max-width: 575px) {
    .edu-comment .comment-content {
        margin-top: 20px;
    }
}

.edu-comment + .edu-comment {
    border-top: 1px solid #EEEEEE;
    padding-top: 30px;
    margin-top: 30px;
}

.product-story { position: relative; }

.product-content-section,
.product-review-compose,
.product-reviews-panel {
    overflow: hidden;
    border: 1px solid #e7e5e4;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(28, 25, 23, 0.055);
}

.product-content-section__header,
.product-reviews-panel__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid #f1f0ef;
    background: linear-gradient(135deg, #fafaf9 0%, #ffffff 70%);
}

.product-content-section__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    color: var(--color-secondary, #dc2626);
    background: color-mix(in srgb, var(--color-secondary, #dc2626) 9%, white);
}

.product-content-section__icon svg { width: 1.25rem; height: 1.25rem; }

.product-content-section__eyebrow,
.product-review-compose__eyebrow {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--color-secondary, #dc2626);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-content-section__header h2,
.product-reviews-panel__header h2 {
    margin: 0;
    color: #1c1917;
    font-size: 1.25rem;
    font-weight: 750;
    line-height: 1.35;
}

.product-content-section__body { padding: 1.75rem; }

.product-rich-content {
    color: #44403c;
    font-size: 0.975rem;
    line-height: 1.85;
}

.product-rich-content > :first-child {
    margin-top: 0;
}

.product-rich-content > :last-child {
    margin-bottom: 0;
}

.product-rich-content h1,
.product-rich-content h2,
.product-rich-content h3,
.product-rich-content h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.35;
}

.product-rich-content h2 { font-size: 1.5rem; }
.product-rich-content h3 { font-size: 1.25rem; }
.product-rich-content p,
.product-rich-content ul,
.product-rich-content ol { margin: 0 0 1rem; }
.product-rich-content ul,
.product-rich-content ol { padding-left: 1.5rem; }
.product-rich-content li + li { margin-top: 0.375rem; }

.product-rich-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(28, 25, 23, 0.08);
}

.product-rich-content a {
    color: var(--color-secondary, #dc2626);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--color-secondary, #dc2626) 35%, transparent);
    text-underline-offset: 0.2em;
}

.product-specification-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
    padding: 0 2.25rem 0.5rem;
}

.product-specification-list__item {
    display: grid;
    grid-template-columns: minmax(7rem, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    min-width: 0;
    padding: 1.1rem 0;
    border-bottom: 1px solid #ece9e5;
    font-size: 0.875rem;
}

.product-specification-list__item--tagged {
    grid-column: 1 / -1;
    grid-template-columns: minmax(7rem, 14rem) minmax(0, 1fr);
}
.product-specification-list__item:last-child { border-bottom: 0; }
.product-specification-list__item dt { color: #78716c; font-weight: 600; }
.product-specification-list__item dd { margin: 0; color: #1c1917; font-weight: 700; }

.product-specification-list__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-specification-list__tag {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    border: 1px solid #bfdbfe;
    border-radius: 0.375rem;
    background: #f8fbff;
    padding: 0.25rem 0.5rem;
    color: #294b91;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.b2b-inquiry-options {
    margin: 1.25rem 0;
    padding: 0;
    border: 0;
}

.b2b-inquiry-options legend {
    margin-bottom: 0.6rem;
    color: #292524;
    font-size: 0.875rem;
    font-weight: 700;
}

.b2b-inquiry-options__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.625rem;
}

.b2b-inquiry-option { position: relative; display: block; min-width: 0; cursor: pointer; }
.b2b-inquiry-option input { position: absolute; opacity: 0; pointer-events: none; }
.b2b-inquiry-option span {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    color: #44403c;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
    transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.b2b-inquiry-option:hover span { border-color: #a8a29e; background: #fafaf9; }
.b2b-inquiry-option input:checked + span { border-color: var(--color-secondary, #dc2626); color: var(--color-secondary, #b91c1c); background: color-mix(in srgb, var(--color-secondary, #dc2626) 7%, white); }
.b2b-inquiry-option input:focus-visible + span { outline: 2px solid var(--color-secondary, #dc2626); outline-offset: 2px; }

.product-document-list { margin: 0; padding: 0 2.25rem 0.5rem; list-style: none; }
.product-document-list__item { display: flex; min-width: 0; align-items: center; gap: 0.875rem; padding: 1rem 0; border-bottom: 1px solid #ece9e5; }
.product-document-list__item:last-child { border-bottom: 0; }
.product-document-list__icon { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; color: #78716c; }
.product-document-list__details { display: grid; min-width: 0; gap: 0.2rem; }
.product-document-list__details strong { color: #1c1917; font-size: 0.9rem; overflow-wrap: anywhere; }
.product-document-list__details span { color: #78716c; font-size: 0.78rem; overflow-wrap: anywhere; }
.product-document-list__download { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 0.4rem; margin-left: auto; border: 1px solid #d6d3d1; border-radius: 0.5rem; padding: 0.45rem 0.65rem; color: #44403c; font-size: 0.8rem; font-weight: 700; text-decoration: none; }
.product-document-list__download:hover { border-color: var(--color-secondary, #dc2626); color: var(--color-secondary, #b91c1c); }

.product-review-compose {
    display: grid;
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
}

dialog.product-review-dialog {
    width: min(94vw, 62rem);
    max-width: 62rem;
    max-height: 90vh;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    background: transparent;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32);
}

dialog.product-review-dialog::backdrop {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
}

dialog.product-review-dialog .product-review-compose {
    max-height: 90vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

dialog.product-review-dialog .product-review-compose__form {
    max-height: 90vh;
    overflow-y: auto;
}

.product-review-submit-row {
    position: sticky;
    z-index: 2;
    bottom: -2.25rem;
    margin-right: -2.25rem;
    margin-bottom: -2.25rem;
    margin-left: -2.25rem;
    padding: 1rem 2.25rem;
    border-top-color: #e7e5e4;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 24px rgba(28, 25, 23, 0.06);
    backdrop-filter: blur(8px);
}

.product-review-submit-button {
    color: #ffffff;
    background: var(--color-secondary, #dc2626);
}

.product-review-submit-button:hover { filter: brightness(0.94); }

dialog.product-review-dialog .product-review-dialog__close {
    top: 0.8rem;
    right: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid #e7e5e4;
    border-radius: 999px;
    color: #57534e;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 12px rgba(28, 25, 23, 0.1);
}

dialog.product-review-dialog .product-review-dialog__close:hover {
    color: #1c1917;
    background: #ffffff;
}

dialog.product-review-dialog .product-review-dialog__close svg { width: 1rem; height: 1rem; }

.product-review-compose__intro {
    position: relative;
    padding: 2.5rem;
    color: #ffffff;
    background: radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 36%),
                linear-gradient(145deg, #292524, #1c1917);
}

.product-review-compose__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2.25rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 1rem;
    color: #ffffff;
    background: rgba(255,255,255,.08);
}

.product-review-compose__icon svg { width: 1.35rem; height: 1.35rem; }
.product-review-compose__intro .product-review-compose__eyebrow { color: #fca5a5; }
.product-review-compose__intro h2 { margin: 0; font-size: 1.7rem; font-weight: 750; line-height: 1.25; }
.product-review-compose__intro > p { margin: 0.9rem 0 2rem; color: #d6d3d1; line-height: 1.7; }

.product-review-compose__note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #a8a29e;
    font-size: 0.78rem;
    line-height: 1.5;
}

.product-review-compose__note svg { flex: 0 0 auto; width: 1rem; height: 1rem; margin-top: 0.1rem; color: #fca5a5; }
.product-review-compose__form { padding: 2.25rem; background: #ffffff; }

.product-review-stars { display: flex; width: max-content; gap: 0.15rem; color: #f59e0b; }
.product-review-stars .star-item { width: 1.7rem; height: 1.7rem; transition: transform 150ms ease, color 150ms ease; }
.product-review-stars .star-item:hover { color: #d97706; transform: translateY(-1px) scale(1.08); }

.product-reviews-panel__header { justify-content: space-between; }
.product-reviews-panel__actions { display: flex; align-items: center; gap: 0.65rem; }
.product-reviews-panel__count {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: #57534e;
    background: #f5f5f4;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-reviews-panel__write-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.4rem;
    padding: 0.55rem 0.9rem;
    border: 0;
    border-radius: 0.75rem;
    color: #ffffff;
    background: var(--color-secondary, #dc2626);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-secondary, #dc2626) 24%, transparent);
    font-size: 0.78rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.product-reviews-panel__write-button:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
    box-shadow: 0 7px 16px color-mix(in srgb, var(--color-secondary, #dc2626) 30%, transparent);
}

.product-reviews-panel__write-button:focus-visible { outline: 2px solid var(--color-secondary, #dc2626); outline-offset: 3px; }
.product-reviews-panel__write-button svg { width: 0.95rem; height: 0.95rem; }

.product-reviews-summary {
    display: grid;
    grid-template-columns: minmax(13rem, 0.65fr) minmax(0, 1.35fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 2.25rem;
}

.product-reviews-score { text-align: center; }
.product-reviews-score > strong { display: block; color: #1c1917; font-size: 3rem; line-height: 1; }
.product-reviews-score > strong span { margin-left: 0.2rem; color: #a8a29e; font-size: 1rem; font-weight: 600; }
.product-reviews-score__stars,
.product-review-item__stars { display: flex; justify-content: center; gap: 0.15rem; margin-top: 0.75rem; color: #f59e0b; }
.product-reviews-score__stars svg,
.product-review-item__stars svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.product-reviews-score p { margin: 0.75rem 0 0; color: #78716c; font-size: 0.78rem; }

.product-reviews-distribution { display: grid; gap: 0.7rem; }
.product-reviews-distribution__row { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) 2rem; gap: 0.75rem; align-items: center; }
.product-reviews-distribution__row > span { display: flex; align-items: center; gap: 0.25rem; color: #57534e; font-size: 0.8rem; font-weight: 700; }
.product-reviews-distribution__row > span svg { width: 0.8rem; height: 0.8rem; color: #f59e0b; fill: currentColor; }
.product-reviews-distribution__row > strong { color: #78716c; font-size: 0.75rem; text-align: right; }
.product-reviews-distribution__track { overflow: hidden; height: 0.45rem; border-radius: 999px; background: #f1f0ef; }
.product-reviews-distribution__track > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #fbbf24, #f59e0b); }

.product-review-list { margin: 0 2.25rem; padding: 2rem 0; border-top: 1px solid #f1f0ef; }
.product-review-list > h3 { margin: 0 0 0.5rem; color: #1c1917; font-size: 1rem; font-weight: 750; }
.product-review-item { display: flex; gap: 1rem; padding: 1.5rem 0; }
.product-review-item + .product-review-item { border-top: 1px solid #f1f0ef; }
.product-review-item__avatar { flex: 0 0 auto; width: 2.75rem; height: 2.75rem; overflow: hidden; border-radius: 999px; background: #f5f5f4; }
.product-review-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.product-review-item__content { min-width: 0; flex: 1; }
.product-review-item__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-review-item__top h4 { margin: 0; color: #1c1917; font-size: 0.9rem; font-weight: 750; }
.product-review-item__stars { flex: 0 0 auto; margin: 0; }
.product-review-item__subtitle { margin: 0.5rem 0 0; color: #57534e; font-weight: 650; }
.product-review-item__message { margin: 0.5rem 0 0; color: #57534e; font-size: 0.9rem; line-height: 1.7; }
.product-review-item__media { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; }
.product-review-media-thumb { position: relative; display: block; width: 5.5rem; height: 5.5rem; padding: 0; overflow: hidden; border: 1px solid #e7e5e4; border-radius: 0.75rem; background: #f5f5f4; cursor: zoom-in; }
.product-review-media-thumb img,
.product-review-media-thumb video { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 150ms ease; }
.product-review-media-thumb:hover img,
.product-review-media-thumb:hover video { transform: scale(1.05); }
.product-review-media-thumb:focus-visible { outline: 2px solid var(--color-secondary, #dc2626); outline-offset: 2px; }
.product-review-media-thumb__play { position: absolute; inset: 50% auto auto 50%; display: flex; width: 2rem; height: 2rem; align-items: center; justify-content: center; border-radius: 999px; color: #fff; background: rgba(17,24,39,.72); transform: translate(-50%, -50%); }
.product-review-media-thumb__play svg { width: 1rem; height: 1rem; margin-left: 0.1rem; }

dialog.product-review-media-lightbox { width: min(56rem, calc(100vw - 2rem)); max-width: 56rem; padding: 0; overflow: hidden; border: 1px solid #e5e7eb; border-radius: 1rem; background: #fff; }
dialog.product-review-media-lightbox::backdrop { background: rgba(15,23,42,.78); backdrop-filter: blur(3px); }
.product-review-media-lightbox__close { top: 0.75rem !important; right: 0.75rem !important; z-index: 2; display: flex; width: 2.4rem; height: 2.4rem; align-items: center; justify-content: center; border: 1px solid #d1d5db; border-radius: 999px; color: #374151; background: rgba(255,255,255,.92); }
.product-review-media-lightbox__close svg { width: 1.15rem; height: 1.15rem; }
.product-review-media-lightbox__stage { display: flex; min-height: min(70vh, 40rem); align-items: center; justify-content: center; background: #f9fafb; }
.product-review-media-lightbox__stage img,
.product-review-media-lightbox__stage video { display: block; max-width: 100%; max-height: min(70vh, 40rem); object-fit: contain; }
.product-review-media-lightbox__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.8rem 1rem; border-top: 1px solid #e5e7eb; color: #4b5563; background: #fff; }
.product-review-media-lightbox__count { margin: 0; font-size: 0.8rem; font-weight: 600; }
.product-review-media-lightbox__actions { display: flex; gap: 0.5rem; }
.product-review-media-lightbox__actions button { display: flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border: 1px solid #d1d5db; border-radius: 0.6rem; color: #374151; background: #fff; cursor: pointer; }
.product-review-media-lightbox__actions button:hover { background: #f3f4f6; }
.product-review-media-lightbox__actions button:disabled { cursor: default; opacity: .4; }
.product-review-media-lightbox__actions svg { width: 1.1rem; height: 1.1rem; }

.product-reviews-empty { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 2.25rem; padding: 1.75rem 0 2.25rem; border-top: 1px solid #f1f0ef; }
.product-reviews-empty > svg { width: 2rem; height: 2rem; color: #a8a29e; }
.product-reviews-empty h3 { margin: 0; color: #1c1917; font-size: 0.9rem; font-weight: 750; }
.product-reviews-empty p { margin: 0.2rem 0 0; color: #78716c; font-size: 0.8rem; }

html.dark .product-content-section {
    border-color: #374151;
    background: #1f2937;
}

html.dark .product-review-compose,
html.dark .product-reviews-panel { border-color: #44403c; background: #1c1917; }
html.dark dialog.product-review-dialog { background: transparent; }
html.dark dialog.product-review-dialog .product-review-dialog__close { border-color: #57534e; color: #e7e5e4; background: rgba(41, 37, 36, 0.94); }

html.dark .product-content-section__header,
html.dark .product-reviews-panel__header {
    border-color: #374151;
    background: linear-gradient(135deg, #1c1917, #292524);
}

html.dark .product-content-section__header h2,
html.dark .product-reviews-panel__header h2,
html.dark .product-rich-content h1,
html.dark .product-rich-content h2,
html.dark .product-rich-content h3,
html.dark .product-rich-content h4 {
    color: #f9fafb;
}

html.dark .product-rich-content { color: #d1d5db; }
html.dark .product-content-section__icon { background: rgba(248,113,113,.12); }
html.dark .product-specification-list__item { border-color: #44403c; }
html.dark .product-specification-list__item dt,
html.dark .product-reviews-score p,
html.dark .product-reviews-distribution__row > span,
html.dark .product-reviews-distribution__row > strong,
html.dark .product-review-item__message,
html.dark .product-review-item__subtitle,
html.dark .product-reviews-empty p { color: #a8a29e; }
html.dark .product-specification-list__item dd,
html.dark .product-reviews-score > strong,
html.dark .product-review-list > h3,
html.dark .product-review-item__top h4,
html.dark .product-reviews-empty h3 { color: #fafaf9; }
html.dark .product-specification-list__tag {
    border-color: rgba(30, 64, 175, .75);
    background: rgba(30, 58, 138, .28);
    color: #dbeafe;
}
html.dark .b2b-inquiry-options legend { color: #f5f5f4; }
html.dark .b2b-inquiry-option span { border-color: #57534e; color: #e7e5e4; background: #292524; }
html.dark .b2b-inquiry-option:hover span { border-color: #78716c; background: #3a3532; }
html.dark .b2b-inquiry-option input:checked + span { color: #fecaca; background: rgba(127, 29, 29, .35); }
html.dark .product-document-list__item { border-color: #44403c; }
html.dark .product-document-list__icon,
html.dark .product-document-list__details span { color: #a8a29e; }
html.dark .product-document-list__details strong { color: #fafaf9; }
html.dark .product-document-list__download { border-color: #57534e; color: #e7e5e4; }
html.dark .product-review-compose__form { background: #1c1917; }
html.dark .product-review-media-thumb { border-color: #44403c; background: #292524; }
html.dark dialog.product-review-media-lightbox { border-color: #374151; background: #111827; }
html.dark .product-review-media-lightbox__close { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(17,24,39,.7); }
html.dark .product-review-media-lightbox__stage { background: #111827; }
html.dark .product-review-media-lightbox__footer { border-color: #374151; color: #d1d5db; background: #1f2937; }
html.dark .product-review-media-lightbox__actions button { border-color: #4b5563; color: #f9fafb; background: #374151; }
html.dark .product-review-media-lightbox__actions button:hover { background: #4b5563; }
html.dark .product-review-submit-row { border-color: #44403c; background: rgba(28, 25, 23, 0.96); }
html.dark .product-reviews-panel__count,
html.dark .product-review-item__avatar { color: #d6d3d1; background: #292524; }
html.dark .product-reviews-distribution__track { background: #44403c; }
html.dark .product-review-list,
html.dark .product-review-item + .product-review-item,
html.dark .product-reviews-empty { border-color: #44403c; }

@media (max-width: 640px) {
    .product-content-section__header,
    .product-content-section__body,
    .product-reviews-panel__header { padding: 1.1rem; }
    .product-content-section__icon { width: 2.4rem; height: 2.4rem; }
    .product-reviews-panel__header { align-items: flex-start; }
    .product-reviews-panel__actions { align-items: flex-end; flex-direction: column-reverse; }
    .product-reviews-panel__write-button span { display: none; }
    .product-reviews-panel__write-button { width: 2.4rem; padding: 0; }
    .product-specification-list { grid-template-columns: 1fr; padding: 0 1.1rem 0.35rem; }
    .product-specification-list__item { grid-template-columns: minmax(6.5rem, 0.72fr) minmax(0, 1.28fr); gap: 0.75rem; padding: 1rem 0; }
    .product-specification-list__item--tagged { grid-column: auto; grid-template-columns: minmax(6.5rem, 0.72fr) minmax(0, 1.28fr); }
    .product-specification-list__tags { gap: 0.4rem; }
    .b2b-inquiry-options__list { grid-template-columns: 1fr; }
    .product-document-list { padding: 0 1.1rem 0.35rem; }
    .product-document-list__item { align-items: flex-start; flex-wrap: wrap; }
    .product-document-list__download { margin-left: 2.1rem; }
    .product-review-compose__intro,
    .product-review-compose__form { padding: 1.5rem; }
    .product-review-submit-row { bottom: -1.5rem; margin-right: -1.5rem; margin-bottom: -1.5rem; margin-left: -1.5rem; padding: 1rem 1.5rem; }
    .product-review-compose__icon { margin-bottom: 1.5rem; }
    .product-reviews-summary { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.5rem; }
    .product-review-list,
    .product-reviews-empty { margin-right: 1.25rem; margin-left: 1.25rem; }
    .product-review-item__top { align-items: flex-start; flex-direction: column; gap: 0.45rem; }
    .product-review-item__stars { justify-content: flex-start; }
}

@media (max-width: 900px) {
    .product-review-compose { grid-template-columns: 1fr; }
    dialog.product-review-dialog .product-review-compose__intro { padding: 1.5rem 4rem 1.5rem 1.5rem; }
    dialog.product-review-dialog .product-review-compose__icon { display: none; }
    dialog.product-review-dialog .product-review-compose__intro > p,
    dialog.product-review-dialog .product-review-compose__note { display: none; }
    dialog.product-review-dialog .product-review-compose__form { max-height: 68vh; }
}

.product-title img {
    max-width: 515px;
}

/***** Product Showcase *****/

.product-specification {
    padding: 40px 0;
}

.product-title {
    margin: 0;
}

.product-title h1 {
    /* Size controlled by Tailwind classes in template */
}

.product-title div.product-description {
    line-height: 1.6;
}

.product-title div.product-description h3 {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

.product-title div.product-description form {
    margin-top: 20px;
    margin-bottom: 0;
}

.product-title div.product-description form input:focus {
    -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
}

.product-title div.product-description form input:-moz-placeholder {
    color: #555;
}

.product-title div.product-description form input:-ms-input-placeholder {
    color: #555;
}

.product-title div.product-description form input::-webkit-input-placeholder {
    color: #555;
}

.price {
    padding-left: 6px;
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1;
}

.product-title .list-price {
    font-size: 18px;
    font-weight: 750;
    text-decoration: line-through;
}

.regPrice {
    font-size: 14px;
    color: #333;
    padding-left: 20px;
    text-decoration: line-through;
}

.shopping-btns {
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
}

.shopping-btns:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.shopping-btns svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.inquire-now {
    background-color: var(--btn-primary-bg);
    border: 1px solid var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.inquire-now:hover {
    background-color: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-bg-hover);
    color: var(--btn-primary-text);
}

/* B2B product inquiry dialog */
dialog.product-inquiry-dialog {
    width: min(1120px, calc(100vw - 32px));
    max-width: 1120px;
    height: min(860px, calc(100vh - 32px));
    max-height: min(860px, calc(100vh - 32px));
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.product-inquiry-dialog__layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); height: 100%; min-height: 0; }
.product-inquiry-dialog__intro { padding: 48px 30px; background: #101827; color: #fff; }
.product-inquiry-dialog__eyebrow { display: block; margin-bottom: 14px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #9ca3af; }
.product-inquiry-dialog__intro h2 { margin: 0; padding: 0; font-size: 30px; line-height: 1.15; color: #fff; }
.product-inquiry-dialog__intro > p { margin: 14px 0 26px; color: #cbd5e1; font-size: 14px; line-height: 1.65; }
.product-inquiry-dialog__product { display: flex; gap: 10px; align-items: center; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.product-inquiry-dialog__product > span { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px; background: rgba(255,255,255,.1); color: #cbd5e1; display: flex; align-items: center; justify-content: center; }
.product-inquiry-dialog__product > span svg { width: 15px; height: 15px; }
.product-inquiry-dialog__product div { min-width: 0; display: flex; flex-direction: column; }
.product-inquiry-dialog__product small { margin-bottom: 3px; color: #94a3b8; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.product-inquiry-dialog__product strong { font-size: 13px; line-height: 1.4; color: #fff; }
.product-inquiry-dialog__product em { margin-top: 4px; color: #94a3b8; font-size: 12px; font-style: normal; }
.product-inquiry-dialog__benefits { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: #cbd5e1; font-size: 13px; }
.product-inquiry-dialog__benefits li { display: flex; align-items: center; gap: 9px; }
.product-inquiry-dialog__benefits svg { width: 16px; height: 16px; color: #6ee7b7; }
.product-inquiry-dialog__form-wrap { display: flex; min-height: 0; flex-direction: column; overflow: hidden; padding: 44px 48px 0; background: #f9fafb; }
.product-inquiry-dialog__form-wrap form { min-height: 0; flex: 1 1 auto; overflow-y: auto; padding-bottom: 18px; }
.product-inquiry-dialog__close { top: 14px !important; right: 14px !important; display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: #f3f4f6 !important; }
.product-inquiry-dialog__close svg { width: 18px; height: 18px; }
.product-inquiry-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; padding: 24px; border: 1px solid #e5e7eb; border-radius: 20px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.product-inquiry-field { margin: 0; }
.product-inquiry-field--wide { grid-column: 1 / -1; }
.product-inquiry-field--quantity { max-width: 220px; }
.product-inquiry-field > label { display: block; margin-bottom: 8px; color: #374151; font-size: 14px; line-height: 20px; font-weight: 500; }
.product-inquiry-field > label span { color: #dc2626; }
.product-inquiry-field > label small { font-weight: 400; color: #9ca3af; }
.product-inquiry-field input:not([type=file]), .product-inquiry-field textarea { width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; padding: 11px 14px; color: #111827; font-size: 14px; line-height: 20px; outline: none; box-shadow: 0 1px 2px rgba(0,0,0,.02); transition: border-color .15s, box-shadow .15s; }
.product-inquiry-field input:not([type=file]) { min-height: 44px; }
.product-inquiry-field input::placeholder, .product-inquiry-field textarea::placeholder { color: #9ca3af; }
.product-inquiry-field input:focus, .product-inquiry-field textarea:focus { border-color: #9ca3af; box-shadow: 0 0 0 3px #f3f4f6; }
.product-inquiry-field textarea { resize: vertical; min-height: 120px; }
.product-inquiry-field .help-block { min-height: 18px; margin: 5px 0 0; color: #dc2626; font-size: 12px; }
.product-inquiry-field__meta { display: flex; justify-content: space-between; gap: 16px; color: #9ca3af; font-size: 11px; }
.product-inquiry-upload { display: flex !important; align-items: center; gap: 12px; min-height: 70px; margin: 0 !important; padding: 13px 15px; border: 1px dashed #d1d5db; border-radius: 12px; background: #f9fafb; cursor: pointer; transition: background .15s, border-color .15s; }
.product-inquiry-upload:hover { border-color: #6b7280; background: #f3f4f6; }
.product-inquiry-upload svg { width: 22px; height: 22px; color: #6b7280; }
.product-inquiry-upload span { display: flex; flex-direction: column; }
.product-inquiry-upload strong { color: #374151; font-size: 13px; }
.product-inquiry-upload small { margin-top: 3px; color: #9ca3af; font-size: 11px; }
.product-inquiry-files { display: grid; gap: 7px; margin-top: 8px; }
.product-inquiry-file { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 10px; border-radius: 9px; background: #f3f4f6; }
.product-inquiry-file span { min-width: 0; display: flex; gap: 7px; align-items: baseline; }
.product-inquiry-file strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; color: #374151; }
.product-inquiry-file small { flex: none; color: #9ca3af; font-size: 10px; }
.product-inquiry-file button { border: 0; background: none; color: #9ca3af; font-size: 18px; cursor: pointer; }
.product-inquiry-captcha { display: flex; gap: 10px; }
.product-inquiry-captcha input { width: 7.5rem; max-width: 100%; flex: 0 0 7.5rem; letter-spacing: .12em; text-transform: uppercase; }
.product-inquiry-captcha button { flex: 0 0 150px; padding: 0; border: 1px solid #d1d5db; border-radius: 11px; overflow: hidden; background: #fff; cursor: pointer; }
.product-inquiry-captcha img { width: 100%; height: 42px; object-fit: contain; }
.product-inquiry-dialog__actions { display: flex; flex: none; align-items: center; justify-content: space-between; gap: 20px; margin: 0; padding: 18px 4px 24px; border-top: 1px solid #e5e7eb; background: #f9fafb; }
.product-inquiry-dialog__actions p { display: flex; align-items: center; gap: 7px; margin: 0; color: #6b7280; font-size: 11px; }
.product-inquiry-dialog__actions p svg { width: 16px; height: 16px; }
#product-inquiry-submit { display: inline-flex; min-width: 168px; height: 48px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 12px; background: #111827; color: #fff; font-size: 14px; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.08); cursor: pointer; transition: transform .15s, opacity .15s, background-color .15s; }
#product-inquiry-submit:hover { transform: translateY(-1px); }
#product-inquiry-submit:disabled { cursor: wait; opacity: .6; }
#product-inquiry-submit svg { width: 16px; height: 16px; }
.product-inquiry-status { display: none; margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; font-size: 13px; }
.product-inquiry-status--error, .product-inquiry-status--success { display: flex; flex-direction: column; gap: 3px; }
.product-inquiry-status--error { border: 1px solid #fecaca; background: #fef2f2; color: #b91c1c; }
.product-inquiry-status--success { min-height: 180px; align-items: center; justify-content: center; text-align: center; border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; }
.product-inquiry-status--success strong { font-size: 20px; }

.dark dialog.product-inquiry-dialog { background: #111827; }
.dark .product-inquiry-dialog__form-wrap, .dark .product-inquiry-dialog__actions { background: #030712; }
.dark .product-inquiry-fields { border-color: #1f2937; background: #111827; box-shadow: none; }
.dark .product-inquiry-field > label { color: #d1d5db; }
.dark .product-inquiry-field input:not([type=file]), .dark .product-inquiry-field textarea { border-color: #374151; background: #030712; color: #f3f4f6; box-shadow: none; }
.dark .product-inquiry-field input:focus, .dark .product-inquiry-field textarea:focus { border-color: #4b5563; box-shadow: 0 0 0 3px #1f2937; }
.dark .product-inquiry-upload { border-color: #475569; background: #0b1220; }
.dark .product-inquiry-upload strong, .dark .product-inquiry-file strong { color: #e5e7eb; }
.dark .product-inquiry-file { background: #1f2937; }
.dark .product-inquiry-dialog__actions { border-color: #374151; }
.dark #product-inquiry-submit { background: #f9fafb; color: #111827; }

@media (max-width: 800px) {
    dialog.product-inquiry-dialog { width: 100vw; max-width: none; max-height: 100dvh; height: 100dvh; border-radius: 0; }
    .product-inquiry-dialog__layout { display: block; min-height: auto; }
    .product-inquiry-dialog__intro { padding: 34px 22px 24px; }
    .product-inquiry-dialog__intro h2 { font-size: 24px; }
    .product-inquiry-dialog__benefits { display: none; }
    .product-inquiry-dialog__form-wrap { padding: 22px 16px 0; overflow: hidden; }
    .product-inquiry-dialog__form-wrap form { overflow-y: visible; }
    .product-inquiry-dialog { overflow-y: auto !important; }
    .product-inquiry-fields { grid-template-columns: 1fr; }
    .product-inquiry-fields { padding: 18px; border-radius: 18px; }
    .product-inquiry-field--wide { grid-column: auto; }
    .product-inquiry-field--quantity { max-width: none; }
    .product-inquiry-dialog__actions { align-items: stretch; flex-direction: column; }
    #product-inquiry-submit { width: 100%; }
}

/* Pre-purchase product question dialog */
dialog.product-question-dialog {
    width: min(900px, calc(100vw - 32px));
    max-width: 900px;
    max-height: min(720px, calc(100vh - 32px));
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.product-question-dialog__layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: 520px; }
.product-question-dialog__intro { padding: 44px 30px; background: #101827; color: #fff; }
.product-question-dialog__icon { display: flex; width: 40px; height: 40px; margin-bottom: 28px; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255,255,255,.1); color: #d1d5db; }
.product-question-dialog__icon svg { width: 20px; height: 20px; }
.product-question-dialog__eyebrow { display: block; margin-bottom: 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #9ca3af; }
.product-question-dialog__intro h2 { margin: 0; padding: 0; font-size: 28px; line-height: 1.15; color: #fff; }
.product-question-dialog__intro > p { margin: 14px 0 26px; color: #cbd5e1; font-size: 14px; line-height: 1.65; }
.product-question-dialog__product { display: flex; gap: 10px; align-items: center; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.product-question-dialog__product > span { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 9px; background: rgba(255,255,255,.1); color: #cbd5e1; display: flex; align-items: center; justify-content: center; }
.product-question-dialog__product > span svg { width: 15px; height: 15px; }
.product-question-dialog__product div { min-width: 0; display: flex; flex-direction: column; }
.product-question-dialog__product small { margin-bottom: 3px; color: #94a3b8; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.product-question-dialog__product strong { font-size: 13px; line-height: 1.4; color: #fff; }
.product-question-dialog__product em { margin-top: 4px; color: #94a3b8; font-size: 12px; font-style: normal; }
.product-question-dialog__form-wrap { overflow-y: auto; padding: 44px 42px 30px; background: #f9fafb; }
.product-question-dialog__close { top: 14px !important; right: 14px !important; display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: #f3f4f6 !important; }
.product-question-dialog__close svg { width: 18px; height: 18px; }
.product-question-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; padding: 24px; border: 1px solid #e5e7eb; border-radius: 20px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.product-question-field { margin: 0; }
.product-question-field--wide { grid-column: 1 / -1; }
.product-question-field > label { display: block; margin-bottom: 8px; color: #374151; font-size: 14px; line-height: 20px; font-weight: 500; }
.product-question-field > label span { color: #dc2626; }
.product-question-field input, .product-question-field textarea { width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; padding: 11px 14px; color: #111827; font-size: 14px; line-height: 20px; outline: none; box-shadow: 0 1px 2px rgba(0,0,0,.02); transition: border-color .15s, box-shadow .15s; }
.product-question-field input { min-height: 44px; }
.product-question-field input::placeholder, .product-question-field textarea::placeholder { color: #9ca3af; }
.product-question-field input:focus, .product-question-field textarea:focus { border-color: #9ca3af; box-shadow: 0 0 0 3px #f3f4f6; }
.product-question-field textarea { min-height: 142px; resize: vertical; }
.product-question-field .help-block { min-height: 18px; margin: 5px 0 0; color: #dc2626; font-size: 12px; }
.product-question-field__meta { display: flex; justify-content: space-between; gap: 16px; color: #9ca3af; font-size: 11px; }
.product-question-captcha { display: flex; gap: 10px; }
.product-question-captcha input { flex: 1; }
.product-question-captcha button, .product-review-captcha { flex: 0 0 150px; width: 150px; padding: 0; border: 1px solid #d1d5db; border-radius: 11px; overflow: hidden; background: #fff; cursor: pointer; }
.product-question-captcha img, .product-review-captcha img { display: block; width: 100%; height: 42px; object-fit: contain; }
.product-question-dialog__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding: 18px 4px 0; }
.product-question-dialog__actions p { display: flex; align-items: center; gap: 7px; margin: 0; color: #6b7280; font-size: 11px; }
.product-question-dialog__actions p svg { width: 16px; height: 16px; }
#product-question-submit { display: inline-flex; min-width: 168px; height: 48px; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 12px; background: #111827; color: #fff; font-size: 14px; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.08); cursor: pointer; transition: transform .15s, opacity .15s, background-color .15s; }
#product-question-submit:hover { transform: translateY(-1px); }
#product-question-submit:disabled { cursor: wait; opacity: .6; }
#product-question-submit svg { width: 16px; height: 16px; }
.product-question-status { display: none; margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; font-size: 13px; }
.product-question-status--error, .product-question-status--success { display: flex; flex-direction: column; gap: 3px; }
.product-question-status--error { border: 1px solid #fecaca; background: #fef2f2; color: #b91c1c; }
.product-question-status--success { min-height: 180px; align-items: center; justify-content: center; text-align: center; border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; }
.product-question-status--success strong { font-size: 20px; }

.dark dialog.product-question-dialog { background: #111827; }
.dark .product-question-dialog__form-wrap { background: #030712; }
.dark .product-question-fields { border-color: #1f2937; background: #111827; box-shadow: none; }
.dark .product-question-field > label { color: #d1d5db; }
.dark .product-question-field input, .dark .product-question-field textarea { border-color: #374151; background: #030712; color: #f3f4f6; box-shadow: none; }
.dark .product-question-field input:focus, .dark .product-question-field textarea:focus { border-color: #4b5563; box-shadow: 0 0 0 3px #1f2937; }
.dark #product-question-submit { background: #f9fafb; color: #111827; }

@media (max-width: 800px) {
    dialog.product-question-dialog { width: 100vw; max-width: none; max-height: 100dvh; height: 100dvh; border-radius: 0; overflow-y: auto; }
    .product-question-dialog__layout { display: block; min-height: auto; }
    .product-question-dialog__intro { padding: 32px 22px 22px; }
    .product-question-dialog__icon { margin-bottom: 18px; }
    .product-question-dialog__intro h2 { font-size: 24px; }
    .product-question-dialog__form-wrap { padding: 22px 16px 80px; overflow: visible; }
    .product-question-fields { grid-template-columns: 1fr; padding: 18px; border-radius: 18px; }
    .product-question-field--wide { grid-column: auto; }
    .product-question-dialog__actions { align-items: stretch; flex-direction: column; }
    #product-question-submit { width: 100%; }
}

.buy-now {
    background: #c01c20;
    border: 1px solid #be4144;
    color: #fff;
}

.buy-now:hover {
    background: #a01618;
    color: #ffffff;
}

.add-to-cart {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.add-to-cart:hover {
    border-color: #c01c20;
    color: #c01c20;
}

.add-to-list {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.add-to-list:hover {
    border-color: #262626;
}

.inquire-now i,
.inquire-now svg {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.product-title div.product-description form button:hover {
    color: #fff;
    -moz-box-shadow: 0 15px 30px 0 rgba(255, 255, 255, .1) inset,
    0 1px 5px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 15px 30px 0 rgba(255, 255, 255, .1) inset,
    0 1px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 15px 30px 0 rgba(255, 255, 255, .1) inset,
    0 1px 5px 0 rgba(0, 0, 0, .2);
}

.product-title div.product-description form button:active {
    -moz-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1) inset,
    0 1px 4px 0 rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1) inset,
    0 1px 4px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1) inset,
    0 1px 4px 0 rgba(0, 0, 0, .1);
    border: 0;
}

.product-image {
    position: relative;
}

/* Gallery — Swiper overrides */
.gallery-main .swiper-slide {
    user-select: none;
}

.gallery-main .gallery-slide-inner {
    cursor: crosshair;
}

.gallery-thumbs .swiper-slide {
    height: auto;
}

/* Zoom popup — adjacent panel */
.zoom-popup {
    pointer-events: none;
}


#contact-form-wrap input[type="submit"] {
    margin-bottom: 10px;
}

#contact-form-wrap h1 {
    margin-bottom: 20px;
}
