:root {
    --ys-red: #991b1b;
    --ys-red-dark: #7f1d1d;
    --ys-ink: #171717;
    --ys-muted: #666;
    --ys-line: #dedede;
    --ys-soft: #f5f5f3;
}

body.ys-b2c-product-page {
    background: #fff;
    color: var(--ys-ink);
}

.ys-b2c-product-page .ys-product-main,
.ys-b2c-product-page .ys-product-main * {
    box-sizing: border-box;
}

.ys-product-shell {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.ys-product-main {
    padding-top: 36px;
}

.ys-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: clamp(38px, 5vw, 76px);
    align-items: start;
    padding: 14px 0 72px;
}

.ys-product-gallery {
    position: relative;
    min-width: 0;
}

.ys-product-stage {
    position: relative;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    aspect-ratio: 1;
    background: transparent;
    cursor: crosshair;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.ys-product-stage::-webkit-scrollbar { display: none; }

.ys-product-stage-image {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.ys-product-stage-image.is-active {
    opacity: 1;
}

.ys-mobile-image-zoom {
    position: absolute;
    z-index: 7;
    top: 12px;
    right: 12px;
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(23, 23, 23, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--ys-ink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    cursor: pointer;
}


.ys-zoom-lens {
    position: absolute;
    z-index: 5;
    display: none;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(153, 27, 27, .85);
    background: rgba(255, 255, 255, .24);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .75) inset;
    pointer-events: none;
}

.ys-zoom-preview {
    position: absolute;
    z-index: 4;
    display: none;
    width: 44%;
    aspect-ratio: 1;
    border: 4px solid #fff;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 280% 280%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .24);
    pointer-events: none;
}

.ys-product-stage.is-zooming .ys-zoom-lens,
.ys-product-stage.is-zooming .ys-zoom-preview {
    display: block;
}

.ys-product-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ys-product-thumb {
    flex: 0 0 76px;
    width: 76px;
    aspect-ratio: 1;
    padding: 5px;
    border: 1px solid var(--ys-line);
    background: #fff;
    cursor: pointer;
}

.ys-product-thumb.is-active { border: 2px solid var(--ys-red); }
.ys-product-thumb img { width: 100%; height: 100%; object-fit: contain; }

.ys-product-summary {
    padding-top: 4px;
}

.ys-product-category,
.ys-section-kicker {
    margin: 0 0 9px;
    color: var(--ys-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ys-product-summary h1 {
    margin: 0 0 22px;
    font-family: SandvikSansHeadline, Arial, sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.04;
}

.ys-product-lead {
    color: #353535;
    font-size: 17px;
    line-height: 1.65;
}

.ys-product-lead p,
.ys-contact-price { margin: 0 0 18px; }

.ys-product-rating { margin: 15px 0; }

.ys-product-price {
    margin: 18px 0;
    color: var(--ys-red);
    font-size: 30px;
    font-weight: 700;
}

.ys-contact-price {
    display: inline-block;
    padding: 9px 12px;
    background: #f8f0f0;
    color: var(--ys-red-dark);
    font-weight: 700;
}

.ys-product-facts {
    margin: 18px 0 20px;
    border-top: 1px solid var(--ys-line);
}

.ys-product-facts > div {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ys-line);
}

.ys-product-facts dt { font-weight: 700; }
.ys-product-facts dd { margin: 0; }

.ys-quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 20px 0;
}

.ys-text-action {
    color: var(--ys-red) !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ys-text-action span { color: var(--ys-muted); font-weight: 400; }

.ys-purchase-form {
    margin: 0;
}

.ys-b2b-rfq {
    margin-top: 24px;
}

.ys-b2b-rfq .ys-button {
    width: min(100%, 240px);
}

.ys-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.ys-purchase-form textarea {
    display: block;
    width: 100%;
    min-height: 74px;
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    background: #fff;
    color: var(--ys-ink);
    resize: vertical;
}

.ys-variable-purchase form.variations_form { margin: 0; }

.ys-variable-purchase table.variations {
    width: 100%;
    margin: 0 0 16px;
    border: 0;
}

.ys-variable-purchase table.variations th,
.ys-variable-purchase table.variations td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    text-align: left;
}

.ys-variable-purchase table.variations th.label {
    margin-bottom: 8px;
    font-weight: 700;
}

.ys-variable-purchase table.variations select {
    width: 100%;
    min-height: 46px;
    padding: 9px 44px 9px 12px;
    border: 1px solid #aaa;
    border-radius: 0;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%231a1a1a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    appearance: none;
    -webkit-appearance: none;
}

.ys-variable-purchase .ys-variation-buttons { display: none !important; }

.ys-variable-purchase .reset_variations {
    display: inline-block;
    margin-top: 3px;
    color: var(--ys-muted);
    font-size: 12px;
}

.ys-variable-purchase .woocommerce-variation-price {
    display: none;
}

.ys-variable-purchase .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: 118px minmax(150px, max-content) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
}

.ys-variable-purchase .woocommerce-variation-add-to-cart .quantity {
    grid-column: 1;
    grid-row: 1;
}

.ys-variable-purchase .woocommerce-variation-add-to-cart .quantity .qty {
    width: 100%;
    height: 46px;
    margin: 0;
    border: 1px solid #a8a8a8;
    border-radius: 0;
}

.ys-variable-purchase .single_add_to_cart_button {
    grid-column: 2;
    grid-row: 1;
    min-height: 46px;
    padding: 11px 18px !important;
    border-radius: 0 !important;
    background: var(--ys-red) !important;
    color: #fff !important;
    font-size: 14px !important;
    white-space: nowrap;
}

.ys-variable-purchase .single_add_to_cart_button:hover {
    background: var(--ys-red-dark) !important;
}

.ys-buy-row .quantity.ys-quantity-stepper,
.ys-variable-purchase .quantity.ys-quantity-stepper {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: stretch;
}

.ys-qty-step {
    min-height: 46px;
    padding: 0;
    border: 1px solid #a8a8a8;
    background: #fff;
    color: var(--ys-ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.ys-qty-step:hover {
    background: var(--ys-soft);
}

.ys-qty-step.is-minus {
    border-right: 0;
}

.ys-qty-step.is-plus {
    border-left: 0;
}

.ys-quantity-stepper .qty::-webkit-outer-spin-button,
.ys-quantity-stepper .qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.ys-quantity-stepper .qty[type="number"] {
    -moz-appearance: textfield;
}

.ys-variable-purchase .ys-variable-buy-now {
    grid-column: 1 / 3;
    grid-row: 2;
    width: 100%;
}
.ys-variable-purchase .ys-variable-wishlist-inline {
    grid-column: 3;
    grid-row: 1;
}

.ys-variable-purchase .woocommerce-variation-add-to-cart .ys-purchase-total {
    grid-column: 1 / 3;
    grid-row: 3;
}

.ys-variable-purchase .woocommerce-variation-add-to-cart .ys-button,
.ys-buy-row .ys-button,
.ys-variable-purchase .single_add_to_cart_button {
    height: 46px;
    min-height: 46px;
}
.ys-variable-purchase > .ys-wishlist-button {
    display: flex;
    width: auto;
    margin-top: 10px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
}

.ys-shipping-note {
    display: flex;
    gap: 12px;
    margin: 0 0 19px;
    padding: 12px 0;
    border-block: 1px solid var(--ys-line);
    color: var(--ys-muted);
    font-size: 14px;
}

.ys-shipping-note strong { color: var(--ys-ink); }

.ys-purchase-total {
    display: flex;
    width: 100%;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--ys-line);
}

.ys-purchase-total span {
    font-weight: 700;
}

.ys-purchase-total strong {
    color: var(--ys-red);
    font-size: 24px;
    line-height: 1.1;
}

.ys-buy-row {
    display: grid;
    grid-template-columns: 118px minmax(150px, max-content) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
}

.ys-buy-row .quantity {
    grid-column: 1;
    grid-row: 1;
}

.ys-buy-row .quantity .qty {
    width: 100%;
    height: 46px;
    margin: 0;
    border: 1px solid #a8a8a8;
    border-radius: 0;
    text-align: center;
}

.ys-buy-row .ys-add-to-cart-button {
    grid-column: 2;
    grid-row: 1;
    white-space: nowrap;
}

.ys-buy-row .ys-buy-now-button {
    grid-column: 1 / 3;
    grid-row: 2;
    width: 100%;
}

.ys-buy-row .ys-buy-now-button,
.ys-variable-purchase .ys-variable-buy-now {
    background: var(--ys-red) !important;
    color: #fff !important;
}

.ys-buy-row .ys-buy-now-button:hover,
.ys-variable-purchase .ys-variable-buy-now:hover {
    background: var(--ys-red-dark) !important;
}

.ys-buy-row .ys-wishlist-button {
    grid-column: 3;
    grid-row: 1;
}

.ys-button,
.ys-b2c-product-page .ys-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
}

.ys-button-primary { background: var(--ys-red); color: #fff !important; }
.ys-button-primary:hover { background: var(--ys-red-dark); }
.ys-button-secondary { border-color: var(--ys-ink); background: var(--ys-ink); color: #fff !important; }
.ys-button-secondary:hover { background: #333; }
.ys-button-light { border-color: #cfcfcf; background: #fff; color: var(--ys-ink) !important; }

.ys-wishlist-button {
    border-color: #aaa;
    background: #fff;
    color: var(--ys-ink);
    justify-content: flex-start;
    text-align: left;
}

.ys-wishlist-button span { color: var(--ys-red); font-size: 20px; line-height: .7; }
.ys-wishlist-button.is-saved { border-color: var(--ys-red); color: var(--ys-red); }

.ys-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-top: 16px;
    color: var(--ys-muted);
    padding-top: 14px;
    border-top: 1px solid var(--ys-line);
    font-size: 13px;
}

.ys-payment-methods strong { color: var(--ys-ink); }

.ys-product-tabs {
    position: sticky;
    z-index: 30;
    top: 0;
    border-block: 1px solid var(--ys-line);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(8px);
}

.ys-product-tabs .ys-product-shell {
    display: flex;
    gap: clamp(20px, 4vw, 52px);
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ys-product-tabs .ys-product-shell::-webkit-scrollbar { display: none; }

.ys-product-tabs a {
    position: relative;
    flex: 0 0 auto;
    padding: 19px 0 17px;
    color: var(--ys-ink) !important;
    font-weight: 700;
    text-decoration: none !important;
}

.ys-product-tabs a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: transparent;
    content: "";
}

.ys-product-tabs a:hover::after,
.ys-product-tabs a.is-active::after { background: var(--ys-red); }

.ys-product-tabs .ys-tab-quote {
    margin-left: auto;
    padding-inline: 20px;
    background: var(--ys-red);
    color: #fff !important;
}

.ys-product-information {
    padding-block: 72px 88px;
}

.ys-introduction-section {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 0 48px;
    padding-bottom: 72px;
}

.ys-introduction-section .ys-section-kicker { grid-column: 1 / -1; }
.ys-introduction-section h2 { margin: 0; font-size: 36px; }
.ys-introduction-section > div { max-width: 800px; font-size: 18px; line-height: 1.7; }
.ys-introduction-section > div p { margin-top: 0; }

.ys-product-legacy > [data-stickynavigation-header],
.ys-product-legacy > [data-block="product-hero-split"],
.ys-product-legacy > [data-block="product-intro"],
.ys-product-legacy > [data-block="stickynavigation"],
.ys-product-legacy > [data-block="contact"] {
    display: none !important;
}

.ys-product-legacy #features,
.ys-product-legacy #applications,
.ys-product-legacy #product-data {
    margin: 0 !important;
    padding: 68px 0 !important;
    border-top: 1px solid var(--ys-line);
}

.ys-product-legacy #features > .contain,
.ys-product-legacy #applications > .contain,
.ys-product-legacy #product-data > .contain,
.ys-product-legacy #features .contain,
.ys-product-legacy #applications .contain,
.ys-product-legacy #product-data .contain {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-inline: 0 !important;
}

.ys-product-legacy #features::before,
.ys-product-legacy #applications::before {
    display: block;
    margin-bottom: 32px;
    font-family: SandvikSansHeadline, Arial, sans-serif;
    font-size: 36px;
}

.ys-product-legacy #features::before { content: "Features"; }
.ys-product-legacy #applications::before { content: "Applications"; }
.ys-product-legacy #features .hidden.lg\:flex { display: flex !important; }
.ys-product-legacy #features .lg\:hidden { display: none !important; }
.ys-product-legacy #features ul { gap: 0 !important; }
.ys-product-legacy #features li { padding: 22px 0 !important; }
.ys-product-legacy #features h3 { margin: 0; font-size: 20px; line-height: 1.4; }
.ys-product-legacy #features .prose { margin-top: 10px !important; color: var(--ys-muted); }

.ys-product-legacy #product-data > .contain { display: block !important; }
.ys-product-legacy #product-data .lg\:col-span-4 { display: none !important; }
.ys-product-legacy #product-data .lg\:col-span-7 {
    width: 100% !important;
    margin: 0 !important;
    grid-column: 1 / -1 !important;
    grid-column-start: 1 !important;
}
.ys-product-legacy #product-data h2 { font-size: 0 !important; }
.ys-product-legacy #product-data h2::after {
    content: "Specifications";
    font-size: 36px;
}
.ys-product-legacy #product-data table { width: 100%; }
.ys-product-legacy #product-data th,
.ys-product-legacy #product-data td { overflow-wrap: anywhere; }

