.page-content.page-content-bc {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    position: relative;
    background: #ffffff;
    --bc-divider-gradient: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.24) 10%,
        rgba(0, 0, 0, 0.62) 50%,
        rgba(0, 0, 0, 0.24) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.page-content.page-content-bc::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--header-height, 86px) * -1);
    height: calc(var(--header-height, 86px) + 1px);
    background: #ffffff;
    pointer-events: none;
    z-index: 0;
}

.bc-product-split {
    width: 100%;
    background: var(--bg, #fff);
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.bc-product-split-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
    gap: 0;
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.75rem) clamp(1rem, 3vw, 2.75rem) 3rem;
    column-gap: clamp(1.5rem, 2.8vw, 3.25rem);
    align-items: start;
}

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

.bc-product-stage {
    display: none;
}

.bc-product-images {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.8vw, 2rem);
    padding-right: 0;
    min-width: 0;
}

.bc-product-img-item {
    width: 100%;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bc-product-img-item img {
    width: min(100%, clamp(390px, 42vw, 760px));
    max-width: 100%;
    max-height: clamp(360px, 62vh, 760px);
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    transition: opacity 0.45s ease;
}

.bc-product-img-item img.is-fading {
    opacity: 0;
}

.bc-product-img-item:hover img {
    filter: brightness(1.03);
}

.bc-product-desc,
.bc-product-features,
.bc-product-colors {
    min-width: 0;
}

.bc-product-sidebar {
    position: sticky;
    top: calc(var(--header-height, 86px) + 0.85rem);
    align-self: start;
    max-height: none;
    overflow: visible;
    min-width: 0;
    padding: 0.1rem 0 0.5rem clamp(1.5rem, 2vw, 2.25rem);
}

.bc-product-sidebar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.18) 10%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.18) 90%,
        rgba(0, 0, 0, 0) 100%
    );
}

.bc-product-title-group,

.bc-product-title {
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(2.95rem, 2.2rem + 1.45vw, 3.45rem);
    font-weight: 700;
    color: #101317;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 0.95;
}

.bc-product-title-rule {
    width: 100%;
    height: 1px;
    background: var(--bc-divider-gradient);
    margin-top: 0.6rem;
}

.bc-product-divider {
    height: 1px;
    background: var(--bc-divider-gradient);
    margin: 15px 0;
}

.bc-product-desc p {
    margin: 0 0 0.6rem;
    font-size: clamp(1.22rem, 1.05rem + 0.24vw, 1.25rem);
    line-height: 1.56;
    color: #444;
    margin-top: 1rem;
}

.bc-product-desc p:last-child {
    margin-bottom: 15px;
}

.bc-product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.4rem, 0.9vw, 2.5rem);
}

.bc-product-features:has(.bc-feature:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.35rem, 0.7vw, 1.8rem);
}

.bc-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}


.bc-feature-icon {
    width: clamp(1.58rem, 1.3rem + 0.58vw, 2.0625rem);
    height: clamp(1.58rem, 1.3rem + 0.58vw, 2.0625rem);
    color: #222;
    display: block;
    flex: 0 0 auto;
}

.bc-feature-rule {
    display: none;
    width: clamp(3rem, 7vw, 4.5rem);
    height: 1px;
    background: var(--bc-divider-gradient);
}

