/* Furnishing PDP Component Styles */

.cmp-furnishing-pdp * {
    box-sizing: border-box;
    font-family: 'Archivo';
}

.cmp-furnishing-pdp {
    max-width: 1440px;
    margin: 0 auto;
    font-family: 'Archivo', Arial, sans-serif;
    background-color: #ffffff;
    width: 94%;
    overflow: visible !important;
}

/* ========================================================================
   Main Container - 2-column grid (2fr gallery | 1fr info)
   ======================================================================== */

.cmp-furnishing-pdp__container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 65% 32%;
    gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 24px;
    margin-bottom: 120px;
}

/* ========================================================================
   Gallery Section
   ======================================================================== */

.cmp-furnishing-pdp__gallery {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
}

/* Gallery variants */
.cmp-furnishing-pdp__gallery-desktop {
    display: block;
}

.cmp-furnishing-pdp__gallery-mobile {
    display: none;
}

.cmp-furnishing-pdp__carousel-expand {
    display: none;
}

.cmp-furnishing-pdp__fullscreen {
    display: none;
}

/* ========================================================================
   Desktop Expand Button on Hero
   ======================================================================== */

.cmp-furnishing-pdp__desktop-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    -webkit-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
    z-index: 2;
}


.cmp-furnishing-pdp__desktop-expand img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================================================
   Desktop Fullscreen Lightbox
   ======================================================================== */

@media (min-width: 768px) {
    .cmp-furnishing-pdp__fullscreen {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 1000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 56px;
    }

    .cmp-furnishing-pdp__fullscreen.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .cmp-furnishing-pdp__fullscreen-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        z-index: 10;
    }

    .cmp-furnishing-pdp__fullscreen-close img {
        width: 24px;
        height: 24px;
        display: block;
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    .cmp-furnishing-pdp__fullscreen-carousel {
        width: 100%;
        max-width: 900px;
    }

    .cmp-furnishing-pdp__fullscreen-image-set {
        width: 100%;
    }

    /* Slick slide dimensions */
    .cmp-furnishing-pdp__fullscreen-image-set .slick-list,
    .cmp-furnishing-pdp__fullscreen-image-set .slick-track {
        height: 70vh;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-slide {
        height: 70vh;
    }

    .cmp-furnishing-pdp__fullscreen-image-item {
        width: 100%;
        height: 70vh;
        background: #fff;
        overflow: hidden;
    }

    .cmp-furnishing-pdp__fullscreen-image {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: contain;
        object-fit: contain;
    }

    /* Pagination dots */
    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots {
        position: static;
        padding: 12px 0 0;
        text-align: center;
        list-style: none;
        margin: 0;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li {
        position: relative;
        display: inline-block;
        height: 3px;
        border-radius: 50px;
        padding: 0;
        background-color: #00000026;
        margin: 0 2.5px;
        width: 20px;
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li.slick-active {
        background-color: #000000;
        width: 40px;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li button {
        display: none;
    }
}

/* Hero image wrapper */
.cmp-furnishing-pdp__hero-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f5f5f5;
    height: 470px;
    position: relative;
}

.cmp-furnishing-pdp__hero-img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 4/3;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.cmp-furnishing-pdp__hero-wrapper:hover .cmp-furnishing-pdp__hero-img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

/* Thumbnail Grid - 2 columns */
.cmp-furnishing-pdp__thumbnails {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cmp-furnishing-pdp__thumb-item {
    overflow: hidden;
}

.cmp-furnishing-pdp__thumb-item--active {
    border-color: #333;
}

.cmp-furnishing-pdp__thumb-item:hover {
    border-color: #999;
}

.cmp-furnishing-pdp__thumb-img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    max-height: 450px;
}

.cmp-furnishing-pdp__thumb-item:hover .cmp-furnishing-pdp__thumb-img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

/* ========================================================================
   Info Section (Right Column)
   ======================================================================== */

.cmp-furnishing-pdp__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 13px;
}

/* Actions Container: badge left, wishlist + share right */
.cmp-furnishing-pdp__actions-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Badge pill */
.cmp-furnishing-pdp__badge {
    font-family: 'Archivo';
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    display: inline-block;
    border: 0.5px solid #CACBCC;
    border-radius: 4px;
    padding: 4px 10px;
}

.cmp-furnishing-pdp__badge.hide{
    opacity: 0;
}

/* Action buttons container */
.cmp-furnishing-pdp__action-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.cmp-furnishing-pdp__action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    width: 20px;
    height: 21px;
}

.cmp-furnishing-pdp__action-btn--wishlist {
    gap: 6px;
}

.cmp-furnishing-pdp__action-btn--download {
    width: 24px;
    height: 24px;
}

.cmp-furnishing-pdp__action-btn--download img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cmp-furnishing-pdp__action-btn--share{
    width: 20px;
    height: 20px;
}

.cmp-furnishing-pdp__like-icon {
    display: block;
    -webkit-transition: fill 0.2s ease, color 0.2s ease;
    -o-transition: fill 0.2s ease, color 0.2s ease;
    transition: fill 0.2s ease, color 0.2s ease;
    width: 24px;
    height: 24px;
}

.cmp-furnishing-pdp__action-btn--wishlist[data-wishlist-status="added"] .cmp-furnishing-pdp__like-icon {
    fill: #e53935;
    color: #e53935;
}

.cmp-furnishing-pdp__action-btn--wishlist {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* ========================================================================
   Title
   ======================================================================== */

.cmp-furnishing-pdp__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #202129;
    margin: 0 0 5px;
}

/* ========================================================================
   Price
   ======================================================================== */

.cmp-furnishing-pdp__price {
    font-size: 18px;
    font-weight: 400;
    color: #202129;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 5px;
}

.cmp-furnishing-pdp__price-value {
    font-size: 18px;
    font-weight: 700;
    color: #202129;
    line-height: 120%;
}

.cmp-furnishing-pdp__price-unit {
    font-size: 16px;
    color: #74798A;
    font-weight: 400;
}

.cmp-furnishing-pdp__price-tax {
    font-size: 10px;
    color: #74798A;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0;
}

.cmp-furnishing-pdp__collection-value {
    color: #202129;
    font-weight: 500;
}

/* ========================================================================
   Divider
   ======================================================================== */

.cmp-furnishing-pdp__divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 16px 0;
}