.ys-managed-section {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 0 48px;
    padding: 68px 0;
    border-top: 1px solid var(--ys-line);
}

.ys-managed-section .ys-section-kicker { grid-column: 1 / -1; }

.ys-managed-section h2 {
    margin: 0;
    font-family: SandvikSansHeadline, Arial, sans-serif;
    font-size: 36px;
    font-weight: 400;
}

.ys-managed-content {
    max-width: 800px;
    font-size: 17px;
    line-height: 1.7;
}

.ys-managed-content > :first-child { margin-top: 0; }
.ys-managed-content > :last-child { margin-bottom: 0; }

.ys-managed-content img {
    max-width: 100%;
    height: auto;
}

.ys-managed-content table {
    width: 100%;
    border-collapse: collapse;
}

.ys-managed-content th,
.ys-managed-content td {
    padding: 12px 14px;
    border: 1px solid var(--ys-line);
    text-align: left;
    vertical-align: top;
}

.ys-managed-content thead th,
.ys-managed-content tr:first-child th,
.ys-managed-content tr:first-child td {
    background: var(--ys-red);
    color: #fff;
    font-weight: 700;
}

.ys-managed-content ul,
.ys-managed-content ol {
    padding-left: 1.3em;
}

.ys-managed-content li { margin-bottom: 12px; }