.bc-feature-text {
    font-size: clamp(0.64rem, 0.58rem + 0.16vw, 0.6875rem);
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.bc-feature-text small {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 1em;
    margin-top: 0.1rem;
}

.bc-colors-heading {
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(0.86rem, 0.8rem + 0.12vw, 0.98rem);
    font-weight: 600;
    color: #222;
    margin: 0;
}

.bc-colors-heading-line {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 7px;
}

.bc-color-current {
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(0.86rem, 0.8rem + 0.12vw, 0.98rem);
    font-weight: 600;
    color: #101317;
    min-width: 0;
    transition: color 0.2s ease, background-image 0.2s ease;
}

.bc-color-swatches {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bc-color-swatch {
    position: relative;
    display: inline-block;
    width: 40px;
    min-width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    flex: 0 0 40px;
    appearance: none;
    -webkit-appearance: none;
}

.bc-color-swatch::before,
.bc-color-swatch::after {
    content: "";
    position: absolute;
    pointer-events: none;
    clip-path: polygon(16% 0, 84% 0, 100% 22%, 100% 78%, 84% 100%, 16% 100%, 0 78%, 0 22%);
    transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.bc-color-swatch::before {
    inset: 0;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    z-index: 1;
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 10%, transparent 10% 84%, rgba(0, 0, 0, 0.09) 84% 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0 7%, transparent 7% 93%, rgba(0, 0, 0, 0.12) 93% 100%),
    var(--swatch-color, #ccc);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.bc-color-swatch::after {
    inset: 0;
    z-index: 0;
    background: #101317;
    opacity: 0;
}

.bc-color-swatch:hover,
.bc-color-swatch:focus-visible {
    transform: scale(1.08);
}

.bc-color-swatch.is-active {
    clip-path: polygon(16% 0, 84% 0, 100% 22%, 100% 78%, 84% 100%, 16% 100%, 0 78%, 0 22%);
    background: #101317;
}

.bc-color-swatch.is-active::after {
    inset: 2px;
    opacity: 1;
    background: #ffffff;
}

.bc-color-swatch.is-active::before {
    inset: 4px;
    width: auto;
    height: auto;
    transform: none;
}

.bc-product-colors {
    padding-top: 0.05rem;
}

.bc-colors-divider {
    height: 1px;
    background: var(--bc-divider-gradient);
    margin-top: 1rem;
    margin-bottom: 7px;
}

.bc-specs-jump {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 7px;
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 0.84rem + 0.14vw, 1rem);
    font-weight: 600;
    color: #101317;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bc-specs-jump-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 0.75rem;
    flex: 0 0 1.35rem;
    position: relative;
    top: 0.08em;
    animation: none;
}

.bc-specs-jump-arrow svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.bc-specs-jump:hover,
.bc-specs-jump:focus-visible {
    color: var(--red);
    transform: translateY(-1px);
}

.bc-reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: opacity, transform;
}

.bc-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1200px) {
    .bc-product-split-inner {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
        column-gap: 2rem;
    }

    .bc-product-img-item img {
        width: min(100%, clamp(360px, 40vw, 660px));
        max-height: 58vh;
    }
}

