/* =========================================================
   BC BRICK — SINGLE PRODUCT
========================================================= */


/* =========================================================
   PAGE / WOOCOMMERCE RESET
========================================================= */

body.single-product .site-main {
    padding-block: 0;
    overflow: visible !important;
}

.bc-single-product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 var(--bc-section-md);
    float: none !important;
    overflow: visible;
    color: var(--bc-color-text);
    background: var(--bc-color-background);
}

.bc-single-product *,
.bc-single-product *::before,
.bc-single-product *::after {
    box-sizing: border-box;
}

.bc-single-product a {
    color: inherit;
}

.bc-single-product img {
    max-width: 100%;
}

.bc-single-product__container {
    overflow: visible;
}

.bc-product-rich-text > * {
    margin: 0;
}

.bc-product-rich-text > * + * {
    margin-top: var(--bc-space-3);
}


/* =========================================================
   BREADCRUMBS
========================================================= */

.bc-single-product__breadcrumbs-wrap {
    padding-top: var(--bc-space-5);
    background: var(--bc-color-background);
}

.bc-single-product__breadcrumbs {
    color: var(--bc-color-text-muted);
}

.bc-single-product__breadcrumbs-list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
    list-style: none;
}

.bc-single-product__breadcrumbs-item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
}

.bc-single-product__breadcrumbs-link {
    color: var(--bc-color-text-muted);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-single-product__breadcrumbs-link:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-product__breadcrumbs-link:hover {
        color: var(--bc-color-primary);
    }

}

.bc-single-product__breadcrumbs-separator {
    display: grid;
    width: var(--bc-space-4);
    height: var(--bc-space-4);
    flex: 0 0 auto;
    place-items: center;
    color: var(--bc-color-border);
}

.bc-single-product__breadcrumbs-separator svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.bc-single-product__breadcrumbs-current {
    max-width: min(560px, 42vw);
    overflow: hidden;
    color: var(--bc-color-text);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.bc-single-product__hero {
    padding-block:
        var(--bc-space-7)
        var(--bc-space-9);
    overflow: visible;
}

.bc-single-product__hero-grid {
    display: grid;
    grid-template-columns:
        minmax(190px, 220px)
        minmax(0, 1.15fr)
        minmax(340px, 0.9fr);
    align-items: stretch;
    gap: var(--bc-space-4);
    overflow: visible;
}

.bc-single-product__hero-grid--without-sidebar {
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, 0.9fr);
}


/* =========================================================
   SIDEBAR
========================================================= */

.bc-product-sidebar {
    position: sticky;
    top: calc(
        var(--bc-header-height, 84px)
        + var(--bc-space-4)
    );
    min-width: 0;
    height: fit-content;
    align-self: start;
    padding-left: var(--bc-space-4);
    border-left: 2px solid var(--bc-color-primary);
}

.bc-product-sidebar__sticky {
    position: static;
}

.bc-product-sidebar__section {
    margin: 0;
    padding: 0;
}

.bc-product-sidebar__section + .bc-product-sidebar__section {
    margin-top: var(--bc-space-8);
}

.bc-product-sidebar__heading {
    margin: 0 0 var(--bc-space-4);
    color: var(--bc-color-primary);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bc-product-sidebar__body,
.bc-product-sidebar__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bc-product-sidebar__body ul {
    display: grid;
    gap: var(--bc-space-1);
}

.bc-product-sidebar__body ul ul {
    margin-top: var(--bc-space-1);
    padding-left: var(--bc-space-3);
}

.bc-product-sidebar__body li {
    margin: 0;
    padding: 0;
}

.bc-product-sidebar__body a:not(.bc-product-sidebar__size) {
    position: relative;
    display: flex;
    min-height: 40px;
    padding:
        var(--bc-space-2)
        var(--bc-space-3);
    align-items: center;
    border-radius: 0;
    color: var(--bc-color-text);
    background: transparent;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 500;
    line-height: var(--bc-line-height-small);
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color var(--bc-transition),
        background-color var(--bc-transition);
}

.bc-product-sidebar__body ul ul
a:not(.bc-product-sidebar__size) {
    min-height: 34px;
    color: var(--bc-color-text-muted);
    font-size: var(--bc-font-size-caption);
}

.bc-product-sidebar__body
a:not(.bc-product-sidebar__size):focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-sidebar__body
    a:not(.bc-product-sidebar__size):hover {
        color: var(--bc-color-primary);
    }

}

.bc-product-sidebar__body
a.is-current:not(.bc-product-sidebar__size),
.bc-product-sidebar__body
a.is-active:not(.bc-product-sidebar__size),
.bc-product-sidebar__body
.current-menu-item > a,
.bc-product-sidebar__body
.current-cat > a {
    color: var(--bc-color-primary);
    background:
        color-mix(
            in srgb,
            var(--bc-color-accent) 9%,
            var(--bc-color-background)
        );
    font-weight: 600;
}

.bc-product-sidebar__body
a.is-current:not(.bc-product-sidebar__size)::before,
.bc-product-sidebar__body
a.is-active:not(.bc-product-sidebar__size)::before,
.bc-product-sidebar__body
.current-menu-item > a::before,
.bc-product-sidebar__body
.current-cat > a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--bc-space-4) * -1 - 2px);
    width: 3px;
    background: var(--bc-color-accent);
    content: "";
}


/* =========================================================
   SIDEBAR — BRICK SIZES
========================================================= */

.bc-product-sidebar__sizes {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: var(--bc-space-2);
}

.bc-product-sidebar__size {
    display: grid;
    min-width: 0;
    min-height: 92px;
    padding:
        var(--bc-space-2)
        var(--bc-space-1);
    place-items: center;
    align-content: center;
    gap: var(--bc-space-1);
    border: 1px solid var(--bc-color-border);
    border-radius: 0;
    color: var(--bc-color-text-muted);
    background: var(--bc-color-background);
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color var(--bc-transition),
        border-color var(--bc-transition),
        background-color var(--bc-transition);
}

.bc-product-sidebar__size:focus-visible {
    color: var(--bc-color-primary);
    border-color:
        color-mix(
            in srgb,
            var(--bc-color-primary) 45%,
            var(--bc-color-border)
        );
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-sidebar__size:hover {
        color: var(--bc-color-primary);
        border-color:
            color-mix(
                in srgb,
                var(--bc-color-primary) 45%,
                var(--bc-color-border)
            );
    }

}

.bc-product-sidebar__size.is-active {
    color: var(--bc-color-accent);
    border-color: var(--bc-color-accent);
    background:
        color-mix(
            in srgb,
            var(--bc-color-accent) 4%,
            var(--bc-color-background)
        );
}

.bc-product-sidebar__size-visual {
    display: grid;
    width: var(--bc-space-10);
    height: var(--bc-space-7);
    place-items: center;
}

.bc-product-sidebar__size-visual svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
}

