/** Shopify CDN: Minification failed

Line 133:1 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.reviews-section {
  background: #fafafa;
  padding: 40px 0;
}
.reviews-container {
  max-width: 1420px;
  margin: auto;
  padding: 0 20px;
}
.reviews-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.reviews-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.review-header {
  font-weight: 700;
  color: #ffb400;
}
.google-link {
  font-size: 11px;
  text-decoration: underline;
  color: #000;
}
.review-author {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #444;
}
.review-text {
  font-size: 13px;
  line-height: 1.4;
  max-height: 70px;
  overflow: hidden;
  flex-grow: 1;
}
.review-card.expanded .review-text {
  max-height: 400px;
}
.read-more {
  font-size: 12px;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 6px;
}
.reviews-nav {
  text-align: center;
  margin-top: 15px;
}
.reviews-nav button {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  background: #fff;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.reviews-nav button:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 1200px) {
  .review-card {
    flex: 0 0 calc(33.3% - 15px);
  }
}
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
  }

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}