@media (max-width: 1024px) {
    .bc-product-split-inner {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
        column-gap: 1.5rem;
    }

    .bc-product-sidebar {
        padding-left: 1.5rem;
    }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .bc-product-split-inner {
        grid-template-columns: 1fr;
        padding: 1.2rem 0.85rem 2rem;
        gap: 1.25rem;
    }

    .bc-product-gallery {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        order: 0;
        width: 100%;
    }

    .bc-product-stage {
        display: block;
        width: 100%;
        overflow: hidden;
        max-width: min(100%, 980px);
        margin: 0 auto;
    }

    .bc-product-stage-track {
        display: flex;
        gap: 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: auto;
    }

    .bc-product-images {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bc-product-stage-track::-webkit-scrollbar,
    .bc-product-images::-webkit-scrollbar {
        display: none;
    }

    .bc-product-stage-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: clamp(280px, 52svh, 600px);
        padding: clamp(0.3rem, 0.8vw, 0.55rem);
        border: 1px solid rgba(16, 19, 23, 0.06);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bc-product-stage-slide img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%;
        display: block;
    }

    .bc-product-images {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.55rem;
        width: 100%;
        padding-right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-snap-type: x proximity;
        align-items: stretch;
        order: 0;
        touch-action: auto;
        max-width: min(100%, 980px);
        margin: 0 auto;
    }

    .bc-product-img-item {
        flex: 0 0 clamp(84px, 22vw, 110px);
        width: clamp(84px, 22vw, 110px);
        max-width: clamp(84px, 22vw, 110px);
        min-width: 0;
        aspect-ratio: 1 / 1;
        padding: 0.38rem;
        background: #fff;
        border: 1px solid rgba(16, 19, 23, 0.08);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-shadow: none;
    }

    .bc-product-img-item.is-selected {
        border-color: var(--red);
        box-shadow: none;
    }

    .bc-product-img-item img {
        max-height: none;
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0;
    }

    .bc-product-sidebar {
        display: flex;
        flex-direction: column;
        position: static;
        max-height: none;
        min-height: 0;
        overflow: visible;
        border-left: none;
        padding: 0 0 1rem;
        order: 1;
    }

    .bc-product-sidebar::before {
        display: none;
    }

    .bc-product-divider {
        display: block;
        height: 1px;
        width: 100%;
        background: var(--bc-divider-gradient);
        margin: 15px 0;
        flex: 0 0 auto;
    }

    .bc-product-title {
        font-size: clamp(2.2rem, 1.75rem + 1.2vw, 2.6rem);
        order: 0;
        margin-top: 0;
    }

    .bc-product-colors {
        order: 3;
        padding-top: 0;
        margin-top: 0.64rem;
    }

    .bc-specs-jump {
        margin-top: 7px;
    }

    .bc-color-swatch {
        width: 38px;
        min-width: 38px;
        height: 28px;
        flex-basis: 38px;
    }

    .bc-product-features {
        order: 6;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0.85rem;
    }

    .bc-product-features:has(.bc-feature:nth-child(4)) {
        grid-template-columns: repeat(4, 1fr);
    }

    .bc-feature {
        gap: 0.35rem;
    }

    .bc-feature-rule {
        display: none;
    }

    .bc-product-desc {
        order: 8;
        margin-top: 1.08rem;
    }

    .bc-product-divider-colors {
        order: 4;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .bc-product-divider-features {
        order: 7;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .bc-product-title-group {
        width: fit-content;
        margin-top: 0.85rem;
    }

    .bc-product-title-group .bc-product-title-rule {
        width: 100%;
    }

    .bc-product-desc p {
        font-size: clamp(1rem, 0.94rem + 0.38vw, 1.08rem);
        line-height: 1.65;
    }

    .bc-color-swatch::before {
        width: 100%;
        height: 100%;
        flex-basis: 100%;
    }

}

@media (max-width: 600px) {
    .bc-product-split-inner {
        padding: 0.65rem 0.7rem 1.5rem;
    }

    .bc-product-stage-track,
    .bc-product-images {
        gap: 0.55rem;
    }

    .bc-product-stage-slide {
        height: clamp(240px, 46svh, 420px);
        padding: 0.3rem;
    }

    .bc-product-img-item {
        flex-basis: clamp(78px, 25vw, 104px);
        padding: 0.34rem;
    }

    .bc-product-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .bc-product-features:has(.bc-feature:nth-child(4)) {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }


    .bc-feature-icon {
        width: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
        height: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
    }

    .bc-feature-text {
        font-size: clamp(0.58rem, 0.54rem + 0.22vw, 0.625rem);
    }

    .bc-feature-rule {
        width: clamp(2.4rem, 18vw, 3.4rem);
    }

    .bc-color-swatches {
        gap: 0.75rem;
    }

}

@media (max-width: 480px) {
    .bc-product-title {
        font-size: clamp(2rem, 1.65rem + 0.9vw, 2.25rem);
    }

    .bc-product-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
    }

    .bc-color-swatch {
        width: 36px;
        min-width: 36px;
        height: 26px;
        flex-basis: 36px;
    }

    .bc-color-swatch::before {
        width: 100%;
        height: 100%;
        flex-basis: 100%;
    }

}

@media (max-height: 820px) and (min-width: 901px) and (hover: hover) and (pointer: fine) {
    .bc-product-split-inner {
        padding-top: 0.85rem;
        padding-bottom: 2rem;
    }

    .bc-product-img-item img {
        max-height: 54vh;
    }

    .bc-product-title {
        font-size: clamp(2.45rem, 1.95rem + 0.7vw, 2.8rem);
    }

    .bc-product-desc p {
        font-size: clamp(1rem, 0.94rem + 0.14vw, 1.08rem);
        line-height: 1.48;
    }

    .bc-product-divider {
        margin: 15px 0;
    }


    .bc-feature-icon {
        width: clamp(1.4rem, 1.2rem + 0.28vw, 1.68rem);
        height: clamp(1.4rem, 1.2rem + 0.28vw, 1.68rem);
    }

    .bc-feature-text {
        font-size: clamp(0.62rem, 0.58rem + 0.08vw, 0.68rem);
    }

    .bc-colors-heading {
        margin-bottom: 0.45rem;
    }

    .bc-color-swatch::before {
        width: 100%;
        height: 100%;
        flex-basis: 100%;
    }

    .bc-color-swatch {
        width: 37px;
        min-width: 37px;
        height: 27px;
        flex-basis: 37px;
    }

}

@media (max-height: 720px) and (min-width: 901px) and (hover: hover) and (pointer: fine) {
    .bc-product-img-item img {
        max-height: 48vh;
    }

    .bc-product-desc p {
        font-size: clamp(0.96rem, 0.9rem + 0.1vw, 1.04rem);
        line-height: 1.42;
    }


    .bc-feature-icon {
        width: clamp(1.32rem, 1.12rem + 0.22vw, 1.54rem);
        height: clamp(1.32rem, 1.12rem + 0.22vw, 1.54rem);
    }

    .bc-feature-text {
        font-size: clamp(0.6rem, 0.56rem + 0.06vw, 0.66rem);
    }

    .bc-product-title {
        font-size: clamp(2.2rem, 1.95rem + 0.28vw, 2.45rem);
    }

    .bc-product-divider {
        margin: 15px 0;
    }

    .bc-color-swatch::before {
        width: 100%;
        height: 100%;
        flex-basis: 100%;
    }

    .bc-color-swatch {
        width: 34px;
        min-width: 34px;
        height: 25px;
        flex-basis: 34px;
    }

}


.bc-product-specs {
    padding: clamp(3rem, 5vw, 4.5rem) 1rem clamp(3rem, 5vw, 4.75rem);
    background: #000;
    margin-top: clamp(70px, 7vw, 108px);
    scroll-margin-top: calc(var(--header-height, 86px) + 20px);
}

.bc-product-specs-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.bc-specs-heading-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: clamp(1.4rem, 2vw, 2rem);
}