.bc-product-sidebar__size-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bc-product-sidebar__size-name {
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.bc-product-gallery {
    position: relative;
    min-width: 0;
    min-height:
        clamp(
            500px,
            calc(100svh - var(--bc-header-height, 84px) - 150px),
            620px
        );
    align-self: stretch;
}

.bc-product-gallery__stage {
    position: relative;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    background: var(--bc-color-background-soft);
}

.bc-product-gallery__slide {
    position: absolute;
    inset: 0;
    margin: 0;
}

.bc-product-gallery__slide[hidden] {
    display: none !important;
}

.bc-product-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    padding: var(--bc-space-9);
    object-fit: contain;
    object-position: center;
}

.bc-product-gallery--has-thumbs
.bc-product-gallery__image {
    padding-left: 110px;
}

.bc-product-gallery__zoom {
    position: absolute;
    z-index: 5;
    top: var(--bc-space-3);
    right: var(--bc-space-3);
    display: grid;
    width: var(--bc-space-10);
    height: var(--bc-space-10);
    padding: 0;
    place-items: center;
    border: 1px solid var(--bc-color-border);
    border-radius: 0;
    color: var(--bc-color-text);
    background: var(--bc-color-surface);
    cursor: pointer;
    touch-action: manipulation;
    transition:
        color var(--bc-transition),
        border-color var(--bc-transition),
        background-color var(--bc-transition);
}

.bc-product-gallery__zoom:focus-visible {
    color: var(--bc-color-primary);
    border-color: var(--bc-color-primary);
    background: var(--bc-color-background);
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-gallery__zoom:hover {
        color: var(--bc-color-primary);
        border-color: var(--bc-color-primary);
        background: var(--bc-color-background);
    }

}

.bc-product-gallery__zoom svg {
    width: var(--bc-space-6);
    height: var(--bc-space-6);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.bc-product-gallery__thumbs {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: var(--bc-space-4);
    display: flex;
    max-height: calc(100% - var(--bc-space-14));
    flex-direction: column;
    gap: var(--bc-space-3);
    overflow-y: auto;
    transform: translateY(-50%);
    scrollbar-width: none;
}

.bc-product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.bc-product-gallery__thumb {
    display: grid;
    width: 66px;
    height: 80px;
    padding: var(--bc-space-1);
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    border-radius: 0;
    background: var(--bc-color-background);
    cursor: pointer;
    touch-action: manipulation;
    transition: border-color var(--bc-transition);
}

.bc-product-gallery__thumb:focus-visible {
    border-color:
        color-mix(
            in srgb,
            var(--bc-color-primary) 55%,
            var(--bc-color-border)
        );
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-gallery__thumb:hover {
        border-color:
            color-mix(
                in srgb,
                var(--bc-color-primary) 55%,
                var(--bc-color-border)
            );
    }

}

.bc-product-gallery__thumb.is-active {
    border-color: var(--bc-color-accent);
}

.bc-product-gallery__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   PRODUCT SUMMARY
========================================================= */

.bc-single-product__summary {
    display: flex;
    min-width: 0;
    min-height:
        clamp(
            500px,
            calc(100svh - var(--bc-header-height, 84px) - 150px),
            620px
        );
    align-self: stretch;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--bc-color-border);
    background: var(--bc-color-surface);
}

.bc-single-product__summary-main {
    display: flex;
    padding: var(--bc-space-6);
    flex: 1 1 auto;
    flex-direction: column;
}

.bc-single-product__category {
    margin: 0 0 var(--bc-space-4);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bc-single-product__title {
    max-width: 640px;
    margin: 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size:
        clamp(
            var(--bc-font-size-h4),
            2.15vw,
            var(--bc-font-size-h3)
        );
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.bc-single-product__availability {
    display: inline-flex;
    width: fit-content;
    margin:
        var(--bc-space-4)
        0
        0;
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
}

.bc-single-product__availability-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
}

.bc-single-product__availability.is-in-stock {
    color: #2f7d45;
}

.bc-single-product__availability.is-on-request {
    color: var(--bc-color-accent);
}

.bc-single-product__price {
    display: flex;
    margin:
        var(--bc-space-5)
        0
        0;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--bc-space-2);
    color: var(--bc-color-accent);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: 1;
}

.bc-single-product__price
.woocommerce-Price-amount,
.bc-single-product__price
.woocommerce-Price-currencySymbol,
.bc-single-product__price
bdi {
    color: inherit;
    font: inherit;
}

.bc-single-product__price del {
    color: var(--bc-color-text-muted);
    font-size: var(--bc-font-size-body);
    font-weight: 500;
}

.bc-single-product__price ins {
    color: inherit;
    text-decoration: none;
}

.bc-single-product__price small {
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 500;
    line-height: var(--bc-line-height-small);
}

.bc-single-product__price.is-request {
    font-size: var(--bc-font-size-h5);
}

.bc-single-product__short-description {
    max-width: 520px;
    margin-top: var(--bc-space-5);
    color: var(--bc-color-text);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    line-height: 1.55;
}

.bc-single-product__order-note {
    max-width: 500px;
    margin:
        auto
        0
        0;
    padding-top: var(--bc-space-5);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: 1.5;
}

.bc-single-product__actions {
    display: flex;
    margin-top: var(--bc-space-5);
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bc-space-5);
}

.bc-single-product__order-button {
    min-width: 160px;
    border-color: var(--bc-color-accent);
    background: var(--bc-color-accent);
    touch-action: manipulation;
}

.bc-single-product__order-button:focus-visible {
    border-color: var(--bc-color-primary);
    background: var(--bc-color-primary);
    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-product__order-button:hover {
        border-color: var(--bc-color-primary);
        background: var(--bc-color-primary);
        transform: none;
    }

}

.bc-single-product
a.bc-single-product__question-button {
    display: inline-flex;

    min-height: 52px;

    margin: 0;
    padding: 0;

    align-items: center;
    justify-content: flex-start;

    gap: var(--bc-space-3);

    border: 0;
    border-radius: 0;

    color: var(--bc-color-accent);

    background: transparent;

    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    font-weight: 600;
    line-height: 1;

    text-align: left;
    text-decoration: none;

    cursor: pointer;
    touch-action: manipulation;

    box-shadow: none;

    transition:
        color var(--bc-transition);
}


.bc-single-product
a.bc-single-product__question-button:focus-visible {
    color: var(--bc-color-primary);

    background: transparent;

    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-product
    a.bc-single-product__question-button:hover {
        color: var(--bc-color-primary);

        background: transparent;

        text-decoration: none;
    }

}


.bc-single-product
a.bc-single-product__question-button:focus-visible {
    outline: 2px solid var(--bc-color-focus);
    outline-offset: var(--bc-space-1);
}


.bc-single-product
a.bc-single-product__question-button svg {
    display: block;

    width: var(--bc-space-5);
    height: var(--bc-space-5);

    flex: 0 0 auto;

    fill: none;
    stroke: currentColor;

    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.bc-single-product__trust {
    display: grid;
    min-height: 92px;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--bc-color-border);
    background: var(--bc-color-background);
}

.bc-single-product__trust-item {
    display: flex;
    min-width: 0;
    padding:
        var(--bc-space-4)
        var(--bc-space-3);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--bc-space-2);
    color: var(--bc-color-text);
    text-align: center;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: 1.35;
}