.ys-applications-section {
    min-height: 190px;
    padding: 68px 0 20px;
    border-top: 1px solid var(--ys-line);
}

.ys-applications-section h2 {
    margin: 0 0 30px;
    font-family: SandvikSansHeadline, Arial, sans-serif;
    font-size: 36px;
    font-weight: 400;
}

.ys-applications-content {
    max-width: none;
    font-size: 17px;
    line-height: 1.7;
}

.ys-applications-layout.has-image {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: start;
}

.ys-applications-layout.has-image .ys-applications-content {
    max-width: none;
}

.ys-applications-image {
    margin: 0;
    overflow: hidden;
    background: var(--ys-soft);
}

.ys-applications-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ys-applications-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ys-applications-content img {
    max-width: 100%;
    height: auto;
}

.ys-applications-content .ys-import-application-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .86fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.ys-import-application-copy > :first-child,
.ys-import-application-images > :first-child { margin-top: 0; }
.ys-import-application-copy > :last-child,
.ys-import-application-images > :last-child { margin-bottom: 0; }

.ys-import-application-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ys-import-application-copy li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 1.15em;
}

.ys-import-application-copy li::before {
    position: absolute;
    left: 0;
    content: "·";
    font-weight: 700;
}

.ys-import-application-images {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ys-import-application-images figure {
    margin: 0;
    overflow: hidden;
    background: var(--ys-soft);
}

.ys-import-application-images img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ys-application-point-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ys-application-point {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 690px);
    gap: clamp(20px, 3vw, 42px);
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ys-line);
}

