.spacetouch-reviews-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 0;
}

.spacetouch-reviews-slider {
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  padding: 24px 0;
  position: relative;
}

.spacetouch-reviews-slider-track {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 0;
  overflow: visible;
}

.spacetouch-review-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 2 gaps of 24px */
  max-width: calc((100% - 48px) / 3);
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-family: inherit;
}

.spacetouch-review-header {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #222;
}
.spacetouch-review-rating {
  margin-bottom: 10px;
}
.spacetouch-star {
  color: #FFD600;
  font-size: 1.1em;
  margin-left: 2px;
  opacity: 0.7;
}
.spacetouch-star.active {
  color: #FFD600;
  opacity: 1;
}
.spacetouch-review-text {
  margin-bottom: 12px;
  color: #444;
  font-size: 1em;
  min-height: 32px;
}
.spacetouch-short-text {
  display: inline;
}
.spacetouch-full-text {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.spacetouch-full-text.show {
  display: inline;
  max-height: 200px;
}
.spacetouch-read-more {
  color: #444;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1em;
  transition: color 0.2s;
}
.spacetouch-read-more:hover {
  color: #0073e6;
}
.spacetouch-slider-prev,
.spacetouch-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: #fff;
  border: 2px solid #FFD600;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.13);
  font-size: 2em;
  color: #FFD600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spacetouch-slider-prev:disabled,
.spacetouch-slider-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.spacetouch-slider-prev:hover,
.spacetouch-slider-next:hover {
  background: #FFD600;
  color: #fff;
  border-color: #FFD600;
}
.spacetouch-slider-prev {
  right: unset;
  left: -10px;
}
.spacetouch-slider-next {
  left: unset;
  right: -10px;
}
@media (max-width: 1000px) {
  .spacetouch-reviews-slider-track {
    gap: 16px;
  }
  .spacetouch-review-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .spacetouch-slider-prev, .spacetouch-slider-next {
    width: 36px;
    height: 36px;
    font-size: 1.3em;
  }
  .spacetouch-slider-prev {
    left: -14px;
  }
  .spacetouch-slider-next {
    right: -14px;
  }
}
@media (max-width: 700px) {
  .spacetouch-reviews-slider-track {
    gap: 0;
  }
  .spacetouch-review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
} 