/* Similar Furnishing - product grid styles */

.cmp-similar-furnishing {
  padding: 40px;
  padding-top: 0;
  max-width: unset;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: 'Archivo', sans-serif;
}

.cmp-similar-furnishing__header {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.cmp-similar-furnishing__title {
  font-weight: 500;
  color: #202129;
  margin: 0;
  font-family: Archivo;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
}

.cmp-similar-furnishing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.cmp-similar-furnishing__card {
  position: relative;
  background: #fff;
}

.cmp-similar-furnishing__card-img-wrapper {
  position: relative;
  background: #f5f5f5;
  border-radius: 16px;
  aspect-ratio: 1.09 / 1;
}

.cmp-similar-furnishing__card-link {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
}

.cmp-similar-furnishing__card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 12px !important;
}

.cmp-similar-furnishing__card-img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.cmp-similar-furnishing__card-badge {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #202129;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  line-height: 140%;
}

.cmp-similar-furnishing__like-btn {
  position: absolute;
  bottom: -35px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  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;
  z-index: 3;
  padding: 0;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cmp-similar-furnishing__like-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.cmp-similar-furnishing__card:hover .cmp-similar-furnishing__card-img--default {
  opacity: 0;
}

.cmp-similar-furnishing__card:hover .cmp-similar-furnishing__card-img--hover {
  opacity: 1;
}

.cmp-similar-furnishing__card-content {
  padding: 10px 0 0;
}

.cmp-similar-furnishing__card-title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 6px;
}

.cmp-similar-furnishing__card-title-link {
  text-decoration: none;
  color: inherit;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

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


.cmp-similar-furnishing__card-price {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #202129;
  margin: 0;
  line-height: 150%;
}

.cmp-similar-furnishing__price-unit {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

.cmp-similar-furnishing__load-more {
  text-align: center;
  padding: 8px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cmp-similar-furnishing__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;
  background: #ffffff;
  border: 1px solid #e6e7eb;
  border-radius: 60px;
  font-size: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  color: #202129;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.cmp-similar-furnishing__load-more-btn:hover {
  border-color: #202129;
}

@media screen and (max-width: 1024px) {
  .cmp-similar-furnishing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .cmp-similar-furnishing__card-badge {
    font-size: 10px;

  }

  .cmp-similar-furnishing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 8px;
  }


  .cmp-similar-furnishing__card-link {
    border-radius: 6px;
  }

  .cmp-similar-furnishing__load-more-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
  }

  .cmp-similar-furnishing__like-btn {
    bottom: -30px;
    right: 0px;
    width: 18px;
    height: 18px;
  }

  .cmp-similar-furnishing__title {
    font-size: 24px;
    width: 80%;
  }
}