.ys-application-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ys-application-point-text {
    position: relative;
    padding-left: 1.15em;
}

.ys-application-point-text::before {
    position: absolute;
    left: 0;
    content: "·";
    font-weight: 700;
}

.ys-application-point-images {
    --ys-application-image-size: min(165px, calc((100vw - 38px) / 2));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ys-application-point-images figure {
    flex: 0 0 var(--ys-application-image-size);
    width: var(--ys-application-image-size);
    height: var(--ys-application-image-size);
    margin: 0;
    overflow: hidden;
    background: var(--ys-soft);
}

.ys-application-point-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ys-help-cta {
    padding: 52px 0;
    background: var(--ys-soft);
}

.ys-help-cta .ys-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
}

.ys-help-cta h2 { margin: 0 0 8px; font-size: 32px; }
.ys-help-cta p:last-child { margin: 0; color: var(--ys-muted); }
.ys-help-actions { display: flex; gap: 10px; }

.ys-related-products { padding: 88px 0 104px; }
.ys-section-heading { margin-bottom: 34px; }
.ys-section-heading h2 { margin: 0; font-size: 38px; }

.ys-customer-reviews {
    padding: 80px 0;
    border-top: 1px solid var(--ys-line);
    background: #fff;
}

.ys-customer-reviews .ys-section-heading > p:last-child {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--ys-muted);
}

