/** Shopify CDN: Minification failed

Line 16:2 Unexpected "{"
Line 16:3 Expected identifier but found "%"
Line 20:2 Unexpected "{"
Line 20:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.customer-review-section {
  background: #FFF9F6;
  padding: 40px 20px;
  text-align: center;
  {% if section.settings.background_image != blank %}
    background-image: url('{{ section.settings.background_image | img_url: 'master' }}');
    background-size: cover;
    background-position: center;
  {% endif %}
}

.customer-review-section h2 {
  font-size: 38px;
  font-weight: 700;  
  color: #C61436;
  margin-bottom: 0;
  margin-top: 0;
}

.customer-review-section .subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #C61436;
  margin-top: 0px;
}

/* Slick Slider Base */
.review-slider {
  max-width: 1400px;
  margin: 0 auto;
}

.review-slider .slick-slide {
  display: flex !important;
  height: auto !important;
  padding: 10px;
}

.review-slider .slick-slide > div {
  width: 100%;
  display: block;
  align-items: stretch;
}

/* Review Card Design */
.review-card {
  background-color: #FEFDF4;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  color: #000;
  border: #000;
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: margin 0.3s ease;
  margin: 0 10px;
}

/* Step Layout Based on Visible Slide Index */
.review-slider .slick-slide:nth-child(1) .review-card,
.review-slider .slick-slide:nth-child(5) .review-card {
  margin-top: 60px;
}

.review-slider .slick-slide:nth-child(2) .review-card,
.review-slider .slick-slide:nth-child(4) .review-card {
  margin-top: 30px;
}

.review-slider .slick-slide:nth-child(3) .review-card {
  margin-top: 0;
}

.review-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
}

.review-card .review-text {
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid black;
  flex-grow: 1;
}

.review-stars {
  color: #fdd835;
  font-size: 20px;
  letter-spacing: 3px;
}

/* Slick Dots Style */
.slick-dots li button:before {
  color: #888;
}
.slick-dots li.slick-active button:before {
  color: #2a8989;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .review-card {
    padding: 20px;
    margin-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .review-card {
    text-align: center;
    margin-top: 0 !important;
  }
}
.product-card a {
    text-decoration: none;
    text-align: left;
  }

.video-grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 10px;
    background: #FEFDF4;
}

  .video-grid-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #C61436;
    margin-bottom: 5px;
    text-align: center;
  }

  .video-grid-section p {
    font-size: 16px;
    color: #C61436;
    margin-bottom: 30px;
    text-align: center;
  }

  .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .responsive-video {
    background-color: #FEFDF4;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
    position: relative;
  }

  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .product-card {
    text-align: center;
    /* background: #fff; */
    border-radius: 12px;
    padding: 8px;
  }

  .product-card img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .product-card h3 {
    font-size: 15px;
    margin: 8px 0 4px;
    color: #000000;
  }

  .product-card .price {
    font-weight: 600;
    color: #1a1a1a;
  }

  .product-card .compare-price {
    text-decoration: line-through;
    color: rgba(var(--color-foreground), .75);
    font-size: 14px;
    font-weight: 400;  
  }

  @media screen and (max-width: 992px) {
    .grid-wrapper {
      grid-template-columns: repeat(2, 2fr);
    }

    .responsive-video {
      aspect-ratio: 1 / 1;
    }
  }

  @media screen and (max-width: 600px) {
    .grid-wrapper {
       grid-template-columns: repeat(2, 2fr);
    }

    .responsive-video {
     aspect-ratio: 4 / 6;
    }
  }