.furnishing-plp{
  /* Furnishing PLP Component Styles */
font-family: Archivo;
.cmp-furnishing-plp {
  padding: 40px;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  font-family: Archivo, sans-serif;
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (max-width: 650px) {
  .cmp-furnishing-plp {
    padding: 20px;
  }
}

/* ==================== Header ==================== */

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

.cmp-furnishing-plp__title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.cmp-furnishing-plp__count {
  font-size: 14px;
  color: #888;
}

/* ==================== Filter / Sort Bar ==================== */

.cmp-furnishing-plp__filters {
  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;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
}

.cmp-furnishing-plp__filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmp-furnishing-plp__filter {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cmp-furnishing-plp__filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 1px solid #ebeced;
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #202129;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cmp-furnishing-plp__filter-btn:hover {
  border-color: #999;
}

.cmp-furnishing-plp__filter.active .cmp-furnishing-plp__filter-btn {
  border-color: #202129;
  color: #202129;
  background: #f5f5f5;
}

.cmp-furnishing-plp__filter-btn svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cmp-furnishing-plp__filter.open .cmp-furnishing-plp__filter-btn svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cmp-furnishing-plp__filter.open .cmp-furnishing-plp__filter-btn {
  color: #9DA1B0;
}

/* ==================== Filter Dropdown ==================== */

.cmp-furnishing-plp__filter-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 12px;
  z-index: 100;
}

.cmp-furnishing-plp__filter.open .cmp-furnishing-plp__filter-dropdown {
  display: block;
}

.cmp-furnishing-plp__filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #202129;
  border-radius: 4px;
  position: relative;
  border-bottom: 1px solid #E6E7EB;
  border-radius: 0;
  @media screen and (max-width:767px){
    padding: 15px 12px;
}
}


.cmp-furnishing-plp__filter-option:hover {
  background: #f5f5f5;
}

.cmp-furnishing-plp__filter-option input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Visual checkbox box */
.cmp-furnishing-plp__filter-option::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid #D5D7DE;
  border-radius: 3px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
}

/* Checkmark tick when checked */
.cmp-furnishing-plp__filter-option:has(input[type="checkbox"]:checked)::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: translateY(-65%) rotate(45deg);
  -ms-transform: translateY(-65%) rotate(45deg);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

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

.cmp-furnishing-plp__filter-dropdown--price {
  min-width: 300px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cmp-furnishing-plp__price-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

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

.cmp-furnishing-plp__price-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: Archivo, sans-serif;
  text-align: center;
  color: #202129;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
  min-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.cmp-furnishing-plp__price-input::-webkit-outer-spin-button,
.cmp-furnishing-plp__price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cmp-furnishing-plp__price-input:focus {
  border-color: #202129;
}

.cmp-furnishing-plp__price-to {
  font-size: 13px;
  color: #888;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Range track container */
.cmp-furnishing-plp__price-range-wrap {
  position: relative;
  height: 20px;
  margin: 4px 8px;
}

/* Grey background track */
.cmp-furnishing-plp__price-range-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Filled section between the two thumbs */
.cmp-furnishing-plp__price-range-fill {
  position: absolute;
  top: 50%;
  height: 3px;
  background: #202129;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

/* Two range inputs stacked */
.cmp-furnishing-plp__price-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}

.cmp-furnishing-plp__price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #202129;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 3;
}

.cmp-furnishing-plp__price-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #202129;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
}

.cmp-furnishing-plp__price-range::-webkit-slider-runnable-track {
  background: transparent;
}

.cmp-furnishing-plp__price-range::-moz-range-track {
  background: transparent;
}

/* Mobile price slider panel */
.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__price-slider {
  padding: 16px 8px;
}

@media screen and (max-width: 650px) {
  .cmp-furnishing-plp__filter-dropdown--price {
    min-width: 260px;
  }
}

/* ==================== Sort ==================== */

.cmp-furnishing-plp__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.cmp-furnishing-plp__sort-custom {
  position: relative;
}

.cmp-furnishing-plp__sort-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #ebeced;
  border-radius: 30px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #202129;
  cursor: pointer;
  white-space: nowrap;
}

.cmp-furnishing-plp__sort-btn > img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.cmp-furnishing-plp__sort-btn svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cmp-furnishing-plp__sort-custom.open .cmp-furnishing-plp__sort-btn svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cmp-furnishing-plp__sort-dropdown {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  padding-top: 52px;
  z-index: -1;
}