.bc-single-product__trust-item + .bc-single-product__trust-item {
    border-left: 1px solid var(--bc-color-border);
}

.bc-single-product__trust-icon {
    display: grid;
    width: var(--bc-space-8);
    height: var(--bc-space-8);
    place-items: center;
    color: var(--bc-color-text);
}

.bc-single-product__trust-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}


/* =========================================================
   SHARED SECTION TITLES
========================================================= */

.bc-product-section-title {
    margin: 0 0 var(--bc-space-4);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: var(--bc-line-height-h4);
    letter-spacing: -0.02em;
}


/* =========================================================
   CHARACTERISTICS + PACKAGING
========================================================= */

.bc-product-details {
    margin-top: var(--bc-space-2);
}

.bc-product-details__panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    border: 1px solid var(--bc-color-border);
    background: var(--bc-color-surface);
}

.bc-product-details__panel--single {
    grid-template-columns: minmax(0, 1fr);
}

.bc-product-details__group {
    min-width: 0;
    padding: var(--bc-space-6);
}

.bc-product-details__group + .bc-product-details__group {
    border-left: 1px solid var(--bc-color-border);
}

.bc-product-details__title {
    margin: 0 0 var(--bc-space-4);
    color: var(--bc-color-primary);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bc-product-details__list {
    margin: 0;
}

.bc-product-details__row {
    display: grid;
    min-height: 42px;
    padding-block: var(--bc-space-2);
    grid-template-columns:
        minmax(0, 1fr)
        minmax(120px, 0.72fr);
    align-items: center;
    gap: var(--bc-space-5);
    border-bottom: 1px solid var(--bc-color-border);
}

.bc-product-details__row:last-child {
    border-bottom: 0;
}

.bc-product-details__row dt,
.bc-product-details__row dd {
    margin: 0;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-product-details__row dt {
    color: var(--bc-color-text-muted);
}

.bc-product-details__row dd {
    color: var(--bc-color-text);
    font-weight: 600;
}

.bc-product-packaging {
    display: grid;
    height: calc(100% - var(--bc-space-7));
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.bc-product-packaging__item {
    display: flex;
    min-width: 0;
    padding:
        var(--bc-space-3)
        var(--bc-space-4);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--bc-space-2);
    text-align: center;
}

.bc-product-packaging__item + .bc-product-packaging__item {
    border-left: 1px solid var(--bc-color-border);
}

.bc-product-packaging__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: var(--bc-space-2);
    place-items: center;
    color: var(--bc-color-text);
}

.bc-product-packaging__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
}

.bc-product-packaging__item strong {
    color: var(--bc-color-accent);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 700;
    line-height: 1.05;
}

.bc-product-packaging__item > span:last-child {
    color: var(--bc-color-text);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    line-height: 1.35;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.bc-product-description {
    margin-top: var(--bc-space-8);
}

.bc-product-description__panel {
    display: grid;
    grid-template-columns:
        minmax(320px, 440px)
        minmax(0, 1fr);
    align-items: center;
    gap: var(--bc-space-8);
}

.bc-product-description__media {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-background-soft);
}

.bc-product-description__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.bc-product-description__panel--without-image {
    grid-template-columns:
        minmax(0, var(--bc-container-content));
}

.bc-product-description__content {
    display: flex;
    min-width: 0;
    padding:
        var(--bc-space-5)
        var(--bc-space-4);
    justify-content: center;
    flex-direction: column;
}

.bc-product-description__eyebrow {
    display: flex;
    margin: 0 0 var(--bc-space-4);
    align-items: center;
    gap: var(--bc-space-3);
    color: var(--bc-color-accent);
}

.bc-product-description__eyebrow::before {
    width: var(--bc-space-6);
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.bc-product-description__text {
    max-width: 650px;
    color: var(--bc-color-text);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    line-height: 1.65;
}


/* =========================================================
   DELIVERY / PAYMENT
========================================================= */

.bc-product-delivery {
    margin-top: var(--bc-space-8);
    color: var(--bc-color-white);
    background: var(--bc-color-primary);
}

.bc-product-delivery__inner {
    display: grid;
    min-height: 92px;
    padding:
        var(--bc-space-4)
        var(--bc-space-5);
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: var(--bc-space-6);
}

.bc-product-delivery__title {
    margin: 0;
    color: var(--bc-color-white);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
    white-space: nowrap;
}

.bc-product-delivery__items {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.bc-product-delivery__item {
    display: flex;
    min-width: 0;
    min-height: 58px;
    padding-inline: var(--bc-space-4);
    align-items: center;
    justify-content: center;
    gap: var(--bc-space-3);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: 1.35;
}

.bc-product-delivery__icon {
    display: grid;
    width: var(--bc-space-8);
    height: var(--bc-space-8);
    flex: 0 0 var(--bc-space-8);
    place-items: center;
    color: var(--bc-color-white);
}

.bc-product-delivery__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.bc-product-delivery__link {
    display: inline-flex;
    align-items: center;
    gap: var(--bc-space-3);
    color: var(--bc-color-accent-soft);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.bc-product-delivery__link:focus-visible {
    color: var(--bc-color-white);
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-delivery__link:hover {
        color: var(--bc-color-white);
    }

}

.bc-product-delivery__link svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}


/* =========================================================
   CONSULTATION
========================================================= */

.bc-product-consult {
    margin-top: var(--bc-space-5);
}

.bc-product-consult__panel {
    position: relative;
    display: grid;
    min-height: 112px;
    padding:
        var(--bc-space-5)
        var(--bc-space-6);
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto
        auto;
    align-items: center;
    gap: var(--bc-space-6);
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    background: var(--bc-color-surface);
}

.bc-product-consult__panel::after {
    position: absolute;
    right: -20px;
    bottom: -45px;
    width: 230px;
    height: 150px;
    opacity: 0.045;
    background:
        repeating-linear-gradient(
            30deg,
            var(--bc-color-primary) 0 1px,
            transparent 1px 14px
        );
    content: "";
    pointer-events: none;
}

.bc-product-consult__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: var(--bc-space-12);
    height: var(--bc-space-12);
    place-items: center;
    color: var(--bc-color-text);
}

.bc-product-consult__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

.bc-product-consult__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.bc-product-consult__title {
    margin: 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
}

.bc-product-consult__text {
    max-width: 620px;
    margin:
        var(--bc-space-2)
        0
        0;
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: 1.5;
}

.bc-product-consult__phone {
    position: relative;
    z-index: 1;
    padding-left: var(--bc-space-6);
    border-left: 1px solid var(--bc-color-border);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-body-lg);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.bc-product-consult__phone:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-consult__phone:hover {
        color: var(--bc-color-primary);
    }

}

.bc-product-consult__button {
    position: relative;
    z-index: 1;
    border-color: var(--bc-color-accent);
    background: var(--bc-color-accent);
    touch-action: manipulation;
}

.bc-product-consult__button:focus-visible {
    border-color: var(--bc-color-primary);
    background: var(--bc-color-primary);
    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-consult__button:hover {
        border-color: var(--bc-color-primary);
        background: var(--bc-color-primary);
        transform: none;
    }

}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.bc-product-related {
    margin-top: var(--bc-space-8);
}

