/** Shopify CDN: Minification failed

Line 13:19 Expected identifier but found whitespace
Line 13:21 Unexpected "{"
Line 13:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.real-reviews-section {
  padding: 10px 5px;
  background-color: {{ section.settings.background_color }};
  text-align: center;
  max-width: 1300px; /* Limit max width */
  margin: 0 auto;
  position: relative;
}

.real-reviews-heading {
  font-size: 32px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 40px;
}

.reviews-grid-wrapper {
  position: relative;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 12px 10px; /* half gap padding on both sides */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.review-card {
  flex: 0 0 calc(33.3333% - 10px); /* slightly smaller to avoid 4th card peeking */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}



/* Stars */
.stars {
  color: #000;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

/* Review Title */
.review-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

/* Review Text */
.review-text {
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}

.read-more {
  display: block;
  text-align: center;
  font-weight: 500;
  text-decoration: underline;
  color: #000;
  margin-bottom: 18px;
}

/* Reviewer */
.reviewer-info {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  width: 18px;
  height: 18px;
  justify-content: center;
}

/* Product Box */
.product-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-box img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-details {
  text-align: left;
  flex: 1;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.shop-now {
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.shop-now:hover {
  background: #000;
  color: #fff;
}

/* Arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.scroll-arrow.left {
  left: -18px;
}

.scroll-arrow.right {
  right: -18px;
}

/* Scrollbar hide */
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.reviews-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards on tablet */
  }
  .scroll-arrow.left {
    left: -10px;
  }
  .scroll-arrow.right {
    right: -10px;
  }
}



@media (max-width: 600px) {
.real-reviews-section {
  padding: 5px 5px;
}
    .real-reviews-heading {
  font-size: 26px;
}
  .review-card {
    flex: 0 0 102%; /* 1 full card on mobile */
  }
}
.shop-category-carousel-section {
  padding: 30px 20px;
  text-align: center;
}

.shop-category-carousel-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.shop-category-carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-category-carousel-card {
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s ease;
}

.shop-category-carousel-card:hover {
  transform: translateY(-5px);
}

.shop-category-carousel-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

/* Mobile - carousel style */
@media (max-width: 768px) {
  .shop-category-carousel-section {
    padding: 10px 20px;
  }

  .shop-category-carousel-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  /* Turn grid into horizontal scroll */
  .shop-category-carousel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 10px;
  }

  .shop-category-carousel-card {
    scroll-snap-align: start;
    min-width: 120px;
    padding: 6px;
    flex: 0 0 auto;
  }

  .shop-category-carousel-card img {
    max-width: 100px;
  }

  .shop-category-carousel-grid::-webkit-scrollbar {
    display: none;
  }
}
.shop-category-section {
  padding: 30px 20px;
  text-align: center;
}

.shop-category-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* auto-fit all in one row */
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-category-card {
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s ease;
}

.shop-category-card:hover {
  transform: translateY(-5px);
}

.shop-category-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

/* Mobile - 3 per row */
@media (max-width: 768px) {
  .shop-category-section {
  padding: 10px 20px;
}
  .shop-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .shop-category-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .shop-category-card {
    padding: 6px;
  }

  .shop-category-card img {
    max-width: 100px;
  }
}
.stats-section {
  padding: 10px 20px;
  padding-bottom: 40px;
  text-align: center;
}

.stats-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-text {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

/* Mobile – keep 3 in a row */
@media (max-width: 768px) {
  .stats-section {
  padding: 2px 10px;
}
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stats-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
  .stat-number {
    font-size: 20px;
  }
  .stat-text {
    font-size: 13px;
  }
}