.cmp-furnishing-plp__sort-custom.open .cmp-furnishing-plp__sort-dropdown {
  display: block;
}

.cmp-furnishing-plp__sort-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  color: #202129;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.cmp-furnishing-plp__sort-option:hover {
  background: #f5f5f5;
}

.cmp-furnishing-plp__sort-option img {
  width: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ==================== Mobile Filter/Sort Toggle ==================== */

.cmp-furnishing-plp__mobile-toggles {
  display: none;
}

/* ==================== Active Filters ==================== */

.cmp-furnishing-plp__active-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.cmp-furnishing-plp__active-filters-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmp-furnishing-plp__active-filter-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #cacbcc;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #202129;
  white-space: nowrap;
}

.cmp-furnishing-plp__active-filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  padding: 0;
  line-height: 1;
}

.cmp-furnishing-plp__clear-filters {
  background: none;
  border: none;
  color: #202129;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* ==================== No Results ==================== */

.cmp-furnishing-plp__no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 16px;
}

/* ==================== Product Grid ==================== */

/*
 * Grid: 4 equal columns, square cells.
 * Cards: aspect-ratio 1/1 → each row height = column width → square cells.
 * Banner: grid-column span 2 + grid-row span 2 = 4 grid cells (2×2 square area).
 *         With square cells this makes the banner exactly square.
 */

.cmp-furnishing-plp__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(340px, auto);
  grid-auto-flow: dense;
  gap: 40px 20px;
  padding: 0;
  width: 100%;
}

/* ==================== Product Card ==================== */

.cmp-furnishing-plp__card {
  position: relative;
  background: #fff;
  /* Square cell: the image's 1/1 aspect-ratio sets the row height */
}

.cmp-furnishing-plp__card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 16px;
  aspect-ratio: 1.09 / 1;
}

.cmp-furnishing-plp__card-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  /* Square card */
  aspect-ratio: 1 / 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cmp-furnishing-plp__card-img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.cmp-furnishing-plp__card:hover .cmp-furnishing-plp__card-img--default {
  opacity: 0;
}

.cmp-furnishing-plp__card:hover .cmp-furnishing-plp__card-img--hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .cmp-furnishing-plp__card-img--hover {
    display: none;
  }
}

.cmp-furnishing-plp__card-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.cmp-furnishing-plp__card-wishlist {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: transparent;
  border-radius: 50%;
  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;
  cursor: pointer;
  @media screen and (max-width:650px){
    right: 0;
  }
}

.cmp-furnishing-plp__card-wishlist img,
.cmp-furnishing-plp__wishlist-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media screen and (max-width:650px){
  .cmp-furnishing-plp__wishlist-icon{
    width: 18px !important;
    height: 18px !important;
  }
}


.cmp-furnishing-plp__card-wishlist[data-wishlist-status="added"] .cmp-furnishing-plp__wishlist-icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.cmp-furnishing-plp__card-info {
  padding: 10px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmp-furnishing-plp__card-title-link {
  text-decoration: none;
  color: inherit;
}

.cmp-furnishing-plp__card-title {
  font-size: 14px;
  font-weight: 300;
  color: #232426;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  width: 85%;
}
@media screen and (max-width:767px){
  .cmp-furnishing-plp__card-title{
    width: 80%;
  }
}

/* Color Swatch Dots */
.cmp-furnishing-plp__swatches {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmp-furnishing-plp__swatch-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -5px;
}
.cmp-furnishing-plp__swatch-dot:first-child{
  margin-left: 0;
}

.cmp-furnishing-plp__swatch-dot:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.cmp-furnishing-plp__swatch-more {
  color: #53565A;
  white-space: nowrap;
  margin-left: 2px;
  font-size: 12px;
}

/* Price */
.cmp-furnishing-plp__card-price {
  font-size: 14px;
  font-weight: 500;
  color: #202129;
  margin: 0;
}

/* ==================== Promo Banner ==================== */

/*
 * Banner occupies 6 grid cells (2 columns × 3 rows) and is visually square.
 * With square cards:  cell width = cell height = W
 * Banner size: (2W + 1gap) × (3W + 2gap) ≈ 2W × 3W — to force square we
 * override with aspect-ratio: 1/1 on the inner image/content area.
 */

.cmp-furnishing-plp__banner {
  grid-column: span 3;
  grid-row: span 2;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* Applied via JS when all product cards are filtered/hidden */
.cmp-furnishing-plp__grid--no-cards .cmp-furnishing-plp__banner {
  aspect-ratio: 1.26 / 1;
  grid-column: span 2;
}

/* When banner is the only item in the grid (no product cards), span full width */
.cmp-furnishing-plp__banner:only-child {
  grid-column: 1 / -1;
  grid-row: span 1;
  aspect-ratio: 16 / 7;
}

.cmp-furnishing-plp__banner-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cmp-furnishing-plp__banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cmp-furnishing-plp__banner:hover .cmp-furnishing-plp__banner-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Bottom gradient overlay so text is readable over the image */
.cmp-furnishing-plp__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0%, rgba(0, 0, 0, 0.55)),
    color-stop(50%, rgba(0, 0, 0, 0.15)),
    to(transparent)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Content pinned to bottom-left */
.cmp-furnishing-plp__banner-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.cmp-furnishing-plp__banner-icon {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-object-position: left;
  object-position: left;
  display: block;
}

.cmp-furnishing-plp__banner-title {
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.cmp-furnishing-plp__banner-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}

.cmp-furnishing-plp__banner-cta,
.cmp-furnishing-plp__banner-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 6px;
}