.bc-product-related__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: var(--bc-grid-gap);
}

.bc-related-card {
    display: grid;
    min-width: 0;
    min-height: 190px;
    grid-template-columns:
        minmax(115px, 0.78fr)
        minmax(0, 1.22fr);
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    background: var(--bc-color-surface);
    transition: border-color var(--bc-transition);
}

@media (hover: hover) and (pointer: fine) {

    .bc-related-card:hover {
        border-color:
            color-mix(
                in srgb,
                var(--bc-color-primary) 55%,
                var(--bc-color-border)
            );
    }

}

.bc-related-card__media {
    display: grid;
    min-width: 0;
    overflow: hidden;
    place-items: center;
    text-decoration: none;
    touch-action: manipulation;
}

.bc-related-card__image {
    display: block;
    width: 100%;
    height: 100%;
    padding: var(--bc-space-4);
    object-fit: contain;
}

.bc-related-card__content {
    display: flex;
    min-width: 0;
    padding: var(--bc-space-4);
    flex-direction: column;
}

.bc-related-card__category {
    margin: 0;
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bc-related-card__title {
    margin: var(--bc-space-2) 0 0;
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-body);
    font-weight: 700;
    line-height: 1.25;
}

.bc-related-card__title a {
    color: var(--bc-color-text);
    text-decoration: none;
    touch-action: manipulation;
}

.bc-related-card__title a:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-related-card__title a:hover {
        color: var(--bc-color-primary);
    }

}

.bc-related-card__price {
    margin:
        auto
        0
        var(--bc-space-3);
    padding-top: var(--bc-space-4);
    color: var(--bc-color-accent);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-body-lg);
    font-weight: 700;
    line-height: 1;
}

.bc-related-card__price
.woocommerce-Price-amount,
.bc-related-card__price
.woocommerce-Price-currencySymbol,
.bc-related-card__price bdi {
    color: inherit;
    font: inherit;
}

.bc-related-card__button {
    display: inline-flex;
    min-height: 42px;
    padding-inline: var(--bc-space-4);
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bc-color-primary);
    border-radius: var(--bc-radius-sm);
    color: var(--bc-color-primary);
    background: transparent;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color var(--bc-transition),
        background-color var(--bc-transition);
}

.bc-related-card__button:focus-visible {
    color: var(--bc-color-white);
    background: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-related-card__button:hover {
        color: var(--bc-color-white);
        background: var(--bc-color-primary);
    }

}


/* =========================================================
   ORDER MODAL
========================================================= */

.bc-product-order-modal[hidden],
.bc-product-lightbox[hidden],
.bc-product-order-form__notice[hidden] {
    display: none !important;
}

/*
 * Lock the document while the order modal is open.
 * JS also fixes the body at its current scroll position so
 * iOS / mobile browsers cannot move the page behind the modal.
 */
html.bc-product-order-open,
body.bc-product-order-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.bc-product-order-open {
    touch-action: none;
}

.bc-product-order-modal:not([hidden]) {
    position: fixed;
    z-index: 5000;
    inset: 0;

    display: grid;

    width: 100%;
    height: 100dvh;

    padding: clamp(12px, 2.5vh, 24px);

    place-items: center;

    overflow: hidden;
    overscroll-behavior: contain;
}

.bc-product-order-modal__backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    background: rgba(41, 20, 19, 0.68);

    cursor: pointer;
    touch-action: manipulation;
}

.bc-product-order-modal__dialog {
    position: relative;
    z-index: 2;

    width: min(100%, 560px);
    max-height: calc(100dvh - 48px);

    padding: clamp(20px, 3vh, 32px);

    overflow: hidden;

    border-radius: var(--bc-radius-sm);

    background: var(--bc-color-background);
    box-shadow: var(--bc-shadow-md);
}

.bc-product-order-modal__accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background: var(--bc-color-accent);
}

.bc-product-order-modal__close {
    position: absolute;
    top: clamp(12px, 2vh, var(--bc-space-4));
    right: clamp(12px, 2vh, var(--bc-space-4));

    display: grid;

    width: 36px;
    height: 36px;

    padding: 0;

    place-items: center;

    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);

    color: var(--bc-color-text);
    background: var(--bc-color-background);

    cursor: pointer;
    touch-action: manipulation;
}

.bc-product-order-modal__close:focus-visible {
    color: var(--bc-color-primary);
    border-color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-order-modal__close:hover {
        color: var(--bc-color-primary);
        border-color: var(--bc-color-primary);
    }

}

.bc-product-order-modal__close svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);

    fill: none;
    stroke: currentColor;

    stroke-linecap: round;
    stroke-width: 1.7;
}

.bc-product-order-modal__eyebrow {
    display: flex;

    margin: 0 0 clamp(6px, 1vh, var(--bc-space-3));

    align-items: center;
    gap: var(--bc-space-3);

    color: var(--bc-color-accent);
}

.bc-product-order-modal__eyebrow::before {
    width: var(--bc-space-6);
    height: 2px;

    flex: 0 0 auto;

    background: currentColor;

    content: "";
}

.bc-product-order-modal__title {
    max-width: calc(100% - 52px);

    margin: 0;

    color: var(--bc-color-text);

    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: var(--bc-line-height-h4);
}

.bc-product-order-modal__text {
    margin:
        clamp(8px, 1.5vh, var(--bc-space-4))
        0
        0;

    color: var(--bc-color-text-muted);

    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    line-height: 1.45;
}

.bc-product-order-modal__text span {
    display: block;
    margin-top: var(--bc-space-1);
}

.bc-product-order-modal__product {
    display: grid;

    margin-top: clamp(10px, 1.8vh, var(--bc-space-5));
    padding: clamp(8px, 1.4vh, var(--bc-space-3));

    grid-template-columns:
        56px
        minmax(0, 1fr);

    align-items: center;
    gap: var(--bc-space-3);

    background: var(--bc-color-background-soft);
}

.bc-product-order-modal__product-image {
    width: 56px;
    height: 56px;

    object-fit: contain;
}

.bc-product-order-modal__product strong {
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-body);
    line-height: 1.25;
}

.bc-product-order-form {
    display: grid;

    margin-top: clamp(10px, 1.8vh, var(--bc-space-5));

    gap: clamp(8px, 1.4vh, var(--bc-space-4));
}

.bc-product-order-form__field {
    display: grid;

    gap: clamp(4px, 0.8vh, var(--bc-space-2));

    color: var(--bc-color-text);

    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
}

.bc-product-order-form__field input {
    width: 100%;
    min-height: clamp(44px, 6vh, 52px);

    padding-inline: var(--bc-space-4);

    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);

    color: var(--bc-color-text);
    background: var(--bc-color-surface);

    font: inherit;
    font-size: var(--bc-font-size-body);
    font-weight: 400;

    outline: 0;
}

.bc-product-order-form__field input:focus {
    border-color: var(--bc-color-primary);
    box-shadow: 0 0 0 2px var(--bc-color-focus);
}

