/* Accordion */
.guarantee.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.accordion-icon.rotate {
  transform: rotate(180deg);
}

.accordion-icon.plus::before {
  content: "+";
}

.accordion-icon.minus::before {
  content: "–";
}

/* Lightbox */
/* Thumbnail Styles */
.thumbnail {
  cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 92px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #F9F7F4;
  opacity: 1;
  z-index: 1;
  overflow: auto;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease-out;
}

.lightbox-img {
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 20px;
  will-change: transform, opacity;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s;
  background-color: #DAD9D8;
  border-radius: 50%;
  overflow: hidden;
  height: 2rem;
  width: 2rem;
}

.lightbox-nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-100%);
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s;
  background-color: #DAD9D8;
  border-radius: 50%;
  overflow: hidden;
  height: 2rem;
  width: 2rem;
}
.next-btn {
  margin-left: 37vh;
}
.prev-btn {
  margin-right: 37vh;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  cursor: pointer;
  background-color: #DAD9D8;
  transition: all 0.3s ease-out;
}

.dot.active {
  background-color: #127749 !important;
  width: 55px !important;
}
.rlx24 .model-carousel-mobile .slick-dots li button,
.rlx24 .model-carousel-mobile .slick-dots li {
  height: 4px;
  border-radius: 2px;
}