/* Shared section heading */
.cbl-section-head {
    text-align: center;
    margin: 0 auto 24px;
    position: relative;
}

.cbl-section-eyebrow {
    display: inline-block;
    color: var(--theme-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cbl-section-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--cbl-ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cbl-section-head p {
    /* color: var(--cbl-muted); */
    /* the container is full-bleed, so cap the reading measure or a long intro runs as
       one very wide line */
    max-width: 645px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.5;
}

/* About / story section */
.cbl-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    /* gap: 48px; */
    align-items: center;
}

.cbl-about h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--cbl-ink);
    margin: 8px 0 16px;
}

.cbl-about p {
    color: var(--cbl-muted);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    width: 80%;
}

.cbl-about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cbl-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cbl-about-list-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FE9746;
    color: #FFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.cbl-about-list span {
    color: var(--cbl-muted);
    line-height: 1.5;
    padding-top: 6px;
}

.cbl-about-list b {
    color: var(--cbl-ink);
}

.cbl-about-visual {
    position: relative;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(155deg, #1C2430 0%, #2A3648 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .cbl-about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cbl-about-visual {
        min-height: 220px;
        order: -1;
    }

    .cbl-about h2 {
        font-size: 26px;
    }
}

/* Compare block: category thumbnails (image + link) merged with product-type copy */
.cbl-compare {
    text-align: left;
}