.bc-product-order-form__submit {
    width: 100%;
    min-height: 46px;

    border-color: var(--bc-color-accent);
    background: var(--bc-color-accent);

    touch-action: manipulation;
}

.bc-product-order-form__submit:focus-visible {
    border-color: var(--bc-color-primary);
    background: var(--bc-color-primary);

    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-product-order-form__submit:hover {
        border-color: var(--bc-color-primary);
        background: var(--bc-color-primary);

        transform: none;
    }

}

.bc-product-order-form__privacy {
    margin: 0;

    color: var(--bc-color-text-muted);

    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: 1.35;
}

.bc-product-order-form__notice {
    padding:
        var(--bc-space-2)
        var(--bc-space-3);

    border-radius: var(--bc-radius-sm);

    background: var(--bc-color-background-soft);

    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: 1.35;
}

.bc-product-order-form__trap {
    position: absolute !important;

    width: 1px;
    height: 1px;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
}


/* ---------------------------------------------------------
   ORDER MODAL — COMPACT VIEWPORT
   Keeps the complete dialog inside short screens without
   introducing an inner scrollbar.
--------------------------------------------------------- */

@media (max-height: 760px) {

    .bc-product-order-modal:not([hidden]) {
        padding: 12px;
    }

    .bc-product-order-modal__dialog {
        max-height: calc(100dvh - 24px);
        padding: 18px 20px;
    }

    .bc-product-order-modal__close {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;
    }

    .bc-product-order-modal__title {
        max-width: calc(100% - 44px);

        font-size: var(--bc-font-size-h5);
        line-height: var(--bc-line-height-h5);
    }

    .bc-product-order-modal__text {
        margin-top: 7px;

        font-size: var(--bc-font-size-caption);
        line-height: 1.35;
    }

    .bc-product-order-modal__product {
        margin-top: 8px;
        padding: 7px 8px;

        grid-template-columns:
            48px
            minmax(0, 1fr);
    }

    .bc-product-order-modal__product-image {
        width: 48px;
        height: 48px;
    }

    .bc-product-order-modal__product strong {
        font-size: var(--bc-font-size-body-sm);
    }

    .bc-product-order-form {
        margin-top: 9px;
        gap: 7px;
    }

    .bc-product-order-form__field {
        gap: 3px;
    }

    .bc-product-order-form__field input {
        min-height: 42px;
    }

    .bc-product-order-form__submit {
        min-height: 42px;
    }

    .bc-product-order-form__privacy,
    .bc-product-order-form__notice {
        font-size: 11px;
        line-height: 1.25;
    }

}


@media (max-width: 479px) {

    .bc-product-order-modal__dialog {
        padding:
            18px
            16px;
    }

    .bc-product-order-modal__eyebrow {
        padding-right: 42px;
    }

    .bc-product-order-modal__title {
        max-width: calc(100% - 42px);
    }

}

/* =========================================================
   LIGHTBOX
========================================================= */

.bc-product-lightbox:not([hidden]) {
    position: fixed;
    z-index: 5100;
    inset: 0;
    display: grid;
    padding: var(--bc-space-6);
    place-items: center;
}

.bc-product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(20, 8, 8, 0.86);
    cursor: pointer;
    touch-action: manipulation;
}

.bc-product-lightbox__dialog {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(92vw, 1180px);
    max-height: 88dvh;
    place-items: center;
}

.bc-product-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88dvh;
    object-fit: contain;
    border-radius: var(--bc-radius-sm);
}

.bc-product-lightbox__close {
    position: absolute;
    z-index: 3;
    top: calc(var(--bc-space-5) * -1);
    right: calc(var(--bc-space-5) * -1);
    display: grid;
    width: var(--bc-space-10);
    height: var(--bc-space-10);
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: var(--bc-radius-sm);
    color: var(--bc-color-primary);
    background: var(--bc-color-white);
    cursor: pointer;
    touch-action: manipulation;
}

.bc-product-lightbox__close svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}


/* =========================================================
   <= 1299
========================================================= */