.bc-specs-title {
    margin: 0;
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(2.45rem, 1.9rem + 2vw, 4rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-align: center;
}

.bc-specs-title-rule {
    display: block;
    width: min(100%, 520px);
    height: 1px;
    margin-top: 0.95rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(17, 17, 17, 0.38) 18%, rgba(17, 17, 17, 0.92) 50%, rgba(17, 17, 17, 0.38) 82%, rgba(0, 0, 0, 0) 100%);
}

.bc-product-specs-inner.bc-reveal {
    transition-delay: 0s !important;
}

.bc-spec-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.bc-spec-card,
.bc-pallet-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 15, 15, 0.08);
}

.bc-spec-card-header,
.bc-pallet-card-header {
    background: #111111;
    padding: 1rem 1.35rem;
}

.bc-spec-card-title,
.bc-pallet-card-title {
    margin: 0;
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(1.35rem, 1.05rem + 0.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
}

.bc-pallet-card-title {
    text-align: center;
    font-size: clamp(1.5rem, 1.15rem + 0.75vw, 2.15rem);
}

.bc-spec-card-body {
    padding: 0 1rem;
}

.bc-spec-info-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.95fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 0.35rem;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.bc-spec-info-row:first-child {
    border-top: none;
}

.bc-spec-info-label {
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.92rem + 0.3vw, 1.1rem);
    font-weight: 600;
    color: #2a2d33;
}

.bc-spec-info-value-wrap {
    text-align: right;
}

.bc-spec-info-value {
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
    font-weight: 500;
    color: #24272d;
    line-height: 1.2;
}

.bc-spec-info-note {
    margin-top: 0.28rem;
    font-family: "area-variable", 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 0.74rem + 0.18vw, 0.92rem);
    font-weight: 400;
    color: #7b7f87;
    line-height: 1.2;
}

.bc-pallet-card-body {
    padding: 0.45rem 0 0.7rem;
}

.bc-pallet-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "area-variable", 'Montserrat', sans-serif;
}

.bc-pallet-table thead th {
    padding: 0.55rem 1.05rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.12rem);
    font-weight: 600;
    color: #2b2e34;
    text-align: left;
}

.bc-pallet-table tbody td {
    padding: 0.5rem 1.05rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.08rem);
    font-weight: 500;
    color: #2b2e34;
}

.bc-pallet-table tbody tr:last-child td {
    border-bottom: none;
}

.bc-pallet-table th:nth-child(2),
.bc-pallet-table th:nth-child(3),
.bc-pallet-table td:nth-child(2),
.bc-pallet-table td:nth-child(3) {
    text-align: center;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
    width: 120px;
}

@media (max-width: 900px) {
    .bc-product-specs {
        padding: clamp(2.4rem, 4vw, 3rem) 0.85rem 3rem;
    }

    .bc-specs-title {
        font-size: clamp(2.2rem, 1.75rem + 1.2vw, 2.6rem);
    }

    .bc-spec-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bc-product-specs {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .bc-spec-card-header,
    .bc-pallet-card-header {
        padding: 0.9rem 1rem;
    }

    .bc-spec-card-body {
        padding: 0 0.8rem;
    }

    .bc-spec-info-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.9rem 0.2rem;
    }

    .bc-spec-info-value-wrap {
        text-align: left;
    }

    .bc-pallet-table thead th,
    .bc-pallet-table tbody td {
        padding: 0.6rem 0.65rem;
        font-size: 0.92rem;
    }

    .bc-pallet-table th:nth-child(2),
    .bc-pallet-table th:nth-child(3),
    .bc-pallet-table td:nth-child(2),
    .bc-pallet-table td:nth-child(3) {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bc-product-img-item img {
        transition: none !important;
    }
}