.cbl-compare-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cbl-compare-arrow {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--cbl-border, #E6EAF0);
    background: #FFF;
    color: var(--cbl-ink, #1C2430);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .08);
    transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.cbl-compare-arrow:hover:not(:disabled) {
    background: var(--theme-color, #0BAF9A);
    border-color: var(--theme-color, #0BAF9A);
    color: #FFF;
}

.cbl-compare-arrow:disabled {
    opacity: .3;
    cursor: default;
    box-shadow: none;
}

.cbl-compare-nav.is-static .cbl-compare-arrow {
    display: none;
}

.cbl-compare-tabs {
    /* --cbl-tab-base is the natural tab width; JS stretches it into --cbl-tab-width so a
       whole number of tabs fills the strip and no tab is ever cut in half */
    --cbl-tab-base: 118px;
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 2px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* centre only while the row fits - centring an overflowing row clips the first tabs */
.cbl-compare-tabs.is-centered {
    justify-content: center;
}

.cbl-compare-tabs::-webkit-scrollbar {
    display: none;
}

.cbl-compare-tab {
    flex: 0 0 auto;
    width: 210px;
    padding: 0 0 10px;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: border-color .2s ease;
}

.cbl-compare-tab:focus-visible {
    outline: 2px solid var(--theme-color, #0BAF9A);
    outline-offset: 3px;
    border-radius: 12px;
}

.cbl-compare-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cbl-surface, #F3F6FB);
    border: 1px solid var(--cbl-border, #E6EAF0);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cbl-compare-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cbl-compare-tab:hover .cbl-compare-thumb {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .12)
}

.cbl-compare-tab-label {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    /* color: var(--cbl-muted, #64748B); */
    transition: color .2s ease;
}

.cbl-compare-tab.is-active {
    border-bottom-color: var(--theme-color, #0BAF9A);
}

.cbl-compare-tab.is-active .cbl-compare-thumb {
    border-color: var(--theme-color, #0BAF9A);
}

.cbl-compare-tab.is-active .cbl-compare-tab-label {
    color: var(--cbl-ink, #1C2430);
    font-weight: 700;
}

.cbl-compare-scrollbar {
    position: relative;
    height: 6px;
    margin: 14px 46px 0;
    border-radius: 999px;
    background: #E9EDF3;
    cursor: pointer;
}

.cbl-compare-scrollbar.is-hidden {
    display: none;
}

.cbl-compare-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 40px;
    border-radius: 999px;
    background: #B8C2CE;
    transition: background .2s ease;
}

.cbl-compare-scrollbar:hover .cbl-compare-scrollbar-thumb {
    background: #94A1B2;
}

.cbl-compare-panels {
    margin-top: 28px;
}

.cbl-compare-panel {
    display: none;
}

.cbl-compare-panel.is-active {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    animation: cblCompareIn .35s ease both;
}

@keyframes cblCompareIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.cbl-compare-visual {
    display: block;
    width: 100%;
    max-width: 560px;
    justify-self: center;
    aspect-ratio: 16 / 15;
    border-radius: 18px;
    overflow: hidden;
    background: var(--cbl-surface, #F3F6FB);
    border: 1px solid var(--cbl-border, #E6EAF0);
}

.cbl-compare-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.cbl-compare-visual:hover img {
    transform: scale(1.04);
}

.cbl-compare-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.cbl-compare-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: rgba(13, 164, 135, .1);
    color: var(--theme-color, #0BAF9A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cbl-compare-heading h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--cbl-ink, #1C2430);
}

.cbl-compare-subhead {
    font-size: 16px;
    font-weight: 700;
    color: var(--cbl-ink, #1C2430);
    margin-bottom: 12px;
}

.cbl-compare-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cbl-compare-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* color: var(--cbl-muted, #64748B); */
    font-size: 15px;
    line-height: 1.5;
}

.cbl-compare-highlights li i {
    flex: none;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(13, 164, 135, .12);
    color: var(--theme-color, #0BAF9A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

/* badge strip is 2042x380, so a block of its own above the button rather than beside it */
.cbl-compare-trust {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 0 22px;
}

.cbl-compare-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* secondary action beside the blue Browse more button - red reads as the warmer, more
   urgent call to action without competing with the blue primary */
.cbl-compare-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(198, 40, 40, .40);
    border-radius: 5px;
    background: #FEF3F2;
    color: #B3261E;
    font-weight: 500;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cbl-compare-inquire:hover,
.cbl-compare-inquire:focus-visible {
    background: #C62828;
    border-color: #C62828;
    color: #FFF;
    box-shadow: 0 6px 16px rgba(198, 40, 40, .30);
    transform: translateY(-1px);
}

.cbl-compare-inquire:focus-visible {
    outline: 3px solid rgba(198, 40, 40, .35);
    outline-offset: 2px;
}

.cbl-compare-inquire:active {
    background: #de2727;
    border-color: #de2727;
    box-shadow: none;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .cbl-compare-inquire {
        transition: none;
    }

    .cbl-compare-inquire:hover,
    .cbl-compare-inquire:focus-visible {
        transform: none;
    }
}

.cbl-compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.cbl-compare-btn i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform .2s ease;
}

.cbl-compare-btn:hover i {
    transform: translateX(4px);
}

.cbl-cat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B7C0CB;
    font-size: 32px;
    background: var(--cbl-surface, #F3F6FB);
}

@media (max-width: 991px) {
    .cbl-compare-panel.is-active {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cbl-compare-visual {
        max-width: 560px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
    }

    .cbl-compare-heading h3 {
        font-size: 22px;
    }

    .cbl-compare-trust {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .cbl-compare-nav {
        gap: 6px;
    }

    .cbl-compare-arrow {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .cbl-compare-tabs {
        --cbl-tab-base: 96px;
    }

    .cbl-compare-tab-label {
        font-size: 12.5px;
    }

    .cbl-compare-scrollbar {
        margin: 12px 38px 0;
    }

    .cbl-compare-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .cbl-compare-heading h3 {
        font-size: 20px;
    }

    .cbl-compare-highlights li {
        font-size: 14px;
    }

    .cbl-compare-actions {
        gap: 10px;
    }

    .cbl-compare-btn,
    .cbl-compare-inquire {
        width: 100%;
    }

    .custom-quote-section #quote_form {
        padding: 0 !important;
        border: none !important;
    }

    .contact-box-section .right-sidebar-box {
        background: #F8F8F8 !important;
    }
}

/* Product slider (cards keep their existing .product-box-5 styling, this just fixes layout/sizing) */
.slider-6 .slick-slide {
    padding: 0 11px;
}

.slider-6 .slick-list {
    margin: 0 -11px;
    padding: 10px 0 30px;
}

.slider-6 .product-box-5 {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFF;
    /* border: 1px solid var(--cbl-border); */
    /* border-radius: 14px; */
    /* padding: 16px; */
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease;
}

.slider-6 .product-box-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, .09);
}

.slider-6 .product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 10px;
    margin-bottom: 14px;
}

.slider-6 .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-6 .product-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* .slider-6 .add-to-cart-box {
    margin-top: 14px;
} */

.product-box-5 .product-detail a {
    margin-top: 0 !important;
}

/* Trust / features strip */
.cbl-features {
    background: #FFF8EE;
}

.cbl-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.cbl-feature-card {
    min-width: 0;
    background: #FFF;
    border: 1px solid var(--cbl-border);
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
}

.cbl-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    background: rgba(13, 164, 135, .1);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.cbl-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--cbl-ink);
    margin-bottom: 8px;
}

.cbl-feature-card p {
    color: var(--cbl-muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.sk {
    position: relative;
    overflow: hidden;
    display: block;
    background-color: #E9ECEF;
    border-radius: 8px;
}

.sk::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        #F6F7F9 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: sk-shimmer 1.4s ease-in-out infinite;
}

@keyframes sk-shimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sk::after {
        animation: none;
    }
}

.sk-h {
    height: 14px;
}

.sk-h-lg {
    height: 22px;
}

.sk-h-xl {
    height: 40px;
}

.sk-field {
    height: 44px;
}

.sk-textarea {
    height: 90px;
}

.sk-btn {
    height: 44px;
}

.sk-pill {
    height: 18px;
    border-radius: 20px;
}

.sk-thumb {
    aspect-ratio: 4/3;
}

.sk-thumb-sq {
    aspect-ratio: 1/1;
}

.sk-image {
    height: clamp(140px, 16vw, 260px);
}

.sk-row-faq {
    height: 52px;
}

#skeleton-loader, #page-content {
    transition: opacity .35s ease;
}

#skeleton-loader {
    overflow: hidden;
    background: #FFF;
}

#page-content {
    display: none;
    opacity: 0;
    pointer-events: none;
    width: 100%;
}

body.is-loaded #skeleton-loader {
    opacity: 0;
    pointer-events: none;
}

body.is-loaded #page-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.contact-us-button, .cbl-btn-outline {
    font-size: 15px;
    font-weight: 600 !important;
    padding: 12px;
}

.contact-box-section.mt-0.custom-quote-section.cbl-hero.section-b-space {
    padding-top: 0 !important;
}

/* the theme pads .breadcrumb-contain and pulls it back with a negative margin, which
   leaves the trail ~11px right of the container edge - drop the horizontal half of both
   so it starts exactly where the hero copy does, and keep the vertical rhythm */
.breadcrumb-section .breadcrumb-contain {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.product-section.product-section-3 {
    padding-bottom: calc(30px + 20 * (100vw - 320px) / 1600);
}

.product-box-5 .product-detail a h5 {
    margin-bottom: 0;
}

h5 {
    font-size: calc(14px + 1 * (100vw - 320px) / 1600);
}

/* Industry content sections (product types / styles / materials / industries served) */
.cbl-info-card {
    min-width: 0;
    background: #FFF;
    border: 1px solid var(--cbl-border);
    border-radius: 14px;
    padding: 24px 22px;
}

.cbl-info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: #0EA4E11F;
    color: #35C6F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin: 0 auto 16px;
}

.cbl-info-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--cbl-ink);
    margin-bottom: 8px;
}

.cbl-info-card p {
    color: var(--cbl-muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Box styles / materials list (no icon, plain heading + copy) */
.cbl-plain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    text-align: left;
}

.cbl-plain-card {
    min-width: 0;
    background: var(--cbl-surface);
    border-radius: 12px;
    padding: 20px;
}

.cbl-plain-card h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--cbl-ink);
    margin-bottom: 6px;
}

.cbl-plain-card p {
    color: var(--cbl-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Finishes pill list */
.cbl-pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cbl-pill-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F4FFFD;
    border: 1px solid var(--cbl-border);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cbl-ink);
}

.cbl-pill-list li i {
    color: var(--theme-color);
    font-size: 13px;
}

/* Why buy text block */
.cbl-text-block {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.cbl-text-block p {
    color: var(--cbl-muted);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    font-style: italic;
}

.cbl-text-block p:last-child {
    margin-bottom: 0;
}

/* Intro pull-quote card */
.cbl-intro-quote {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 34px 34px;
    border-radius: 8px;
    background: #efeffe73;
    text-align: left;
}

.cbl-intro-quote-mark {
    display: block;
    margin-bottom: -6px;
    color: #111113;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.cbl-intro-quote blockquote {
    margin: 0;
}

.cbl-intro-quote p {
    margin: 0;
    color: #111113;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

.cbl-intro-quote-by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    color: #111113;
    font-size: 15px;
    font-weight: 700;
}

.cbl-intro-quote-avatar {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #DCDCDE;
    color: #A4A4AB;
    font-size: 12px;
}

@media (max-width: 767px) {
    .cbl-intro-quote {
        padding: 24px 20px 26px;
    }
    .cbl-about p{
        width: 100%;
    }
    .cbl-intro-quote-mark {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .cbl-intro-quote p {
        font-size: 15px;
        line-height: 1.5;
    }

    .cbl-intro-quote-by {
        margin-top: 20px;
        font-size: 14px;
    }
}

/* Get started steps */
.cbl-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto 32px;
    counter-reset: cbl-step;
}

.cbl-step {
    text-align: center;
    padding: 0 10px;
}

.cbl-step::before {
    counter-increment: cbl-step;
    content: counter(cbl-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cbl-ink);
    color: #FFF;
    font-weight: 700;
    margin: 0 auto 12px;
}

.cbl-step span {
    display: block;
    color: var(--cbl-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* FAQ accordion */
.cbl-faq-list {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.cbl-faq-item {
    border: 1px solid var(--cbl-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.cbl-faq-item[open] {
    border-color: var(--theme-color);
}

.cbl-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--cbl-ink);
}

.cbl-faq-item summary::-webkit-details-marker {
    display: none;
}

.cbl-faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme-color);
    flex: none;
    transition: transform .2s ease;
}

.cbl-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.cbl-faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--cbl-muted);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .cbl-pill-list {
        justify-content: flex-start;
    }
}

.cbl-split-copy {
    text-align: left;
}

.cbl-split-copy .title-after {
    width: 64%;
}

.cbl-split-copy .title-after:after {
    left: 40%;
    width: 20%;
}

.mw-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    /* the artwork is 550x550 - capping the box keeps it from being scaled up and softened */
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    background: #F1F1F2;
    color: #C4C4C8;
}