.cmp-furnishing-plp__banner-cta img {
  width: 20px;
  height: 20px;
}

.cmp-furnishing-plp__banner-cta p,
.cmp-furnishing-plp__banner-download p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

/* Hide the curve border images — not used in this layout */
.cmp-furnishing-plp__banner-cta .curve-border-before,
.cmp-furnishing-plp__banner-cta .curve-border-after {
  display: none;
}

/* ==================== Load More ==================== */

.cmp-furnishing-plp__load-more {
  text-align: center;
  padding: 8px 0 32px;
}

.cmp-furnishing-plp__load-more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  border: 1px solid #e6e7eb;
  background: #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #202129;
}

.cmp-furnishing-plp__load-more-btn:hover {
  border-color: #202129;
}

/* ==================== Mobile Filter Overlay ==================== */

.cmp-furnishing-plp__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1002;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cmp-furnishing-plp__mobile-overlay.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cmp-furnishing-plp__mobile-overlay-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: 16px 20px;
  border-bottom: 1px solid #F2F3F5;
}

.cmp-furnishing-plp__mobile-overlay-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.cmp-furnishing-plp__mobile-overlay-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  padding: 0;
  position: relative;
}
.cmp-furnishing-plp__mobile-overlay-close::before{
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid #F1F3F5;
  border-radius: 50%;
}

.cmp-furnishing-plp__mobile-overlay-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cmp-furnishing-plp__mobile-overlay-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cmp-furnishing-plp__mobile-overlay-clear {
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 16px;
    width: 38%;
    font-size: 12px;
    font-weight: 700;
    color: #202129;
    border: none;
}

.cmp-furnishing-plp__mobile-overlay-apply {
    padding: 16px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 62%;
    -webkit-transition: background 0.2s ease, opacity 0.2s ease;
    -o-transition: background 0.2s ease, opacity 0.2s ease;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.cmp-furnishing-plp__mobile-overlay-apply:disabled {
  background: #D5D7DE;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

/* ==================== Mobile Filter: two-panel tab layout ==================== */

.cmp-furnishing-plp__mobile-overlay-body--filter {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  overflow: hidden !important;
  padding: 0 !important;
  height: 100%;
}

.cmp-furnishing-plp__mobile-filter-tabs {
  width: 38%;
  min-width: 130px;
  background: #f2f3f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cmp-furnishing-plp__mobile-filter-tab {
  font-size: 12px;
  font-weight: 400;
  font-family: Archivo, sans-serif;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #666;
  padding: 15px 12px;
}

.cmp-furnishing-plp__mobile-filter-tab.active {
  background: #fff;
  color: #202129;
  font-weight: 500;
}

.cmp-furnishing-plp__mobile-filter-tab.active::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.cmp-furnishing-plp__mobile-filter-tab .tab-count {
  color: #202129;
  min-width: 20px;
  height: 20px;
  font-size: 12px;
  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-weight: 600;
  font-family: Archivo, sans-serif;
}

.cmp-furnishing-plp__mobile-filter-options {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  padding-top: 0;
}

.cmp-furnishing-plp__mobile-filter-opt-panel {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cmp-furnishing-plp__mobile-filter-opt-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: Archivo, sans-serif;
  cursor: pointer;
  font-weight: 400;
  color: #202129;
  position: relative;
  padding-left: 0;
}

.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__filter-option input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  opacity: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 0;
}

.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__filter-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid #D5D7DE;
  border-radius: 3px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
}
.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__filter-option:has(input[type="checkbox"]:checked) > span{
  font-weight: 500;
  color: #000;
}

