/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 228:2 Expected identifier but found "*"
Line 228:78 Expected identifier but found "*"
Line 229:59 Expected identifier but found "*"
Line 230:76 Expected identifier but found "*"
Line 242:2 Expected identifier but found "*"
Line 268:2 Expected identifier but found "*"
Line 268:80 Expected identifier but found "*"
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
.testimonial-slider-section {
  background-color: {{ section.settings.background_color }};
  padding: 50px 0;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-slider-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-slide-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 35px;
  max-width: calc(50% - 10px);
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  position: relative;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-rating {
  display: flex;
  color: #ffba00;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-btn {
  background: rgba(34, 96, 137, 0.1);
  border: none;
  color: #226089;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: rgba(34, 96, 137, 0.2);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #226089;
}

@media (max-width: 768px) {
  .testimonial-content {
    max-width: 100%;
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .testimonial-slide-inner {
    flex-direction: column;
  }
}
.hero-toast-sunrise-wrapper {
  background: #fff9f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0px 20px 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-toast-sunrise-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-toast-sunrise-heading {
  font-family: 'Damion', cursive;
  font-size: 8rem;
  color: #2f2f75;
  margin-bottom: 32px;
  transform: rotate(-4deg);
  line-height: 1.2;
}

.hero-toast-sunrise-subtext {
  font-size: 2.25rem;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #1a1a1a;
}

.hero-toast-sunrise-button {
  padding: 8px 48px;
  font-size: 2rem;
  color: white;
  background-color: #2f2f75;
  border-radius: 8px;
  box-shadow: 0 4px 0 #d0d0d0;
  text-decoration: none;
  display: inline-block;
  /* Added these for general button safety, though specific mobile issues are handled below */
  position: relative;
  z-index: 5; /* A moderate z-index for general button visibility */
}

.hero-toast-sunrise-button-desktop {
  display: inline-block;
}

.hero-toast-sunrise-button-mobile {
  display: none; /* Hidden by default, shown on mobile */
  font-size: 1.8rem;
  padding: 10px 30px;
  margin: 0 auto;
  **pointer-events: auto; /* Crucial: Ensures the button responds to clicks */**
  **position: relative; /* Essential for z-index to work */**
  **z-index: 10; /* Ensures the mobile button is on top of other elements */**
}

.hero-toast-sunrise-images-desktop {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  **/* Removed 'pointer-events: none;' from this container. */**
  /* If you want the images *themselves* not to be clickable on desktop, apply pointer-events: none; directly to the <img> tags, not the parent div. */
  z-index: 1; /* Lower z-index than buttons */
}

.hero-toast-sunrise-image {
  max-height: 500px;
  height: auto;
}

.hero-toast-sunrise-mobile-image-row {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: nowrap;
  text-align: center;
  position: relative; /* Might need this for z-index context on images */
  z-index: 2; /* Keep images behind the button */
}

.hero-toast-sunrise-image-mobile-left,
.hero-toast-sunrise-image-mobile-right {
  margin: 0 auto;
  **pointer-events: none; /* Make mobile images not clickable if they overlap */**
}

.hero-toast-sunrise-image-mobile-left {
  width: 35vw;
  height: auto;
}

.hero-toast-sunrise-image-mobile-right {
  width: 55vw;
  height: auto;
}

.hero-toast-sunrise-mobile-button-wrapper {
  display: none; /* Hidden by default, shown on mobile */
  width: 100%;
  text-align: center;
  margin-top: -70px;
  **position: relative; /* Essential for z-index to work */**
  **z-index: 10; /* Ensures the wrapper is also on top */**
}

@media screen and (max-width: 768px) {
  .hero-toast-sunrise-wrapper {
    padding-bottom: 0px;
    padding-top: 60px;
  }

  .hero-toast-sunrise-inner {
    text-align: center;
  }

  .hero-toast-sunrise-heading {
    font-size: 4.5rem;
    padding: 0 16px;
    margin-top: -30px;
  }

  .hero-toast-sunrise-subtext {
    font-size: 2rem;
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .hero-toast-sunrise-button-desktop {
    display: none !important;
  }

  .hero-toast-sunrise-button-mobile {
    display: inline-block !important;
    margin: -50px auto 0 auto;
    padding: 8px 48px;
    **z-index: 10; /* Ensure high z-index on mobile */**
    **position: relative; /* Ensure it stays positioned */**
  }

  .hero-toast-sunrise-images-desktop {
    display: none !important; /* Fully hide desktop images on mobile */
  }

  .hero-toast-sunrise-mobile-image-row {
    display: flex !important;
    position: relative;
    width: 100%;
    gap: 50px;
    **z-index: 2; /* Keep images behind button */**
  }

  .hero-toast-sunrise-mobile-button-wrapper {
    display: block;
    padding-bottom: 30px;
    **z-index: 10; /* Ensure high z-index for the wrapper */**
    **position: relative; /* Ensure it stays positioned */**
  }

  .hero-toast-sunrise-image-mobile-left {
    width: 35vw !important;
  }

  .hero-toast-sunrise-image-mobile-right {
    width: 55vw !important;
  }
}