.mw-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-media svg {
    width: 46px;
    height: 46px;
}

/* Numbered list with the active row accented */
.mw-steps {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid #E6E6E8;
}

.mw-step {
    position: relative;
    padding: 14px 0 14px 20px;
    width: 100%;
}

.mw-step + .mw-step {
    border-top: 1px solid #E6E6E8;
}

.mw-step::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
}

.mw-step.is-active::before {
    background: #0DA487;
}

.mw-step.is-active {
    color: #0DA487;
}

.mw-step-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.mw-step-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.mw-step-body {
    padding-top: 10px;
}

.mw-step:not(.is-active) .mw-step-body {
    display: none;
}

/* Two feature panels */
.mw-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    text-align: left;
}

.mw-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 28px;
    border-radius: 10px;
    background: #efeffe73;
}

.mw-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #E2E2E5;
    color: var(--theme-color, #0DA487);
    font-size: 17px;
}

.mw-panel-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .mw-panel {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .mw-panels {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .mw-panel {
        padding: 20px;
        border-radius: 9px;
    }

    .mw-panel-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 18px;
        font-size: 15px;
    }

    .mw-panel-title {
        font-size: 15.5px;
    }
}

.mw-text {
    margin: 0;
    /* color: #6D6D73; */
    font-size: 15px;
    line-height: 1.5;
}

