/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:51 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:57 Expected ":"

**/
.review-slider-section {
  /* background: var(--bg-color); */
  /* background: linear-gradient(180deg, rgba(240, 113, 34, 1) 35%, rgba(0, 0, 0, 1) 90%); */
  width: 100%;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background:#F07122;
}

.review-slider-inner {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.review-slider-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    border: 1px solid #000;
    background: #000;
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 24px;
}

.review-slider-heading {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 500;
}

.review-slider-heading p {
  margin: 0;
}

.review-slider-subheading {
  color: var(--heading-color);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 20px;
}

.review-slider-subheading p {
  margin: 0;
}

.review-slider-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.review-summary-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.review-summary-stars {
  display: inline-flex;
  padding: 4px 6px;
  border-radius: 4px;
  gap: 2px;
}
.review-summary-stars svg {
    fill: var(--heading-color);
}

.review-summary-stars .star-icon {
  width: 18px;
  height: 18px;
}

.review-summary-text {
  font-size: 14px;
  color: var(--heading-color);
}

.review-slider-subtext {
  font-size: 14px;
  color: var(--heading-color);
  color:#fff;
  margin: 16px 10px 24px;
  text-align: center;
}

.review-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.review-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.review-slide {
  box-sizing: border-box;
  padding: 8px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 2px;
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.star-icon {
  width: 16px;
  height: 16px;
}

.review-author {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.review-author .review-time {
  color: #aaa;
}

.review-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--name-color);
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
  flex-grow: 1;
}

.review-reply {
  display: flex;
  gap: 10px;
  background: var(--reply-bg);
  border-left: 3px solid var(--star-color);
  border-radius: 4px;
  padding: 10px 12px;
  margin-top: 14px;
}

.reply-icon svg {
  width: 16px;
  height: 16px;
  color: var(--star-color);
  margin-top: 2px;
}

.reply-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--reply-text);
  margin-bottom: 4px;
}

.reply-time {
  font-weight: 400;
  color: #999;
}

.reply-text {
  font-size: 13px;
  color: var(--reply-text);
  line-height: 1.4;
}

.review-read-more {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--star-color);
  text-decoration: underline;
}

.review-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.review-slider-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--text-color);
}

.review-slider-prev {
  left: -8px;
}

.review-slider-next {
  right: -8px;
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--card-border);
  cursor: pointer;
  padding: 0;
}

.review-dot.active {
  background: var(--heading-color);
}

@media screen and (max-width: 749px) {
  .review-slider-heading {
    font-size: 24px;
  }
  .review-slider-subheading {
    font-size: 18px;
  }
  .review-slider-arrow {
    display: none;
  }
}