/* ========================================================================
   Colours Section
   ======================================================================== */

.cmp-furnishing-pdp__colors-section {
    margin-bottom: 40px;
}

.cmp-furnishing-pdp__colors-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.cmp-furnishing-pdp__collection-text,
.cmp-furnishing-pdp__colors-text {
    font-size: 13px;
    letter-spacing: 0;
    color: #74798A;
    font-weight: 300;
}

.cmp-furnishing-pdp__collection{
    margin-bottom: 24px;
}
.cmp-furnishing-pdp__collection,
.cmp-furnishing-pdp__colors-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 126%;
    color: #202129;
}

/* Color Swatches */
.cmp-furnishing-pdp__swatches {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cmp-furnishing-pdp__swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
    display: block;
    text-decoration: none;
}


.cmp-furnishing-pdp__swatch--active {
    border:2px solid #232426;
}

.cmp-furnishing-pdp__swatch-circle {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* ========================================================================
   CTA Section
   ======================================================================== */

.cmp-furnishing-pdp__cta-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.cmp-furnishing-pdp__cta-primary {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 16px 30px;
    background-color: #202129;
    color: #ffffff;
    text-decoration: none;
    border: none;
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    border-radius: 65px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    flex: 1;
}

.cmp-furnishing-pdp__cta-secondary {
    padding: 16px 30px;
    background-color: #ffffff;
    color: #202129;
    text-decoration: none;
    border: 1px solid #202129;
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    border-radius: 65px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    flex: 1;
}

.cmp-furnishing-pdp__cta-primary:disabled,
.cmp-furnishing-pdp__sticky-btn--sample:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.cmp-furnishing-pdp__out-of-stock {
    display: none;
}

.cmp-furnishing-pdp__out-of-stock p {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #B0B1B3;
    margin: 0;
}

.cmp-furnishing-pdp__cta-primary img,
.cmp-furnishing-pdp__cta-secondary img {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* Fabric Estimate Link */
.cmp-furnishing-pdp__fabric-estimate {
    margin-bottom: 20px;
}

.cmp-furnishing-pdp__fabric-estimate-link {
    font-size: 14px;
    font-weight: 500;
    color: #202129;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.cmp-furnishing-pdp__fabric-estimate-link:hover {
    text-decoration: underline;
}

/* ========================================================================
   Accordions
   ======================================================================== */

.cmp-furnishing-pdp__accordions {
    margin-top: 16px;
}

.cmp-furnishing-pdp__accordion {
    border-bottom: 1px solid #eee;
}

.cmp-furnishing-pdp__accordion-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 23px 0;
    cursor: pointer;
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    font-variant-numeric: lining-nums tabular-nums;
    color: #000000;
}

.cmp-furnishing-pdp__accordion-title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 120%;
}