/* Inline "Show me" link */
.mw-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-bottom: 3px;
    border-bottom: 1px solid #111113;
    color: #111113;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.mw-link svg {
    transition: transform .2s ease;
}

.mw-link:hover {
    color: #111113;
}

.mw-link:hover svg {
    transform: translateX(3px);
}

/* Columns split by vertical rules (get started steps) */
.mw-divgrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.mw-divcol {
    padding: 0 26px;
}

.mw-divcol + .mw-divcol {
    border-left: 1px solid #E6E6E8;
}

.mw-divcol-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--theme-color, #0DA487);
    color: #FFF;
    font-size: 17px;
    font-weight: 700;
}

.mw-divcol-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
}

.mw-divcol .mw-text {
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    /* two per row: a rule down the middle, a rule between the rows */
    .mw-divgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mw-divcol {
        padding: 26px 18px;
    }

    .mw-divcol + .mw-divcol {
        border-left: 0;
    }

    .mw-divcol:nth-child(even) {
        border-left: 1px solid #E6E6E8;
    }

    .mw-divcol:nth-child(n + 3) {
        border-top: 1px solid #E6E6E8;
    }
}

@media (max-width: 575px) {
    /* one per row: every rule becomes a divider between stacked steps */
    .mw-divgrid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mw-divcol {
        padding: 24px 0;
    }

    .mw-divcol:nth-child(even) {
        border-left: 0;
    }

    .mw-divcol + .mw-divcol {
        border-top: 1px solid #E6E6E8;
    }

    .mw-divcol .mw-text {
        max-width: none;
    }
}

