/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
.can-help-you-section {
  text-align: center;
  background: #f9f3ec;
  font-family: CaustenReg;
}
.can-help-you-subtext {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}
  .block-heading{
    font-size: 2rem;
  }
.can-help-you-section h2 {
  font-size: 2.5rem !important;
  font-weight: 600;
  padding-top: 30px;
}
@media (max-width: 426px) {
  .can-help-you-section h2 {
    padding-top: 5px;
  }
}
.can-help-you-images {
  display: grid;
  gap: 10px;
}
.can-help-you-images .image-block {
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .can-help-you-images {
    grid-template-columns: repeat(var(--columns), 1fr);
  }
}
@media screen and (max-width: 767px) {
  .can-help-you-images {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 426px) {
  .can-help-you-section {
    padding: 20px 20px;
  }
}
.can-help-you-images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.block-heading {
  font-size: 2rem;
  font-weight: 500;
  margin: 15px 0 5px;
  color: #222;
}
.block-paragraph {
  font-size: 1.8rem;
  color: #555;
  margin: 0 0 10px;
  line-height: 24px;
}
.can-help-you-section {
  text-align: center;
  /* padding: 40px 40px; */
  background: #f9f3ec;
  font-family: CaustenReg;
}
.can-help-you-subtext {
  font-size: 1.2rem;
  color: #555;
  /* margin-top: -20px; */
  margin-bottom: 30px;
}
.can-help-you-section h2 {
  font-size: 3rem;
  font-weight: 600;
  padding-top: 30px;
  /* margin-bottom: 30px; */
}
  @media (max-width: 426px){
    .can-help-you-section h2{
      padding-top: 5px;
    }
  }
.can-help-you-images {
  display: grid;
  gap: 10px;
}
.can-help-you-images .image-block {
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .can-help-you-images {
    grid-template-columns: repeat(var(--columns), 1fr);
  }
}
@media screen and (max-width: 767px) {
  .can-help-you-images {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 426px) {
  .can-help-you-section {
    padding: 20px 20px;
  }
}
.can-help-you-images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.block-heading {
  font-size: 2rem;
  font-weight: 500;
  margin: 15px 0 5px;
  color: #222;
}
.block-paragraph {
  font-size: 1.5rem;
  color: #555;
  margin: 0 0 10px;
  line-height: 24px;
}
.custom-slider {
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  /* REMOVE these lines */
  /* display: none; */
  /* opacity: 0; */
  /* transition: opacity 0.5s ease; */
}

.custom-slide img {
  width: 100%;
  max-height: 700px;
  height: auto;
  object-fit: cover;
  display: block;
}

.desktop-img {
  display: block !important;
}

.mobile-img {
  display: none !important;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between !important;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 2;
  pointer-events: none;
}

.slider-buttons button {
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  pointer-events: all;
}

/* Mobile styles */
@media(max-width: 767px) {
  .desktop-img {
    display: none !important;
  }
  .mobile-img {
    display: block !important;
  }
  .slider-buttons {
    display: none;
  }
}
.how-to-use-section {
  padding: 0px 20px;
  text-align: center;
  background-color: {{ section.settings.background_color }};
}

.how-to-use-section h2 {
  font-size: 28px;
  font-weight: bold;
  font-family: CaustenReg;
}

.how-to-use-section .subheading {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  font-family: CaustenReg;
}

.video-grid {
  display: grid;
  gap: 20px;
}

/* Mobile: 1 video per row */
@media screen and (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop: Based on setting */
@media screen and (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(var(--columns), 1fr);
  }
}

.video-block video {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  background-color: transparent !important;
  border-radius: 8px;
}

.video-block h4 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  font-family: CaustenReg;
}

.video-block p {
  font-size: 16px;
  color: #333;
  font-family: CaustenReg;
}
.whats-in-it-section {
  padding: 0px 20px;
  text-align: center;
   font-family: CaustenReg;
}

.whats-in-it-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
   font-family: CaustenReg;
}

.whats-in-it-grid {
  display: grid;
  gap: 10px;
}

/* Responsive Columns */
@media (min-width: 768px) {
  .whats-in-it-grid {
    grid-template-columns: repeat(var(--columns), 1fr);
  }
}

@media (max-width: 767px) {
  .whats-in-it-grid {
    grid-template-columns: 1fr;
  }
}
.container h2{
  text-align:center !important;
}
.ingredient-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
   font-family: CaustenReg;
}

.ingredient-card:hover {
  transform: translateY(-5px);
}

.ingredient-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius:10px
}

.ingredient-card h4 {
  
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
   font-family: CaustenReg;
}

.ingredient-card p {
  font-size: 16px;
  color: #555;
   font-family: CaustenReg;
}
.container h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #000;
}

.whats-in-it-section {
  /* padding: 40px 0; */
  text-align: center;
}

.whats-in-it-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* default desktop */
  gap: 20px;
  margin-top: 30px;
}

.ingredient-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.ingredient-card img {
  max-width: 180px;
  width: 100%;
  max-height: 180px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

.ingredient-card h4 {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  font-weight: 500;
}

.ingredient-card p {
  font-size: 1.5rem;
  line-height: 24px;
  color: #555;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
  .whats-in-it-grid {
    grid-template-columns: repeat(4, 1fr); /* tablet */
  }
}

@media screen and (max-width: 600px) {
  .whats-in-it-grid {
    grid-template-columns: repeat(2, 1fr); /* mobile */
  }

  .ingredient-card {
    padding: 16px;
  }

  .ingredient-card img {
    max-width: 140px;
  }
}