.cmp-furnishing-plp__mobile-filter-opt-panel .cmp-furnishing-plp__filter-option:has(input[type="checkbox"]:checked)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: translateY(-65%) rotate(45deg);
  -ms-transform: translateY(-65%) rotate(45deg);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* ==================== Responsive ==================== */

@media (max-width: 1200px) {
  .cmp-furnishing-plp {
    padding: 40px;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .cmp-furnishing-plp {
    padding: 24px;
    padding-top: 0;
  }

  .cmp-furnishing-plp__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(340px, auto);
    grid-auto-flow: dense;
    gap: 14px;
  }

  /* Banner: 2 cols × 2 rows = 4 cells (square) in 3-col grid */
  .cmp-furnishing-plp__banner {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }

  .cmp-furnishing-plp__banner:only-child {
    grid-column: 1 / -1;
    grid-row: span 1;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 767px) {
  .cmp-furnishing-plp {
    padding: 16px;
    padding-top: 0;
  }

  /* ---- Filters: hide desktop group + sort, show floating pill ---- */
  .cmp-furnishing-plp__filter-group,
  .cmp-furnishing-plp__sort {
    display: none;
  }

  .cmp-furnishing-plp__mobile-toggles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 24px;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    min-width: 180px;
    z-index: 200;
    background: rgba(52, 61, 76, 0.12);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 4px;
    border-radius: 34px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }

  .cmp-furnishing-plp__mobile-sort-btn,
  .cmp-furnishing-plp__mobile-filter-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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: 4px;
    padding: 12px 20px;
    border: none;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #202129;
    cursor: pointer;
    white-space: nowrap;
  }

  .cmp-furnishing-plp__mobile-sort-btn {
    border-top-left-radius: 27px;
    border-bottom-left-radius: 27px;
    position: relative;
    display: none;
  }

  .cmp-furnishing-plp__mobile-sort-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: #dfdfdf;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cmp-furnishing-plp__mobile-filter-btn {
    border-radius: 27px;
  }

  .cmp-furnishing-plp__filter-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #ED1C24;
    border-radius: 50%;
    margin-left: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  /* ---- 2-column grid on mobile ---- */
  .cmp-furnishing-plp__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(140px, auto);
    grid-auto-flow: dense;
    gap:36px 10px;
  }

  /*
   * Mobile banner: spans both columns, natural 16/9 landscape height.
   * Resets the desktop grid-row span so it doesn't stretch 2 rows in 2-col grid.
   */
  .cmp-furnishing-plp__banner {
    grid-column: 1 / -1;
    grid-row: span 1;
    aspect-ratio: 1/1;
    border-radius: 12px;
  }

  .cmp-furnishing-plp__banner-content {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cmp-furnishing-plp__banner-title {
    font-size: 18px;
    font-weight: 500;
  }

  .cmp-furnishing-plp__banner-icon {
    height: 20px;
  }

  .cmp-furnishing-plp__banner-cta p,
  .cmp-furnishing-plp__banner-download p {
    font-size: 12px;
    font-weight: 300;
  }

  .cmp-furnishing-plp__banner-cta img {
    width: 12px;
    height: 12px;
  }

  /* Card info */
  .cmp-furnishing-plp__card-info {
    padding: 12px 0 0;
    gap: 12px;
  }

  .cmp-furnishing-plp__card-title {
    font-size: 13px;
  }

  .cmp-furnishing-plp__card-price {
    font-size: 12px;
  }

  .cmp-furnishing-plp__swatch-dot {
    width: 12px;
    height: 12px;
  }

  /* Load more */
  .cmp-furnishing-plp__load-more-btn {
    width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* Active filters hidden on mobile (shown in overlay) */
  .cmp-furnishing-plp__active-filters {
    display: none;
  }

  /* No results */
  .cmp-furnishing-plp__no-results {
    padding: 10px;
  }
}

@media (max-width: 400px) {
  .cmp-furnishing-plp__grid {
    gap:36px 8px;
  }

  .cmp-furnishing-plp__card-title {
    font-size: 11px;
  }

  .cmp-furnishing-plp__card-price {
    font-size: 11px;
  }
}

}