@charset "UTF-8";

.exp-product {
    background: linear-gradient(to bottom, #e7e9eb 0%, #ffffff 420px, #ffffff 100%);
    padding: 40px 0 72px;
}
.exp-product__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

body.exp-product-page .products-menu,
body.exp-product-page .products-spacer {
    display: none !important;
}

body.exp-product-page .products-menu-hidden {
    display: none !important;
}

/* --------------------------------------------------------------------------
   2. Hero card — gallery (left) + configurator panel (right)
   -------------------------------------------------------------------------- */
.exp-product__hero {
    display: grid;
    grid-template-columns: calc(50% - 24px) calc(50% - 24px);
    gap: 48px;
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1100px) {
    .exp-product__hero {
        grid-template-columns: 100%;
        gap: 32px;
        padding: 28px;
    }
}
@media (max-width: 768px) {
    .exp-product__hero {
        padding: 18px;
        gap: 24px;
        border-radius: 10px;
    }
}

.exp-product__gallery {
    min-width: 0;
}

@media (min-width: 1101px) {
    .exp-product__gallery {
        position: sticky;
        top: calc(var(--header-height, 124px) + 20px);
        align-self: start;
    }
}
.exp-product__panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.exp-product__gallery-source,
.exp-product__gallery .products-slider-thumbs,
.exp-product__gallery .products-slider-nav__footer {
    display: none !important;
}

/* main image slider */
.exp-product__gallery-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f3f4f6;
}
.exp-product__gallery-slide,
.exp-product__gallery-slide-link {
    display: block;
    position: relative;
}
.exp-product__gallery-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    -o-object-fit: cover;
    object-fit: cover;
}
/* play affordance on a video slide */
.exp-product__gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 176, 240, 0.92)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
        center/28px no-repeat;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
/* main slider arrows — thin white chevrons, no chrome */
.exp-product__gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}
/* chevron drawn via a mask so its colour can flip on hover (blue -> white) */
.exp-product__gallery-arrow::after {
    content: '';
    width: 17px;
    height: 17px;
    background-color: var(--color-primary);
    -webkit-mask: var(--gallery-chevron) center / contain no-repeat;
    mask: var(--gallery-chevron) center / contain no-repeat;
    transition: background-color 0.25s ease;
}
.exp-product__gallery-arrow:hover {
    background: var(--color-primary);
    box-shadow: 0 8px 22px rgba(0, 176, 240, 0.4);
    transform: translateY(-50%) scale(1.08);
}
.exp-product__gallery-arrow:hover::after {
    background-color: #fff;
}
.exp-product__gallery-arrow:active {
    transform: translateY(-50%) scale(0.96);
}
.exp-product__gallery-arrow.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
.exp-product__gallery-arrow--prev {
    left: 14px;
    --gallery-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18 9 12l6-6'/%3E%3C/svg%3E");
}
.exp-product__gallery-arrow--next {
    right: 14px;
    --gallery-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}