.ys-customer-reviews .woocommerce-Reviews-title { display: none; }
.ys-customer-reviews #reviews { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.ys-customer-reviews #comments { min-width: 0; }
.ys-customer-reviews .commentlist { margin: 0; padding: 0; list-style: none; }
.ys-customer-reviews .commentlist li.review { margin: 0; padding: 24px 0; border-top: 1px solid var(--ys-line); }
.ys-customer-reviews .commentlist li.review:first-child { border-top: 0; padding-top: 0; }
.ys-customer-reviews .comment_container { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 16px; }
.ys-customer-reviews .comment_container > img.avatar { width: 52px !important; height: 52px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 50%; object-fit: cover; }
.ys-customer-reviews .comment-text {
    display: block !important;
    grid-column: 2;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
.ys-customer-reviews .star-rating { color: var(--ys-red); }
.ys-customer-reviews .meta { margin: 8px 0 10px !important; color: var(--ys-muted); font-size: 13px; }
.ys-customer-reviews .woocommerce-review__author { color: var(--ys-ink); }
.ys-customer-reviews .description > :first-child { margin-top: 0; }
.ys-customer-reviews .description > :last-child { margin-bottom: 0; }
.ys-customer-reviews .woocommerce-noreviews { margin: 0; padding: 24px; background: var(--ys-soft); color: var(--ys-muted); }
.ys-customer-reviews #review_form_wrapper { padding: 28px; background: var(--ys-soft); }
.ys-customer-reviews #reply-title { display: block; margin: 0 0 10px; font-family: SandvikSansHeadline, Arial, sans-serif; font-size: 28px; }
.ys-customer-reviews .comment-notes,
.ys-customer-reviews .must-log-in { color: var(--ys-muted); }
.ys-customer-reviews .woocommerce-verification-required {
    margin: 0;
    padding: 24px;
    background: var(--ys-soft);
    color: var(--ys-muted);
}
.ys-customer-reviews .comment-form-rating label,
.ys-customer-reviews .comment-form-comment label,
.ys-customer-reviews .comment-form-author label,
.ys-customer-reviews .comment-form-email label { display: block; margin-bottom: 8px; font-weight: 700; }
.ys-customer-reviews .comment-form-author input,
.ys-customer-reviews .comment-form-email input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    background: #fff;
}
.ys-customer-reviews .comment-form-author input[readonly],
.ys-customer-reviews .comment-form-email input[readonly] { background: #f4f4f4; color: var(--ys-muted); }
.ys-verified-review-note { margin: 0 0 20px; padding: 14px 16px; border-left: 4px solid var(--ys-red); background: #fff; color: var(--ys-muted); }
.ys-order-review-links { margin-top: 30px; padding: 26px; background: var(--ys-commerce-soft, #f5f5f3); }
.ys-order-review-links h2 { margin: 0 0 8px; }
.ys-order-review-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ys-customer-reviews .comment-form-rating .stars { margin: 0 0 18px; font-size: 20px; }
.ys-customer-reviews .comment-form-rating .stars a { color: var(--ys-red); }
.ys-customer-reviews textarea { width: 100%; min-height: 130px; padding: 12px 14px; border: 1px solid #bdbdbd; border-radius: 0; background: #fff; resize: vertical; }
.ys-customer-reviews .form-submit { margin-bottom: 0; }
.ys-customer-reviews .form-submit .submit { min-height: 46px; padding: 11px 22px !important; border: 0 !important; border-radius: 0 !important; background: var(--ys-red) !important; color: #fff !important; font-weight: 700; cursor: pointer; }
.ys-customer-reviews .form-submit .submit:hover { background: var(--ys-red-dark) !important; }

.ys-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ys-related-card { border: 1px solid var(--ys-line); background: #fff; }
.ys-related-image { display: block; aspect-ratio: 1; overflow: hidden; background: transparent; }
.ys-related-image img { display: block; width: 100%; height: 100%; padding: 0; object-fit: cover; transition: transform .3s ease; }
.ys-related-card:hover .ys-related-image img { transform: scale(1.04); }
.ys-related-card > div { padding: 20px; }
.ys-related-card h3 { margin: 0; font-size: 21px; }
.ys-related-card h3 a { color: var(--ys-ink) !important; text-decoration: none; }
.ys-related-price { margin: 10px 0 0; color: var(--ys-red); font-weight: 700; }

.ys-quote-modal {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ys-quote-modal.is-open { display: flex; }
.ys-quote-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .58); }

.ys-quote-dialog {
    position: relative;
    width: min(1024px, 96vw);
    height: min(800px, 90vh);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.ys-quote-dialog iframe { width: 100%; height: 100%; border: 0; }

.ys-quote-close {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ys-ink);
    font-size: 27px;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    cursor: pointer;
}

html.ys-modal-open { overflow: hidden !important; }

.ys-image-viewer {
    position: fixed;
    z-index: 100100;
    inset: 0;
    display: none;
    align-items: stretch;
    justify-content: stretch;
}

.ys-image-viewer.is-open { display: flex; }
.ys-image-viewer-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .92); }

.ys-image-viewer-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    color: #fff;
}

.ys-image-viewer-canvas {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: max(64px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    touch-action: pinch-zoom;
}

.ys-image-viewer-canvas img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.ys-image-viewer-close {
    position: absolute;
    z-index: 3;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--ys-ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

html.ys-image-viewer-open,
html.ys-image-viewer-open body { overflow: hidden !important; }

@media (min-width: 901px) and (max-width: 1100px) {
    .ys-application-point {
        grid-template-columns: minmax(0, 1fr) minmax(0, 515px);
    }
}

@media (max-width: 900px) {
    .ys-product-main { padding-top: 22px; }
    .ys-product-hero { grid-template-columns: 1fr; gap: 30px; padding-bottom: 48px; }
    .ys-product-stage { aspect-ratio: 1; }
    .ys-product-stage { cursor: zoom-in; }
    .ys-mobile-image-zoom { display: inline-flex; }
    .ys-product-summary h1 { font-size: 42px; }
    .ys-product-tabs .ys-tab-quote { display: none; }
    .ys-introduction-section,
    .ys-managed-section { grid-template-columns: 1fr; gap: 15px; }
    .ys-help-cta .ys-product-shell { grid-template-columns: 1fr; }
    .ys-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ys-applications-layout.has-image { grid-template-columns: 1fr; gap: 28px; }
    .ys-applications-content .ys-import-application-grid { grid-template-columns: 1fr; gap: 24px; }
    .ys-application-point { grid-template-columns: 1fr; gap: 14px; }
    .ys-application-point-images { justify-content: flex-start; }
    .ys-customer-reviews #reviews { grid-template-columns: 1fr; }
    .ys-zoom-lens,
    .ys-zoom-preview { display: none !important; }
}

@media (max-width: 640px) {
    .ys-product-shell { width: min(100% - 28px, 1240px); }
    .ys-product-main { padding-top: 12px; }
    .ys-product-hero { padding-top: 6px; }
    .ys-product-summary h1 { margin-bottom: 16px; font-size: 36px; }
    .ys-product-facts > div { grid-template-columns: 125px 1fr; gap: 10px; }
    .ys-shipping-note { flex-direction: column; gap: 3px; }
    .ys-buy-row,
    .ys-variable-purchase .woocommerce-variation-add-to-cart {
        grid-template-columns: 118px minmax(0, 1fr);
    }
    .ys-buy-row .ys-wishlist-button,
    .ys-variable-purchase .ys-variable-wishlist-inline {
        grid-column: 1 / -1;
        grid-row: 3;
    }
    .ys-buy-row .quantity,
    .ys-variable-purchase .woocommerce-variation-add-to-cart .quantity { width: auto; }
    .ys-buy-row .quantity .qty { width: 100%; }
    .ys-buy-row .ys-button { flex: 1 1 calc(50% - 5px); }
    .ys-variable-purchase .single_add_to_cart_button,
    .ys-variable-purchase .ys-variable-buy-now { flex: 1 1 calc(50% - 5px); }
    .ys-buy-row .ys-wishlist-button,
    .ys-variable-purchase .ys-variable-wishlist-inline { flex-basis: 100%; }
    .ys-product-tabs a { padding-block: 15px 13px; font-size: 14px; }
    .ys-product-information { padding-block: 50px 62px; }
    .ys-introduction-section { padding-bottom: 48px; }
    .ys-introduction-section h2,
    .ys-product-legacy #features::before,
    .ys-product-legacy #applications::before { font-size: 30px !important; }
    .ys-product-legacy #product-data h2::after { font-size: 30px; }
    .ys-applications-section h2 { font-size: 30px; }
    .ys-managed-section h2 { font-size: 30px; }
    .ys-product-legacy #features,
    .ys-product-legacy #applications,
    .ys-product-legacy #product-data { padding-block: 48px !important; }
    .ys-product-legacy #features .hidden.lg\:flex { flex-direction: column !important; }
    .ys-product-legacy #product-data table { min-width: 620px; }
    .ys-product-legacy #product-data .rounded-sm.overflow-hidden { overflow-x: auto !important; }
    .ys-managed-specifications .ys-managed-content { overflow-x: auto; }
    .ys-managed-specifications table { min-width: 620px; }
    .ys-help-cta { padding-block: 42px; }
    .ys-help-actions { flex-direction: column; }
    .ys-related-products { padding-block: 62px 72px; }
    .ys-customer-reviews { padding-block: 56px; }
    .ys-customer-reviews .ys-section-heading h2 { font-size: 32px; }
    .ys-customer-reviews #review_form_wrapper { padding: 22px 18px; }
    .ys-customer-reviews .comment_container { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
    .ys-customer-reviews .comment_container > img.avatar { width: 42px !important; height: 42px !important; }
    .ys-related-grid { grid-template-columns: 1fr; }
    .ys-product-thumbnails {
        gap: 8px;
    }
    .ys-product-thumb { flex-basis: 64px; width: 64px; }
    .ys-product-tabs .ys-product-shell {
        width: 100%;
        padding-inline: 14px;
    }
    .ys-product-tabs a {
        white-space: nowrap;
    }
    .ys-managed-content {
        font-size: 16px;
        line-height: 1.65;
    }
    .ys-related-card h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .ys-quote-modal {
        padding: 8px;
    }
    .ys-quote-dialog {
        width: 100%;
        height: calc(100dvh - 16px);
    }
}

@media (max-width: 420px) {
    .ys-product-summary h1 { font-size: 32px; }
    .ys-product-facts > div { grid-template-columns: 1fr; gap: 4px; }
    .ys-buy-row .ys-button,
    .ys-variable-purchase .single_add_to_cart_button,
    .ys-variable-purchase .ys-variable-buy-now,
    .ys-variable-purchase .ys-variable-wishlist-inline,
    .ys-variable-purchase > .ys-wishlist-button {
        width: 100%;
        flex: 1 1 100%;
    }
    .ys-variable-purchase .woocommerce-variation-add-to-cart .quantity {
        width: 100%;
    }
    .ys-variable-purchase .woocommerce-variation-add-to-cart .quantity .qty {
        width: 100%;
    }
    .ys-product-price { font-size: 26px; }
    .ys-payment-methods > span:first-child { flex-basis: 100%; }
}