.mw-triptych {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.mw-triptych-col {
    display: grid;
    gap: 46px;
}

.mw-tri-item {
    text-align: center;
}

.mw-tri-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #7291C394;
}

.mw-tri-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* the heading links through to that material's stock page - the underline sweeps out
   from the middle so it reads with the centred card */
.mw-tri-title a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(var(--theme-color, #0DA487), var(--theme-color, #0DA487));
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 0 2px;
    transition: color .2s ease, background-size .25s ease;
}

.mw-tri-title a:hover,
.mw-tri-title a:focus-visible {
    color: var(--theme-color, #0DA487);
    background-size: 100% 2px;
}

.mw-tri-title a:focus-visible {
    outline: 2px solid var(--theme-color, #0DA487);
    outline-offset: 4px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .mw-tri-title a {
        transition: none;
    }
}

.mw-tri-item .mw-text {
    max-width: 350px;
    margin: 0 auto;
}

.mw-tri-item .mw-link {
    margin-top: 16px;
}

.mw-tri-media {
    display: flex;
    align-items: center;
    justify-content: center;
    /* the artwork is square (1719x1719) and fitted whole rather than cropped, so the frame
       matches it - any taller and the extra height is just dead space */
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    color: #C6C6CB;
}

.mw-tri-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mw-tri-media svg {
    width: 44px;
    height: 44px;
}

.section-custom-space {
    padding-bottom: calc(20px + 10 * (100vw - 320px) / 1600);
}

@media (max-width: 992px) {
    /* the image leads, the four items sit beneath it in two columns */
    .mw-triptych {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .mw-tri-media {
        grid-column: 1 / -1;
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .mw-triptych-col {
        gap: 34px;
    }
}

@media (max-width: 767px) {
    .mw-steps {
        margin-top: 20px;
    }

    .mw-step-body {
        padding-left: 0;
    }

    .mw-triptych {
        gap: 28px 16px;
    }

    .mw-tri-media {
        max-width: 320px;
    }

    .mw-tri-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    .mw-tri-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mw-tri-item .mw-text {
        max-width: none;
    }

    .mw-triptych-col {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .mw-triptych {
        grid-template-columns: minmax(0, 1fr);
    }
}

.add-to-cart-box{
    background-color: unset !important;
}