.cmp-furnishing-pdp__accordion-icon {
    font-size: 18px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cmp-furnishing-pdp__accordion--open .cmp-furnishing-pdp__accordion-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cmp-furnishing-pdp__accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    -o-transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 16px 0 0;
}

.cmp-furnishing-pdp__accordion--open .cmp-furnishing-pdp__accordion-content {
    max-height: 2000px;
    padding-bottom: 20px;
    overflow: visible;
}

/* ========================================================================
   Material Details Table
   ======================================================================== */

.cmp-furnishing-pdp__material-table {
    width: 100%;
    border-collapse: collapse;
}

.cmp-furnishing-pdp__material-row:last-child {
    border-bottom: none;
}

.cmp-furnishing-pdp__material-key {
    padding: 10px 12px 10px 0;
    font-size: 14px;
    font-weight: 300;
    color: #74798A;
    width: max-content;
    vertical-align: top;
}

.cmp-furnishing-pdp__material-value {
    padding: 10px 0;
    font-size: 14px;
    color: #3B3D40;
    font-weight: 400;
    text-align: left;
}

/* End Use - icons with labels in material table */
.cmp-furnishing-pdp__end-use-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.cmp-furnishing-pdp__end-use-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.cmp-furnishing-pdp__end-use-icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cmp-furnishing-pdp__end-use-label {
    font-size: 14px;
    color: #3B3D40;
    font-family: Archivo;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: capitalize;
}

/* ========================================================================
   Performance Grid - 3 columns on desktop
   ======================================================================== */

.cmp-furnishing-pdp__performance-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}

.cmp-furnishing-pdp__performance-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    text-align: left;
    border-radius: 8px;
    gap: 12px;
}

.cmp-furnishing-pdp__performance-item > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
}

/* Fire Tests spans both columns and stacks value below */
.cmp-furnishing-pdp__performance-item--fire-tests {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / -1;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.cmp-furnishing-pdp__performance-icon {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.cmp-furnishing-pdp__performance-label {
    font-size: 14px;
    color: #74798A;
    margin-bottom: 2.5px;
    white-space: nowrap;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

/* ========================================================================
   Performance Tooltip
   ======================================================================== */

.cmp-furnishing-pdp__performance-tooltip-wrapper {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cmp-furnishing-pdp__performance-tooltip-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
}

.cmp-furnishing-pdp__performance-tooltip-btn img {
    width: 16px;
    height: 16px;
    display: block;
}

.cmp-furnishing-pdp__performance-tooltip-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #EBEBEB;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 400;
    color: #3B3D40;
    line-height: 1.5;
    white-space: normal;
    min-width: 200px;
    max-width: 260px;
    z-index: 60;
    text-align: left;
    pointer-events: none;
}

.cmp-furnishing-pdp__performance-tooltip-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #EBEBEB;
}

.cmp-furnishing-pdp__performance-tooltip-popup.active {
    display: block;
}

.cmp-furnishing-pdp__performance-value {
    font-size: 14px;
    font-weight: 500;
    color: #3B3D40;
    line-height: 20px;
    white-space: normal;
    word-break: break-word;
}

/* ========================================================================
   Care Grid - 2 columns on desktop
   ======================================================================== */

.cmp-furnishing-pdp__care-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cmp-furnishing-pdp__care-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.cmp-furnishing-pdp__care-icon {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.cmp-furnishing-pdp__care-text {
    font-size: 13px;
    color: #3B3D40;
    line-height: 1.5;
}

/* ========================================================================
   Rich Text (Product Description, Characteristics, Shipping)
   ======================================================================== */

.cmp-furnishing-pdp__rich-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.cmp-furnishing-pdp__rich-text p {
    margin: 0 0 12px;
}

.cmp-furnishing-pdp__rich-text ul {
    padding-left: 20px;
    margin: 0 0 12px;
    list-style-type: disc;
}


.cmp-furnishing-pdp__rich-text li {
    margin-bottom: 6px;
    font-family: Archivo;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    text-transform: capitalize;
}

.cmp-furnishing-pdp__rich-text strong {
    color: #3B3D40;
}

/* ========================================================================
   Mobile Sticky Bar
   ======================================================================== */

.cmp-furnishing-pdp__sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    box-shadow: 0px -2px 25px 0px #0000001A;
    z-index: 100;
    gap: 10px;
    border-top-left-radius:12px ;
    border-top-right-radius:12px ;
}

.cmp-furnishing-pdp__sticky-btn {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
}

.cmp-furnishing-pdp__sticky-btn img {
    width: 20px;
    height: 20px;
}

.cmp-furnishing-pdp__sticky-btn--sample,
.cmp-furnishing-pdp__sticky-btn--sample:disabled {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cmp-furnishing-pdp__sticky-btn--sample {
    background: #202129;
    color: #fff;
    border: 1px solid #202129;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 12px 16px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
}

.cmp-furnishing-pdp__sticky-btn--find {
    background: #ffffff;
    color: #000000;
    border: 0.5px solid #000000;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 12px 16px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
}

/* ========================================================================
   Share Tooltip
   ======================================================================== */

.cmp-furnishing-pdp__share-wrapper {
    position: relative;
}

.cmp-furnishing-pdp__share-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: -50px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 12px 20px 0px #00000014;
    box-shadow: 0px 12px 20px 0px #00000014;
    padding: 8.5px;
    z-index: 200;
    min-width: 264px;
    text-align: center;
}

.cmp-furnishing-pdp__share-tooltip.active {
    display: block;
}

.cmp-furnishing-pdp__share-tooltip-arrow {
    position: absolute;
    top: -8px;
    right: 50px;
    width: 16px;
    height: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
    -webkit-box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}

.cmp-furnishing-pdp__share-tooltip-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cmp-furnishing-pdp__share-tooltip-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #5A5A5A;
    font-size: 10px;
    font-weight: 400;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.cmp-furnishing-pdp__share-tooltip-item:hover {
    opacity: 0.75;
}

.cmp-furnishing-pdp__share-tooltip-item img {
    width: 24px;
    height: 24px;
}

.cmp-furnishing-pdp__share-tooltip-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
}

