/** Shopify CDN: Minification failed

Line 19:19 Unexpected "{"
Line 19:28 Expected ":"
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 66:19 Unexpected "{"
Line 66:28 Expected ":"
Line 66:35 Unexpected "{"
Line 86:21 Unexpected "{"
Line 86:30 Expected ":"
Line 86:37 Unexpected "{"

**/


/* CSS from section stylesheet tags */
/* CRITICAL FIX TO PREVENT THEME OVERRIDES */
  #reviews-slider-{{ section.id }} .splide__slide {
    flex-shrink: 0 !important;
    list-style-type: none !important;
  }
  #reviews-slider-{{ section.id }} .splide__list {
    display: flex !important;
  }
  /* END OF FIXES */

  .reviews-carousel-wrapper { overflow: hidden; }
  .reviews-carousel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
  .reviews-carousel__heading { margin: 0 0 5px 0; font-size: 2.2rem; }
  .reviews-carousel__header-left[href] { text-decoration: none; color: inherit; }
  .reviews-carousel__header-left[href]:hover .reviews-carousel__heading { text-decoration: underline; }
  .rating-summary { display: flex; align-items: center; gap: 10px; }
  .rating-summary__stars { display: flex; color: #fabb05; }
  .icon-star { width: 20px; height: 20px; }
  .rating-summary__text { margin: 0; font-size: 1.4rem; color: #5f6368; }
  .reviews-carousel__header-right .button { white-space: nowrap; }

  .review-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: block; /* Ensures the entire area is covered */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  }

  /* Style the card when it's a link to remove underline and add a hover effect */
  a.review-card {
    text-decoration: none;
  }
  a.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .review-card__image {
    display: block;
    width: 100%;
    /* Height and object-fit are applied via the <style> tag at the top of the file */
  }

  /*
    ARROW STYLING & ICON FIX
  */
  #reviews-slider-{{ section.id }} {
    padding-left: 35px;
    padding-right: 35px;
  }
  .splide__arrow {
    width: 38px; height: 38px; background: #fff; border: 1px solid #e0e0e0; opacity: 1; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    top: 50%; /* Center vertically */
  }
  .splide__arrow:hover { background: #f8f9fa; }
  .splide__arrow svg { fill: #5f6368; width: 1em; height: 1em; }
  .splide__arrow--prev { left: 0; }
  .splide__arrow--next { right: 0; }

  /* THIS IS THE CRITICAL FIX FOR THE ARROW ICON DIRECTION */
  .splide__arrow--prev svg {
    transform: rotate(180deg);
  }
  /* END OF FIX */

  @media (max-width: 749px) {
    #reviews-slider-{{ section.id }} {
      padding-left: 0;
      padding-right: 0;
    }
    .reviews-carousel__header { justify-content: center; text-align: center; }
    .reviews-carousel__header-left,
    .reviews-carousel__header-right { flex-basis: 100%; }
    .rating-summary { justify-content: center; }
    .splide__arrow--prev { left: 10px; }
    .splide__arrow--next { right: 10px; }
  }