/* ---- thumbnail strip ---- */
.exp-product__gallery-thumbs-wp {
    margin-top: 18px;
}
.exp-product__gallery-label {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.exp-product__gallery-thumbs {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.exp-product__gallery-thumb {
    width: 100px;
    overflow: hidden;
    cursor: pointer;
    /* active state is a top accent line (per design), not an all-round border */
    border-top: 3px solid transparent;
    transition: border-color 0.2s ease;
}
@media (max-width: 480px) {
    .exp-product__gallery-thumb {
        width: 72px;
    }
}
.exp-product__gallery-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
    object-fit: cover;
}
.exp-product__gallery-thumb.swiper-slide-thumb-active {
    border-top-color: var(--color-primary);
}
.exp-product__gallery-thumb--video {
    position: relative;
}
.exp-product__gallery-thumb--video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 176, 240, 0.92)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E")
        center/12px no-repeat;
    pointer-events: none;
}
/* blue square nav buttons on the thumb strip (per design) */
.exp-product__gallery-thumb-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: var(--color-primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.exp-product__gallery-thumb-nav:hover {
    background-color: var(--color-primary-dark);
}
.exp-product__gallery-thumb-nav.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
.exp-product__gallery-thumb-nav--prev {
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18 9 12l6-6'/%3E%3C/svg%3E");
}
.exp-product__gallery-thumb-nav--next {
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. Configurator panel head — product title + actions
   -------------------------------------------------------------------------- */
.exp-product__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 8px;
}
.exp-product__panel-head .pi-code-top {
    display: block;
    color: var(--color-text);
    font: 700 26px/1.2 var(--font-family-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.exp-product__panel-head .pi-code-top span {
    color: #b9bdc3;
    font-weight: 400;
    padding: 0 6px;
}
.exp-product__panel-head .pi-code-top font {
    color: #6f7378;
    font-size: 0.7em;
    font-weight: 600;
}
@media (max-width: 480px) {
    .exp-product__panel-head .pi-code-top {
        font-size: 20px;
    }
}
/* favourite + share icons — the real .pcfi-* controls live here (see product.html) */
.exp-product__panel-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.exp-product__panel-actions .exp-product__icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.exp-product__panel-actions .exp-product__icon-btn:hover {
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.exp-product__panel-actions .pcfi-favorites svg {
    fill: none;
    stroke: var(--color-primary);
    transition: fill 0.2s ease;
}
.exp-product__panel-actions .pcfi-favorites.pcfi-favorites-d svg {
    fill: var(--color-primary);
}
.exp-product__panel-actions .pcfi-share svg {
    fill: none;
    stroke: var(--color-primary);
}

/* --------------------------------------------------------------------------
   4. Tabs -> CONFIGURATOR / SPEC SHEET / DOWNLOADS pills
   -------------------------------------------------------------------------- */
.exp-product__panel .products-wp {
    background: none !important;
    top: 0 !important;
}
.exp-product__panel .product-tabs {
    display: flex;
    gap: 12px;
    padding: 18px 0 0;
    border-bottom: none;
}
.exp-product__panel .product-tabs a {
    flex: 1;
    /* !important so it beats the legacy `.product-tabs A:link {width:190px}`
       (equal specificity) regardless of cascade order */
    width: auto !important;
    min-width: 0;
    padding: 14px 12px;
    text-align: center;
    background: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font: 600 13px/1.2 var(--font-family-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
/* kill the legacy hover overlay + divider + close icon */
.exp-product__panel .product-tabs a::before,
.exp-product__panel .product-tabs a::after {
    display: none !important;
}
.exp-product__panel .product-tabs a span {
    display: none !important;
}
.exp-product__panel .product-tabs a:hover {
    background: rgba(0, 176, 240, 0.08);
}
.exp-product__panel .product-tabs a.selected {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
@media (max-width: 480px) {
    .exp-product__panel .product-tabs a {
        padding: 12px 6px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

.exp-product__panel .product-cnt {
    position: relative;
    padding: 0 8px 0 0 !important;
    min-height: 200px;
}

@media (min-width: 1101px) {
    .exp-product__panel .product-cnt:has(.pi-configurator) {
        max-height: 560px;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #b9c0c7 transparent;
    }
    .exp-product__panel .product-cnt:has(.pi-configurator)::-webkit-scrollbar {
        width: 8px;
    }
    .exp-product__panel .product-cnt:has(.pi-configurator)::-webkit-scrollbar-track {
        background: #edeef0;
        border-radius: 8px;
    }
    .exp-product__panel .product-cnt:has(.pi-configurator)::-webkit-scrollbar-thumb {
        background: #b9c0c7;
        border-radius: 8px;
    }
    .exp-product__panel .product-cnt:has(.pi-configurator)::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary);
    }
}

/* --------------------------------------------------------------------------
   5. Configurator body (AJAX-injected legacy markup — override style.css)
   -------------------------------------------------------------------------- */
.product-cnt .pi-configurator {
    padding: 22px 0 40px !important;
}
/* login notice -> inline pill, not absolutely positioned */
.product-cnt .pic-header {
    position: static;
}
.product-cnt .pic-login {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--accent-background-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
}
.product-cnt .pic-login a {
    color: var(--color-primary);
    font-weight: 600;
}

/* expand row + quick-ship toggle */
.product-cnt .pic-expand {
    width: 100%;
    padding: 6px 0 14px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.product-cnt .pic-expand > a {
    align-self: center;
    padding: 0;
    color: var(--color-primary);
    font: 600 12px/1 var(--font-family-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.product-cnt .qs-switch-wp {
    width: auto;
    margin: 0;
}
.product-cnt .qs-switch {
    margin-right: 0;
}
.product-cnt .qs-switch-lbl {
    color: var(--color-text-light);
}

/* the accordion */
.product-cnt .pi-configurator-wp {
    border-top: none;
}
.product-cnt .pic-block {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
}
.product-cnt .picb-lbl {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 40px 16px 0 !important;
    border-right: none;
    color: var(--color-primary);
    font: 600 14px/1.3 var(--font-family-main);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}
.product-cnt .picb-lbl:hover {
    background: none;
    color: var(--color-primary-dark);
}
/* keep the legacy auto-number ("1. ") but tint it */
.product-cnt .picb-lbl::before {
    color: var(--color-primary);
    font-weight: 700;
}
/* chevron */
.product-cnt .picb-lbl::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2300b0f0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
        center/contain no-repeat;
    transition: transform 0.25s ease;
}
.product-cnt .pic-block:has(.picb-values-wp[style*='block']) .picb-lbl::after {
    transform: translateY(-50%) rotate(180deg);
}

.product-cnt .picb-lbl.completed {
    color: var(--color-primary-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%2300b0f0'/%3E%3Cpath d='M7 12.4l3.3 3.3L17 8.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 32px center;
    background-size: 18px 18px;
    padding-right: 58px !important;
}
.product-cnt .picb-summary {
    display: inline;
    color: var(--color-text-light);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
/* hide the legacy bouncing "next step" arrow (clutter in the new look) */
.product-cnt .cfg-arrow-wp {
    display: none !important;
}

/* option values */
.product-cnt .picb-values-wp {
    padding: 4px 0 18px !important;
}
.product-cnt .picb-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* equalise every row to the tallest option so all cards are the same size */
    grid-auto-rows: 1fr;
    gap: 8px;
}
@media (max-width: 600px) {
    .product-cnt .picb-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 400px) {
    .product-cnt .picb-values {
        grid-template-columns: 1fr;
    }
}
.product-cnt .picb-values-item {
    width: auto !important;
    padding: 0 !important;
    /* stretch the card to fill the (equal-height) grid cell */
    display: flex;
}
.product-cnt .picb-values-link {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    gap: 2px;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.product-cnt .pic-active .picb-values-link:hover {
    border-color: var(--color-primary);
    background: rgba(0, 176, 240, 0.05);
}
.product-cnt .picb-values-link label {
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 700;
    color: inherit;
    cursor: inherit;
}
.product-cnt .picb-values-link .picb-values-notes {
    padding: 0 !important;
    font-size: 12px;
    color: var(--color-text-light);
}
.product-cnt .picb-values-link.active,
.product-cnt .pic-active .picb-values-item a.active {
    border-color: var(--color-primary);
    background: rgba(0, 176, 240, 0.08);
}
.product-cnt .pic-active .picb-values-item a.active label {
    color: var(--color-primary-dark);
}
.product-cnt .picb-values-price {
    padding: 4px 0 0 !important;
    color: #fc5353;
    font-weight: 600;
}
.product-cnt .picb-disabled .picb-values-link {
    opacity: 0.45;
}

.product-cnt .picb-values:has(.picb-values-link img) {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 18px 12px;
}
.product-cnt .picb-values-link:has(img) {
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 0 0 4px !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
}
.product-cnt .picb-values-link img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.product-cnt .pic-active .picb-values-link:has(img):hover img {
    border-color: rgba(0, 176, 240, 0.5);
}
.product-cnt .picb-values-link.active img,
.product-cnt .pic-active .picb-values-item a.active img {
    border-color: var(--color-primary);
}
.product-cnt .picb-values-link:has(img) label {
    font-weight: 600;
}
.product-cnt .picb-values-link:has(img) .picb-values-notes {
    letter-spacing: 0.3px;
}

/* ---- quote / save form ---- */
.product-cnt .pic-save-wp {
    display: block;
    padding-top: 22px;
}
.product-cnt .pic-save {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
}
.product-cnt .pic-save-inner {
    padding: 22px 24px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--accent-background-color);
}
.product-cnt .pn-num {
    padding: 0 0 16px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 700;
}
.product-cnt .pn-num label {
    color: var(--color-text-light);
    font-weight: 600;
}
.product-cnt .pn-num div {
    margin: 0;
    padding: 4px 12px;
    background: #fff;
    border-radius: 6px;
}
.product-cnt .pic-save-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 24px;
}
@media (max-width: 600px) {
    .product-cnt .pic-save-form {
        grid-template-columns: 1fr;
    }
}
.product-cnt .pic-save-form .pics-block {
    width: 100% !important;
}
.product-cnt .pic-save-form .pics-price {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}
.product-cnt .pic-save-form .pics-price > label {
    float: none !important;
    width: 64px !important;
    flex: 0 0 64px;
    padding: 0 !important;
    text-align: right !important;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
}
.product-cnt .pic-save-form .pics-unlogged {
    float: none !important;
    width: auto !important;
    flex: 1;
    min-width: 0;
}
.product-cnt .pic-save-form .pics-unlogged input,
.product-cnt .pic-save-form .pics-unlogged select,
.product-cnt .pic-save-form .pics-unlogged-input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px !important;
    background: #fff !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 6px;
    font: 400 13px/1.3 var(--font-family-main);
    color: var(--color-text);
    min-height: 36px;
    height: auto !important;
}
.product-cnt .pic-save-form .pics-unlogged .info {
    right: -24px;
}
.product-cnt .br.clear,
.product-cnt .pic-save-form br.clear {
    display: none;
}
.product-cnt .pic-save-note {
    height: auto;
    margin-top: 14px;
}
.product-cnt .pic-save-note div {
    position: static;
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.5;
}
.product-cnt .pic-save-note a {
    color: var(--color-primary);
}

/* totals / price (logged-in users) */
.product-cnt #price,
.product-cnt #total {
    font-weight: 700;
    color: var(--color-text);
}

/* action buttons */
.product-cnt .pic-save-btns {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-cnt .pic-save-btn-f,
.product-cnt a.pic-save-btn-f {
    flex: 1;
    min-width: 160px;
    width: auto !important;
    margin: 0 !important;
    padding: 13px 20px !important;
    border-radius: 50px;
    background: var(--color-primary);
    color: #fff;
    font: 600 13px/1 var(--font-family-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.product-cnt .pic-save-btn-f:hover,
.product-cnt a.pic-save-btn-f:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 10px 24px rgba(0, 176, 240, 0.28);
    transform: translateY(-2px);
}
.product-cnt .picb-apply {
    display: none !important;
}

/* loading overlay tint to brand */
.product-cnt .pi-configurator-loading::after {
    border-top-color: var(--color-primary) !important;
}

.product-cnt .product-details {
    padding: 18px 0 0 !important;
}
.product-cnt .specifications-share {
    display: inline-flex;
    align-items: center;
    width: auto !important;
    margin: 0 0 16px !important;
    padding: 11px 26px !important;
    border-radius: 50px;
    background: var(--color-primary) !important;
    color: #fff !important;
    font: 600 13px/1 var(--font-family-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.25s ease;
}
.product-cnt .specifications-share:hover {
    background: var(--color-primary-dark) !important;
}
.product-cnt .pi-frame {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.product-cnt .pi-frame iframe {
    width: 100%;
    height: 620px;
    border: 0;
    border-radius: 8px;
}

/* Downloads tab */
.product-cnt .product-downloads,
.product-cnt .product-downloads-label {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.product-cnt .product-downloads-label {
    font-size: 20px;
}

.product-cnt:has(.product-downloads) {
    padding-top: 22px !important;
}

/* --------------------------------------------------------------------------
   6. About this Product + Quick Facts
   -------------------------------------------------------------------------- */
.exp-product__about {
    margin-top: 64px;
}
.exp-product__about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
@media (max-width: 900px) {
    .exp-product__about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .exp-product__about {
        margin-top: 44px;
    }
}
.exp-product__about-title {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text);
    margin: 0 0 24px;
}
.exp-product__about-title b,
.exp-product__about-title strong,
.exp-product__about-title .accent {
    color: var(--color-primary);
    font-weight: 700;
}
.exp-product__about-desc {
    font-family: var(--font-family-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
}
.exp-product__about-desc p {
    margin: 0 0 14px;
}

.exp-product__facts {
    background: none;
    padding: 0 12px 0 0;
    max-height: 340px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b9c0c7 transparent;
}
.exp-product__facts::-webkit-scrollbar {
    width: 8px;
}
.exp-product__facts::-webkit-scrollbar-track {
    background: #edeef0;
    border-radius: 8px;
}
.exp-product__facts::-webkit-scrollbar-thumb {
    background: #b9c0c7;
    border-radius: 8px;
}
.exp-product__facts::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}
.exp-product__facts .pi-code,
.exp-product__facts .pi-title {
    display: none; /* the design's facts list has no "Quick Facts" heading */
}
.exp-product__facts .pcf-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.exp-product__facts .pcf-info li {
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}
.exp-product__facts .pcf-info li:last-child {
    border-bottom: none;
}
/* accordion header (clickable key + chevron) */
.exp-product__facts .exp-product__fact-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 2px 15px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family-main);
}
.exp-product__facts .exp-product__fact-key {
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
}
.exp-product__facts .exp-product__fact-chev {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
        center/contain no-repeat;
    transition: transform 0.25s ease;
}
.exp-product__facts .exp-product__fact.is-open .exp-product__fact-chev {
    transform: rotate(180deg);
}
/* collapsible body (the value) */
.exp-product__facts .exp-product__fact-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.exp-product__facts .exp-product__fact.is-open .exp-product__fact-body {
    max-height: 320px;
}
.exp-product__facts .exp-product__fact-body-inner {
    padding: 0 2px 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
}
.exp-product__facts .pcf-tags {
    padding: 12px 0 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.exp-product__facts .pcf-tags a {
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-text-light);
}

.exp-product__facts .pcf-icons {
    display: none;
}
.exp-product__facts .p-thumbs-wp {
    display: none;
}

/* --------------------------------------------------------------------------
   7. Featured Projects — reuses exp-projects-swiper (auto-init in main.js)
   -------------------------------------------------------------------------- */
.exp-product__featured {
    margin-top: 64px;
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    overflow: hidden;
}
@media (max-width: 768px) {
    .exp-product__featured {
        margin-top: 44px;
    }
}

.exp-product__featured .exp-product__section-head {
    padding: 0 var(--container-padding);
}

.exp-product__section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.exp-product__section-title {
    font-family: var(--font-family-main);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exp-product__section-subtitle {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
}
.exp-product__section-subtitle .accent {
    color: var(--color-primary);
    font-weight: 600;
}
@media (max-width: 768px) {
    .exp-product__section-subtitle {
        font-size: 15px;
    }
}
.exp-product__featured .exp-projects-swiper {
    padding: 0;
    overflow: visible;
}
.exp-product__featured .exp-projects-swiper__swiper-wrapper {
    padding: 0 60px;
}

/* --------------------------------------------------------------------------
   8. Fixture Highlight — clickable YouTube poster (mirrors exp-our-story video)
   -------------------------------------------------------------------------- */
.exp-product__highlight {
    margin-top: 64px;
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    padding: 56px var(--container-padding) 64px;
    background: linear-gradient(to bottom, #c4d1da 0%, #e6ecef 70%, #f4f7f8 100%);
}
@media (max-width: 768px) {
    .exp-product__highlight {
        margin-top: 44px;
        padding: 40px var(--container-padding) 44px;
    }
}
.exp-product__highlight-video {
    max-width: 1100px;
    margin: 0 auto;
}
.exp-product__highlight-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}
.exp-product__highlight-iframe,
.exp-product__highlight-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.exp-product__highlight-poster {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.exp-product__highlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.exp-product__highlight-play:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}
.exp-product__highlight-play svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}
.exp-product__highlight-gradient {
    margin-top: -2px;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--color-primary) 0%, #ffffff 50%, var(--color-primary) 100%);
}
@media (max-width: 768px) {
    .exp-product__highlight-play {
        width: 64px;
        height: 64px;
    }
    .exp-product__highlight-play svg {
        width: 24px;
        height: 24px;
    }
}

/* --------------------------------------------------------------------------
   9. Related products (legacy .product-related restyled)
   -------------------------------------------------------------------------- */
.product-related {
    padding: 64px 0 0 !important;
    max-width: 100% !important;
}
@media (max-width: 768px) {
    .product-related {
        padding-top: 44px !important;
    }
}
.product-related > label {
    display: block;
    text-align: center;
    font: 400 clamp(20px, 2.2vw, 28px)/1.2 var(--font-family-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 36px;
}
.product-related .product-related-wp {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    justify-content: initial;
}
@media (max-width: 1000px) {
    .product-related .product-related-wp {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .product-related .product-related-wp {
        grid-template-columns: 1fr;
    }
}
/* borderless cards — image + blue caption, centred (per design) */
.product-related .product-related-wp a {
    flex: none;
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    row-gap: 18px;
    transition: transform 0.25s ease;
}
.product-related .product-related-wp a:hover {
    transform: translateY(-4px);
}
.product-related .product-related-wp a span:nth-child(1) {
    width: 78%;
    padding-top: 56%;
}
.product-related .product-related-wp a span:nth-child(1) img {
    -o-object-fit: contain;
    object-fit: contain;
}
.product-related .product-related-wp a [classs='related-ttl'],
.product-related .product-related-wp a span:last-child,
.product-related .product-related-wp a .related-ttl {
    font: 600 13px/1.3 var(--font-family-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. Misc: the configurator print iframe stays hidden
   -------------------------------------------------------------------------- */
.product-cnt #print,
.product-cnt iframe#print {
    display: none;
}
.exp-product .product-footer {
    display: none;
}

/* --------------------------------------------------------------------------
   11. Very small screens (≤400px) — tighten the hero, title, tab pills,
   configurator and buttons so the page stays comfortable down to ~350px.
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
    .exp-product {
        padding: 28px 0 56px;
    }
    .exp-product__hero {
        padding: 14px;
        gap: 18px;
    }

    .exp-product__panel-head {
        padding-bottom: 16px;
        gap: 10px;
    }
    .exp-product__panel-head .pi-code-top {
        font-size: 17px;
        letter-spacing: 0.5px;
    }
    .exp-product__panel-actions {
        gap: 12px;
    }

    /* tab pills — shrink type/padding so CONFIGURATOR still fits three-up */
    .exp-product__panel .product-tabs {
        gap: 6px;
        padding-top: 14px;
    }
    .exp-product__panel .product-tabs a {
        padding: 11px 4px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    /* configurator step labels + option cards */
    .product-cnt .picb-lbl {
        font-size: 13px;
        padding: 14px 34px 14px 0 !important;
    }
    .product-cnt .picb-lbl.completed {
        padding-right: 50px !important;
        background-position: right 28px center;
    }
    .product-cnt .picb-values-link {
        padding: 9px 10px;
    }

    /* part number wraps instead of overflowing; tighter save block + buttons */
    .product-cnt .pn-num {
        flex-wrap: wrap;
        row-gap: 6px;
        font-size: 15px;
    }
    .product-cnt .pic-save-inner {
        padding: 18px 16px;
    }
    .product-cnt .pic-save-btn-f,
    .product-cnt a.pic-save-btn-f {
        min-width: 100%;
        padding: 12px 16px !important;
        font-size: 12px;
    }

    /* section subtitles (Featured Projects / Fixture Highlight) */
    .exp-product__section-subtitle {
        font-size: 14px;
    }
}