.cmp-furnishing-pdp__share-tooltip-title {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #202129;
}

.cmp-furnishing-pdp__share-tooltip-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

.cmp-furnishing-pdp__share-tooltip-close img {
    width: 20px;
    height: 20px;
}

/* Share overlay (mobile only) */
.cmp-furnishing-pdp__share-overlay {
    display: none;
}


/* ========================================================================
   Fabric Estimate Banner
   ======================================================================== */

.cmp-furnishing-pdp__fabric-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    background-color: #F5F5F5;
    border-radius: 10px;
    border: 1px solid #EEEEEF;
    padding: 16px 19px ;
    margin-bottom: 24px;
}

.cmp-furnishing-pdp__fabric-banner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.cmp-furnishing-pdp__fabric-banner-icon {
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cmp-furnishing-pdp__fabric-banner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.cmp-furnishing-pdp__fabric-banner-title {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    font-variant-numeric: lining-nums tabular-nums;
    color: #2E2F32;
    margin: 0;
}

.cmp-furnishing-pdp__fabric-banner-desc {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 130%;  
    letter-spacing: 0;
    color: #75787B;
    margin: 0;
}

.cmp-furnishing-pdp__fabric-banner-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #232426;
    background-color: transparent;
    border: 0.5px solid #232426;
    border-radius: 60px;
    padding: 8px 25px;
    text-decoration: none;
    white-space: nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    -o-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
}


/* ========================================================================
   Responsive - Tablet (max-width: 991px)
   ======================================================================== */