@media (max-width: 1299px) {

    .bc-single-product__hero-grid {
        grid-template-columns:
            190px
            minmax(0, 1.08fr)
            minmax(320px, 0.92fr);
        gap: var(--bc-space-3);
    }

    .bc-single-product__hero-grid--without-sidebar {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(320px, 0.92fr);
    }

    .bc-product-gallery--has-thumbs
    .bc-product-gallery__image {
        padding-left: 96px;
    }

    .bc-product-gallery__thumb {
        width: 58px;
        height: 70px;
    }

    .bc-single-product__summary-main {
        padding: var(--bc-space-5);
    }

    .bc-product-delivery__inner {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .bc-product-delivery__link {
        grid-column: 1 / -1;
        justify-self: end;
    }

}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199px) {

    .bc-single-product__hero-grid {
        grid-template-columns:
            180px
            minmax(0, 1fr)
            minmax(300px, 0.82fr);
    }

    .bc-single-product__hero-grid--without-sidebar {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.82fr);
    }

    .bc-product-gallery,
    .bc-single-product__summary {
        min-height: 520px;
    }

    .bc-single-product__title {
        font-size: var(--bc-font-size-h4);
    }

    .bc-single-product__price {
        font-size: var(--bc-font-size-h5);
    }

    .bc-single-product__trust-item {
        padding-inline: var(--bc-space-2);
    }

    .bc-product-details__panel {
        grid-template-columns:
            minmax(0, 0.82fr)
            minmax(0, 1.18fr);
    }

    .bc-product-details__group {
        padding: var(--bc-space-5);
    }

    .bc-product-packaging__item {
        padding-inline: var(--bc-space-2);
    }

    .bc-product-consult__panel {
        grid-template-columns:
            auto
            minmax(0, 1fr)
            auto;
    }

    .bc-product-consult__phone {
        grid-column: 2;
        padding-left: 0;
        border-left: 0;
    }

    .bc-product-consult__button {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

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

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991px) {

    .bc-single-product__hero {
        padding-top: var(--bc-space-5);
    }

    .bc-single-product__hero-grid,
    .bc-single-product__hero-grid--without-sidebar {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-6);
    }

    .bc-product-sidebar {
        position: static;
        top: auto;
        padding-left: 0;
        border-left: 0;
    }

    .bc-product-sidebar__sticky {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: var(--bc-space-6);
    }

    .bc-product-sidebar__section + .bc-product-sidebar__section {
        margin-top: 0;
    }

    .bc-product-sidebar__section {
        padding-left: var(--bc-space-4);
        border-left: 2px solid var(--bc-color-primary);
    }

    .bc-product-gallery,
    .bc-single-product__summary {
        min-height: 560px;
    }

    .bc-product-gallery {
        order: 2;
    }

    .bc-single-product__summary {
        order: 3;
    }

    .bc-product-sidebar {
        order: 1;
    }

    .bc-product-details__panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .bc-product-details__group + .bc-product-details__group {
        border-top: 1px solid var(--bc-color-border);
        border-left: 0;
    }

    .bc-product-description__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-5);
    }

    .bc-product-description__content {
        padding-inline: 0;
    }

    .bc-product-delivery__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-4);
    }

    .bc-product-delivery__title {
        white-space: normal;
    }

    .bc-product-delivery__items {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .bc-product-delivery__item:first-child {
        border-left: 0;
    }

    .bc-product-delivery__link {
        grid-column: auto;
        justify-self: start;
    }

    .bc-product-consult__panel {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .bc-product-consult__phone {
        grid-column: 2;
    }

    .bc-product-consult__button {
        grid-column: 2;
        grid-row: auto;
        justify-self: start;
    }

}


/* =========================================================
   <= 767
========================================================= */

@media (max-width: 767px) {

    .bc-single-product {
        padding-bottom: var(--bc-section-md);
    }

    .bc-single-product__breadcrumbs-wrap {
        padding-top: var(--bc-space-4);
    }

    .bc-single-product__breadcrumbs {
        overflow: hidden;
    }

    .bc-single-product__breadcrumbs-list {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .bc-single-product__breadcrumbs-current {
        display: none;
    }

    .bc-single-product__breadcrumbs-separator:last-of-type {
        display: none;
    }

    .bc-single-product__hero {
        padding-block:
            var(--bc-space-4)
            var(--bc-space-7);
    }

    .bc-product-sidebar__sticky {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-6);
    }

    .bc-product-sidebar__section {
        padding-left: var(--bc-space-3);
    }

    .bc-product-sidebar__sizes {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .bc-product-sidebar__sizes::-webkit-scrollbar {
        display: none;
    }

    .bc-product-sidebar__size {
        min-width: 96px;
        scroll-snap-align: start;
    }

    .bc-product-gallery {
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: var(--bc-space-3);
    }

    .bc-product-gallery__stage {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .bc-product-gallery__image,
    .bc-product-gallery--has-thumbs
    .bc-product-gallery__image {
        padding: var(--bc-space-6);
    }

    .bc-product-gallery__thumbs {
        position: static;
        display: flex;
        max-height: none;
        flex-direction: row;
        gap: var(--bc-space-2);
        overflow-x: auto;
        overflow-y: hidden;
        transform: none;
        scrollbar-width: none;
    }

    .bc-product-gallery__thumb {
        width: 64px;
        height: 72px;
    }

    .bc-single-product__summary {
        min-height: 0;
    }

    .bc-single-product__summary-main {
        padding: var(--bc-space-5);
    }

    .bc-single-product__title {
        font-size: var(--bc-font-size-h5);
    }

    .bc-single-product__price {
        font-size: var(--bc-font-size-h5);
    }

    .bc-single-product__order-note {
        margin-top: var(--bc-space-5);
    }

    .bc-single-product__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-2);
    }

    .bc-single-product__order-button {
        width: 100%;
    }

    .bc-single-product__question-button {
        justify-content: center;
    }

    .bc-single-product__trust {
        grid-template-columns: minmax(0, 1fr);
    }

    .bc-single-product__trust-item {
        min-height: 70px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .bc-single-product__trust-item + .bc-single-product__trust-item {
        border-top: 1px solid var(--bc-color-border);
        border-left: 0;
    }

    .bc-single-product__trust-icon {
        width: var(--bc-space-7);
        height: var(--bc-space-7);
    }

    .bc-product-section-title {
        font-size: var(--bc-font-size-h5);
    }

    .bc-product-details__group {
        padding: var(--bc-space-4);
    }

    .bc-product-details__row {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(100px, auto);
        gap: var(--bc-space-3);
    }

    .bc-product-packaging {
        grid-template-columns: minmax(0, 1fr);
        height: auto;
    }

    .bc-product-packaging__item {
        min-height: 124px;
        padding: var(--bc-space-4);
    }

    .bc-product-packaging__item + .bc-product-packaging__item {
        border-top: 1px solid var(--bc-color-border);
        border-left: 0;
    }

    .bc-product-description,
    .bc-product-delivery,
    .bc-product-related {
        margin-top: var(--bc-space-7);
    }

    .bc-product-description__content {
        padding-block: var(--bc-space-2);
    }

    .bc-product-delivery__inner {
        min-height: 0;
        padding: var(--bc-space-5);
    }

    .bc-product-delivery__items {
        grid-template-columns: minmax(0, 1fr);
    }

    .bc-product-delivery__item {
        min-height: 64px;
        padding-inline: 0;
        justify-content: flex-start;
        border-left: 0;
    }

    .bc-product-delivery__item + .bc-product-delivery__item {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .bc-product-consult__panel {
        padding: var(--bc-space-5);
        grid-template-columns:
            auto
            minmax(0, 1fr);
        gap: var(--bc-space-4);
    }

    .bc-product-consult__icon {
        width: var(--bc-space-10);
        height: var(--bc-space-10);
    }

    .bc-product-consult__phone,
    .bc-product-consult__button {
        grid-column: 1 / -1;
    }

    .bc-product-consult__phone {
        padding-top: var(--bc-space-4);
        border-top: 1px solid var(--bc-color-border);
        font-size: var(--bc-font-size-body);
    }

    .bc-product-consult__button {
        width: 100%;
    }

    .bc-product-related__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bc-related-card {
        min-height: 170px;
    }

    .bc-product-lightbox:not([hidden]) {
        padding: var(--bc-space-4);
    }

    .bc-product-lightbox__close {
        top: var(--bc-space-2);
        right: var(--bc-space-2);
    }

}


/* =========================================================
   <= 479
========================================================= */

@media (max-width: 479px) {

    .bc-product-sidebar__sizes {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .bc-product-sidebar__size {
        min-width: 0;
    }

    .bc-product-gallery__stage {
        aspect-ratio: 4 / 5;
    }

    .bc-product-details__row {
        display: block;
    }

    .bc-product-details__row dd {
        margin-top: var(--bc-space-1);
    }

    .bc-related-card {
        grid-template-columns:
            120px
            minmax(0, 1fr);
    }

    .bc-related-card__content {
        padding: var(--bc-space-3);
    }

}

/* =========================================================
   V2 — SCREENSHOT CORRECTIONS
   These rules intentionally come last.
========================================================= */

/*
 * 1. The navigation helper outputs its own toggle SVG/buttons.
 *    In the new static/open sidebar they were no longer styled,
 *    so browser-default SVG dimensions became the huge black
 *    triangles visible in the screenshot.
 */
.bc-single-product .bc-product-sidebar__body button,
.bc-single-product .bc-product-sidebar__body [class*="toggle"],
.bc-single-product .bc-product-sidebar__body [class*="chevron"] {
    display: none !important;
}

.bc-single-product .bc-product-sidebar__body ul svg {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.bc-single-product .bc-product-sidebar__body li::before,
.bc-single-product .bc-product-sidebar__body li::after {
    display: none !important;
    content: none !important;
}

.bc-single-product .bc-product-sidebar__body ul,
.bc-single-product .bc-product-sidebar__body li {
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    list-style: none !important;
}

.bc-single-product .bc-product-sidebar__body > ul {
    display: grid !important;
    gap: 0 !important;
}

.bc-single-product .bc-product-sidebar__body ul ul {
    gap: 0 !important;
}

.bc-single-product
.bc-product-sidebar__body
a:not(.bc-product-sidebar__size) {
    width: 100%;
    min-height: 34px !important;
    padding:
        7px
        var(--bc-space-3) !important;
    justify-content: flex-start !important;
    gap: var(--bc-space-2);
}

.bc-single-product
.bc-product-sidebar__body
ul ul
a:not(.bc-product-sidebar__size) {
    min-height: 30px !important;
    padding-block: 5px !important;
}


/*
 * 2. The sidebar was making the whole CSS-grid row as tall as the
 *    full taxonomy tree. That stretched both gallery and summary.
 *    The gallery/summary now have their own controlled first-screen
 *    height and are not stretched by the sidebar.
 */
.bc-single-product__hero-grid {
    align-items: start;
}

@media (min-width: 992px) {

    .bc-product-gallery,
    .bc-single-product__summary {
        width: 100%;
        height:
            clamp(
                540px,
                calc(
                    100svh
                    - var(--bc-header-height, 84px)
                    - 145px
                ),
                610px
            );
        min-height: 0 !important;
        align-self: start;
    }

    .bc-product-gallery__stage {
        height: 100%;
        min-height: 0 !important;
    }

}


/*
 * 3. Keep the sidebar compact enough to resemble the reference,
 *    even when the shop has more taxonomy terms than the mockup.
 */
@media (min-width: 992px) {

    .bc-product-sidebar {
        max-width: 220px;
    }

    .bc-product-sidebar__section + .bc-product-sidebar__section {
        margin-top: var(--bc-space-6);
    }

    .bc-product-sidebar__heading {
        margin-bottom: var(--bc-space-3);
    }

    .bc-product-sidebar__sizes {
        gap: var(--bc-space-2);
    }

    .bc-product-sidebar__size {
        min-height: 78px;
    }

    .bc-product-sidebar__size-visual {
        width: 34px;
        height: 25px;
    }

}


.bc-single-product
.bc-single-product__order-button.button,
.bc-single-product
.bc-product-consult__button.button,
.bc-product-order-modal
.bc-product-order-form__submit.button {
    border-color: var(--bc-color-accent) !important;
    color: var(--bc-color-white) !important;
    background: var(--bc-color-accent) !important;
    box-shadow: none !important;
    transform: none !important;
    border-radius: var(--bc-radius-sm);
}

.bc-single-product
.bc-single-product__order-button.button:focus-visible,
.bc-single-product
.bc-product-consult__button.button:focus-visible,
.bc-product-order-modal
.bc-product-order-form__submit.button:focus-visible {
    border-color: var(--bc-color-primary) !important;
    color: var(--bc-color-white) !important;
    background: var(--bc-color-primary) !important;
    border-radius: var(--bc-radius-sm);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-product
    .bc-single-product__order-button.button:hover,
    .bc-single-product
    .bc-product-consult__button.button:hover,
    .bc-product-order-modal
    .bc-product-order-form__submit.button:hover {
        border-color: var(--bc-color-primary) !important;
        color: var(--bc-color-white) !important;
        background: var(--bc-color-primary) !important;
        border-radius: var(--bc-radius-sm);
    }

}

.bc-single-product__order-note {
    margin:
        var(--bc-space-7)
        0
        0 !important;
}

.bc-product-gallery__image {
    max-width: 100%;
    max-height: 100%;
}

.bc-product-gallery__slide
img[src*="placeholder"] {
    width: min(58%, 320px);
    height: auto;
    margin: auto;
    padding: 0 !important;
    opacity: 0.62;
}


/*
 * 7. Product sidebar size pictograms must remain visible even
 *    though navigation-tree SVG toggles are hidden above.
 */
.bc-single-product
.bc-product-sidebar__sizes
.bc-product-sidebar__size-visual svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}


/*
 * 8. On tablet/mobile we return to natural block heights.
 */
@media (max-width: 991px) {

    .bc-product-gallery,
    .bc-single-product__summary {
        height: auto;
        min-height: 0 !important;
    }

    .bc-product-gallery__stage {
        min-height: 0 !important;
    }

    .bc-product-sidebar {
        max-width: none;
    }

}

/* =========================================================
	SYSTEM ALIGNMENT + HERO PROPORTIONS
========================================================= */

/* ---------------------------------------------------------
   HERO GRID
--------------------------------------------------------- */

.bc-single-product__hero {
    padding-block:
        var(--bc-space-6)
        var(--bc-space-7);
}

.bc-single-product__hero-grid {
    align-items: start;
    gap: var(--bc-grid-gap);
}

@media (min-width: 1200px) {

    .bc-single-product__hero-grid {
        grid-template-columns:
            minmax(190px, 220px)
            minmax(380px, 0.82fr)
            minmax(450px, 1.18fr);
    }

    .bc-single-product__hero-grid--without-sidebar {
        grid-template-columns:
            minmax(380px, 0.82fr)
            minmax(450px, 1.18fr);
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .bc-single-product__hero-grid {
        grid-template-columns:
            170px
            minmax(300px, 0.85fr)
            minmax(360px, 1.15fr);
        gap: var(--bc-space-5);
    }

    .bc-single-product__hero-grid--without-sidebar {
        grid-template-columns:
            minmax(300px, 0.85fr)
            minmax(360px, 1.15fr);
    }

}


/* ---------------------------------------------------------
   GALLERY
   Do not enlarge the product photo to fill the whole panel.
--------------------------------------------------------- */

@media (min-width: 992px) {

    .bc-product-gallery {
        width: 100%;
        height:
            clamp(
                460px,
                calc(
                    100svh
                    - var(--bc-header-height, 84px)
                    - 180px
                ),
                540px
            );
        min-height: 0 !important;
        align-self: start;
    }

    .bc-product-gallery__stage {
        height: 100%;
        min-height: 0 !important;
    }

}


.bc-product-gallery__stage {
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
}

.bc-product-gallery__slide {
    display: grid;
    width: 100%;
    height: 100%;
    padding: var(--bc-space-5);
    place-items: center;
}

.bc-product-gallery__image,
.bc-product-gallery--has-thumbs .bc-product-gallery__image {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    margin: 0;
    padding: 0 !important;

    object-fit: contain;
    object-position: center;
}

.bc-product-gallery__zoom {
    top: var(--bc-space-5);
    right: var(--bc-space-5);
    width: 44px;
    height: 44px;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
    box-shadow: none;
}

.bc-product-gallery__zoom svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
}

.bc-product-gallery__thumbs {
    left: var(--bc-space-4);
    gap: var(--bc-space-2);
}

.bc-product-gallery__thumb {
    width: 60px;
    height: 72px;
    padding: var(--bc-space-1);
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
}


/* ---------------------------------------------------------
   PRODUCT SUMMARY
   Natural height: the trust strip can never be clipped.
--------------------------------------------------------- */

@media (min-width: 992px) {

    .bc-single-product__summary {
        width: 100%;
        height: auto !important;
        min-height:
            clamp(
                460px,
                calc(
                    100svh
                    - var(--bc-header-height, 84px)
                    - 180px
                ),
                540px
            ) !important;
        align-self: start;
    }

}

.bc-single-product__summary {
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
    box-shadow: none;
}

.bc-single-product__summary-main {
    padding: var(--bc-space-6);
}

.bc-single-product__category {
    margin-bottom: var(--bc-space-3);
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
}

.bc-single-product__title {
    max-width: none;
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: var(--bc-line-height-h4);
    letter-spacing: -0.02em;
}

.bc-single-product__availability {
    margin-top: var(--bc-space-4);
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-single-product__price {
    margin-top: var(--bc-space-5);
    font-size: var(--bc-font-size-h4);
    line-height: var(--bc-line-height-h4);
}

.bc-single-product__price small {
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-single-product__short-description {
    max-width: 640px;
    margin-top: var(--bc-space-5);
    font-size: var(--bc-font-size-body);
    line-height: var(--bc-line-height-body);
}

.bc-single-product__short-description > :first-child {
    margin-top: 0;
}

.bc-single-product__short-description > :last-child {
    margin-bottom: 0;
}

.bc-single-product__order-note {
    max-width: 620px;
    margin:
        var(--bc-space-6)
        0
        0 !important;
    padding-top: 0;
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
}

.bc-single-product__actions {
    margin-top: var(--bc-space-4);
    gap: var(--bc-space-8);
}

.bc-single-product__order-button {
    min-width: 168px;
}

.bc-single-product__question-button {
    min-height: 52px;
    gap: var(--bc-space-2);
    font-size: var(--bc-font-size-button);
    font-weight: 600;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   TRUST STRIP
--------------------------------------------------------- */

.bc-single-product__trust {
    min-height: 84px;
    border-top: 1px solid var(--bc-color-border);
    background: var(--bc-color-background);
}

.bc-single-product__trust-item {
    padding:
        var(--bc-space-4)
        var(--bc-space-3);
    gap: var(--bc-space-2);
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-single-product__trust-icon {
    width: var(--bc-space-7);
    height: var(--bc-space-7);
}


/* ---------------------------------------------------------
   SIDEBAR
   Same radii/spacing language as the rest of the site.
--------------------------------------------------------- */

.bc-product-sidebar {
    padding-left: var(--bc-space-4);
}

.bc-product-sidebar__section + .bc-product-sidebar__section {
    margin-top: var(--bc-space-7);
}

.bc-product-sidebar__heading {
    margin-bottom: var(--bc-space-3);
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-single-product
.bc-product-sidebar__body
a:not(.bc-product-sidebar__size) {
    border-radius: var(--bc-radius-sm);
}

.bc-product-sidebar__size {
    min-height: 80px;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
}


/* ---------------------------------------------------------
   SHARED PRODUCT PAGE SURFACES
--------------------------------------------------------- */

.bc-product-section-title {
    margin-bottom: var(--bc-space-5);
    font-size: var(--bc-font-size-h4);
    line-height: var(--bc-line-height-h4);
}

.bc-product-details {
    margin-top: var(--bc-space-7);
}

.bc-product-details__panel,
.bc-product-consult__panel,
.bc-related-card {
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-surface);
    box-shadow: none;
}

.bc-product-details__panel,
.bc-product-consult__panel {
    overflow: hidden;
}

.bc-product-details__group {
    padding: var(--bc-space-6);
    background: var(--bc-color-background-soft);
}

.bc-product-details__title {
    margin-bottom: var(--bc-space-4);
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-product-details__row dt,
.bc-product-details__row dd {
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-product-description {
    margin-top: var(--bc-space-10);
}

.bc-product-description__panel {
    gap: var(--bc-grid-gap-lg);
}

.bc-product-description__media {
    border-radius: var(--bc-radius-sm);
}

.bc-product-description__content {
    padding:
        var(--bc-space-5)
        var(--bc-space-4);
}

.bc-product-description__text {
    font-size: var(--bc-font-size-body);
    line-height: var(--bc-line-height-body);
}

.bc-product-delivery {
    margin-top: var(--bc-space-10);
    overflow: hidden;
    border-radius: var(--bc-radius-sm);
}

.bc-product-delivery__title {
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
}

.bc-product-delivery__item,
.bc-product-delivery__link {
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-product-consult {
    margin-top: var(--bc-space-10);
}

.bc-product-consult__title {
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
}

.bc-product-consult__text {
    font-size: var(--bc-font-size-body-sm);
    line-height: var(--bc-line-height-small);
}

.bc-product-related {
    margin-top: var(--bc-space-10);
}

.bc-related-card {
    overflow: hidden;
}

.bc-related-card__content {
    padding: var(--bc-space-4);
}

.bc-related-card__title {
    font-size: var(--bc-font-size-body);
    line-height: var(--bc-line-height-body);
}


/* ---------------------------------------------------------
   MOBILE / TABLET
--------------------------------------------------------- */

@media (max-width: 991px) {

    .bc-product-sidebar {
        display: none !important;
    }

    .bc-single-product__hero {
        padding-block:
            var(--bc-space-5)
            var(--bc-space-7);
    }

    .bc-product-gallery,
    .bc-single-product__summary {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }

    .bc-product-gallery__stage {
        min-height: 0 !important;
        border-radius: var(--bc-radius-sm);
    }

    .bc-product-gallery__slide {
        padding: var(--bc-space-6);
    }

    .bc-product-gallery__image,
    .bc-product-gallery--has-thumbs
    .bc-product-gallery__image {
        max-width: min(86%, 500px) !important;
        max-height: calc(100% - var(--bc-space-4)) !important;
    }

    .bc-single-product__summary-main {
        padding: var(--bc-space-5);
    }

    .bc-product-details {
        margin-top: var(--bc-space-7);
    }

}

@media (max-width: 767px) {

    .bc-single-product__title {
        font-size: var(--bc-font-size-h5);
        line-height: var(--bc-line-height-h5);
    }

    .bc-single-product__price {
        font-size: var(--bc-font-size-h5);
        line-height: var(--bc-line-height-h5);
    }

    .bc-product-gallery__stage {
        aspect-ratio: 4 / 4.4;
    }

    .bc-product-gallery__slide {
        padding: var(--bc-space-5);
    }

    .bc-product-gallery__image,
    .bc-product-gallery--has-thumbs
    .bc-product-gallery__image {
        max-width: 86% !important;
    }

    .bc-product-section-title {
        font-size: var(--bc-font-size-h5);
        line-height: var(--bc-line-height-h5);
    }

}



/* =========================================================
   BREADCRUMBS MOBILE NORMALIZATION
========================================================= */

@media (max-width: 767px) {

    .bc-single-product__breadcrumbs-wrap {
        padding-top: var(--bc-space-4);
    }

    .bc-single-product__breadcrumbs {
        overflow: hidden;
    }

    .bc-single-product__breadcrumbs-list {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .bc-single-product__breadcrumbs-current {
        display: none;
    }

    .bc-single-product__breadcrumbs-separator:last-of-type {
        display: none;
    }

}