@media (max-width: 991px) {
    .cmp-furnishing-pdp {
        padding: 20px 30px;
    }

    .cmp-furnishing-pdp__container {
        gap: 24px;
    }

    .cmp-furnishing-pdp__gallery {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .cmp-furnishing-pdp__info {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
        flex: 1 1 45%;
        max-width: 45%;
    }

    .cmp-furnishing-pdp__title {
        font-size: 20px;
    }

    .cmp-furnishing-pdp__performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
}


/* ========================================================================
   Responsive - Mobile (max-width: 767px)
   ======================================================================== */

@media (max-width: 767px) {
    .cmp-furnishing-pdp {
        padding: 0;
        width: 100%;
    }

    .cmp-furnishing-pdp__desktop-expand {
        display: none;
    }

    /* Show sticky bar on mobile */
    .cmp-furnishing-pdp__sticky-bar {
        display: block;
    }

    /* Hide bottom navigation icons (site global) */
    .bottom_navigation__icons_wrapper {
        display: none;
    }

    .cmp-furnishing-pdp__container {
        display: block;
        margin-bottom: 0;
    }

    .cmp-furnishing-pdp__gallery {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
    }

    /* Hide desktop gallery; show mobile carousel */
    .cmp-furnishing-pdp__gallery-desktop {
        display: none;
    }

    .cmp-furnishing-pdp__gallery-mobile.cmp-furnishing-pdp__slider {
        display: block;
        margin: 0;
        max-width: 100vw;
        width: 100vw;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* Carousel slides - one image per slide at 100vw */
    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set {
        margin: 0;
        width: 100vw;
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-list,
    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-track {
        height: 100vw;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-slide {
        height: 100vw;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-slide .cmp-furnishing-pdp__image-item {
        width: 100%;
        height: 100vw;
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .cmp-furnishing-pdp__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .cmp-furnishing-pdp__image-item:hover .cmp-furnishing-pdp__image {
        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);
    }

    /* Slick dots - pill style */
    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-dots {
        position: static;
        padding-bottom: 8px;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-dots li {
        position: relative;
        display: inline-block;
        height: 2px;
        border-radius: 50px;
        padding: 0;
        background-color: #00000026;
        margin: 0 2.5px;
        width: 35px;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-dots li.slick-active {
        background-color: #000000;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-dots li button:before {
        display: none;
        color: #202129;
    }

    .cmp-furnishing-pdp__slider .cmp-furnishing-pdp__image-set .slick-dots li button {
        display: none;
    }

    /* Info section full width on mobile */
    .cmp-furnishing-pdp__info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 16px;
    }

    .cmp-furnishing-pdp__title {
        font-size: 14px;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .cmp-furnishing-pdp__price {
        margin-bottom: 24px;
    }

    .cmp-furnishing-pdp__price-value {
        font-size: 14px;
        font-weight: 400;
    }

    /* Hide desktop CTAs on mobile - sticky bar replaces them */
    .cmp-furnishing-pdp__cta-section {
        display: none;
    }

    .cmp-furnishing-pdp__fabric-estimate {
        display: none;
    }

    /* Show sticky bar */
    .cmp-furnishing-pdp__sticky-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        box-shadow: 0px -2px 25px 0px #0000001A;
    }

    /* Performance grid: 2 columns on mobile */
    .cmp-furnishing-pdp__performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
    }

    .cmp-furnishing-pdp__performance-item {
        padding: 0;
        -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }

    .cmp-furnishing-pdp__performance-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-top: 2px;
    }

    /* Care grid: 1 column on mobile */
    .cmp-furnishing-pdp__care-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Colors section mobile adjustments */
    .cmp-furnishing-pdp__colors-section {
        margin-bottom: 30px;
    }

    .cmp-furnishing-pdp__colors-label {
        margin-bottom: 10px;
    }

    /* Gallery mobile wrapper needs relative positioning for the expand button */
    .cmp-furnishing-pdp__gallery-mobile.cmp-furnishing-pdp__slider {
        position: relative;
    }

    /* Expand button on mobile carousel */
    .cmp-furnishing-pdp__carousel-expand {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 7px;
        right: 8px;
        z-index: 10;
        background: transparent;
        border: none;
        width: 40px;
        height: 40px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    .cmp-furnishing-pdp__carousel-expand img {
        width: 40px;
        height: 40px;
        display: block;
    }

    /* Fullscreen image popup */
    .cmp-furnishing-pdp__fullscreen {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 500;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        padding-top: 56px;
    }

    .cmp-furnishing-pdp__fullscreen.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .cmp-furnishing-pdp__fullscreen-close {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        z-index: 10;
    }

    .cmp-furnishing-pdp__fullscreen-close img {
        width: 24px;
        height: 24px;
        display: block;
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    .cmp-furnishing-pdp__fullscreen-carousel {
        width: 100%;
    }

    .cmp-furnishing-pdp__out-of-stock p {
        font-size: 22px;
    }
    .cmp-furnishing-pdp__fullscreen-image-set .slick-list,
    .cmp-furnishing-pdp__fullscreen-image-set .slick-track {
        height: calc(100vw * 585 / 458);
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-slide {
        height: calc(100vw * 585 / 458);
    }

    .cmp-furnishing-pdp__fullscreen-image-item {
        width: 100%;
        height: calc(100vw * 585 / 458);
        background: #fff;
        overflow: hidden;
    }

    .cmp-furnishing-pdp__fullscreen-image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        background: #fff;
        display: block;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots {
        position: static;
        padding: 12px 0 0;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li {
        position: relative;
        display: inline-block;
        height: 2px;
        border-radius: 50px;
        padding: 0;
        background-color: #00000026;
        margin: 0 2.5px;
        width: 35px;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li.slick-active {
        background-color: #000000;
    }

    .cmp-furnishing-pdp__fullscreen-image-set .slick-dots li button {
        display: none;
    }

    /* Share: bottom sheet on mobile */
    .cmp-furnishing-pdp__share-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(38, 40, 43, 0.5);
        z-index: 299;
    }

    .cmp-furnishing-pdp__share-overlay.active {
        display: block;
    }

    .cmp-furnishing-pdp__share-tooltip {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        min-width: unset;
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 8px 21px 12.5px 21px;
        z-index: 300;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        display: block;
    }

    .cmp-furnishing-pdp__share-tooltip.active {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .cmp-furnishing-pdp__share-tooltip-arrow {
        display: none;
    }

    .cmp-furnishing-pdp__share-tooltip-header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        position: relative;
        margin-bottom: 20px;
    }

    .cmp-furnishing-pdp__share-tooltip-title {
        font-size: 12px;
    }

    .cmp-furnishing-pdp__share-tooltip-close {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: absolute;
        top: -32px;
        right: -20px;
    }

    .cmp-furnishing-pdp__share-tooltip-close img {
        width: 24px;
        height: 24px;
    }

    .cmp-furnishing-pdp__share-tooltip-items {
        justify-content: space-between;
    }

    /* Accordion title smaller on mobile */
    .cmp-furnishing-pdp__accordion-title {
        font-size: 14px;
    }

    .cmp-furnishing-pdp__accordion-header {
        padding: 18px 0;
    }

    /* Material table mobile adjustments */
    .cmp-furnishing-pdp__material-key,
    .cmp-furnishing-pdp__material-value {
        font-size: 14px;
        padding: 12.5px 8px 12.5px 0;
    }


    .cmp-furnishing-pdp__fabric-banner {
    padding: 12px;
}

.cmp-furnishing-pdp__fabric-banner-icon {
    width: 44px;
    height: 44px;
}

.cmp-furnishing-pdp__action-btn--download img {
    width: 20px;
    height: 20px;
}

.cmp-furnishing-pdp__action-btn--wishlist {
    width: 20px;
    height: 20px;
}

.cmp-furnishing-pdp__fabric-banner-desc {
    font-size: 12px;
    font-weight: 300;
}

.cmp-furnishing-pdp__fabric-banner-btn {
    padding: 8px 15px;
}

.cmp-furnishing-pdp__badge {
    font-size: 10px;
}


.cmp-furnishing-pdp__action-btn--share,
.cmp-furnishing-pdp__like-icon {
    width: 20px;
    height: 20px;
}

.cmp-furnishing-pdp__collection-text,
.cmp-furnishing-pdp__colors-text {
    font-size: 14px;
}

.cmp-furnishing-pdp__collection,
.cmp-furnishing-pdp__colors-name {
    font-size: 14px;
}

}
/* ========================================================================
   Responsive - Small Mobile (max-width: 400px)
   ======================================================================== */

@media (max-width: 400px) {
    .cmp-furnishing-pdp__title {
        font-size: 16px;
    }

    .cmp-furnishing-pdp__swatch {
        width: 40px;
        height: 40px;
    }

    .cmp-furnishing-pdp__sticky-btn {
        font-size: 12px;
        padding: 10px 12px;
    }

    .cmp-furnishing-pdp__performance-grid {
        gap: 8px;
    }

    .cmp-furnishing-pdp__performance-item {
        padding: 0;
    }

    .cmp-furnishing-pdp__performance-label {
        font-size: 11px;
    }

    .cmp-furnishing-pdp__performance-value {
        font-size: 12px;
    }

    .cmp-furnishing-pdp__care-text {
        font-size: 12px;
    }
}
