/** Shopify CDN: Minification failed

Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.cta‑tech-section {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
  .cta‑tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  .cta‑tech-image {
    flex: 1 1 40%;
    min-width: 300px;
    margin-right: 30px;
  }
  .cta‑tech-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .cta‑tech-content {
    flex: 1 1 55%;
    min-width: 250px;
  }
  .cta‑tech-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .cta‑tech-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .cta‑tech-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .cta‑tech-button:hover {
    background-color: #e65c00;
  }
  section.cta‑tech-section {
    background-color: #0e84a1;
    border-radius: 10px;
}
.cta‑tech-content {
    color: #fff;
}
.link-btn:hover {
    color: #f47d4f !Important;
}
  @media (max-width: 768px) {
  .cta‑tech-title {
    font-size: 1.8rem;
}
    .cta‑tech-container {
      flex-direction: column;
    }
.cta‑tech-container {
    text-align: center;
    padding: 20px;
}
.cta‑tech-image {
    margin-right: unset;
    margin-bottom: 20px;
}

  }
.feature-two-columns {
  text-align: center;
  padding: 80px 20px 0px;
}
.feature-two-columns .section-heading {
  font-size: 2rem;
  margin-bottom: 0.5em;
      color: #fff;
}
.feature-two-columns .section-subheading {
  font-size: 1.2rem;
  margin-bottom: 2em;
  color: #fff;
}
.feature-two-columns .features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.feature-two-columns .feature-item {
  max-width: 300px;
  text-align: center;
}
.feature-two-columns .feature-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
        background-color: rgb(234 240 240 / 7%);
    border-radius: 15px;
        border: 1px solid rgb(255 255 255 / 30%);
}
.feature-two-columns .feature-item .feature-title {
  font-size: 1.5rem;
  margin: 1em 0 0.5em;
  color: #fff; /* adjust your color */
}
.feature-two-columns .feature-item .feature-text {
  font-size: 1rem;
  color: #fff;
}
.rich-text {
    margin-bottom: 20px;
}
.image-text-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0;
}

.image-text-side--border {
  border: 1px solid #eee;
}

.image-text-side__image,
.image-text-side__text {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.image-text-side__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  padding-right: 30px;
  transition: transform 0.5s ease;
}

.dynamic-btn {
    background-color: #f47d4f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(244, 125, 79, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}
section#shopify-section-template--19226405601418__image_text_side_AzXG4U {
    margin-top: 50px;
}
.dynamic-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.image-text-side__image img:hover{
      transform: scale(1.03);
}
@media screen and (max-width: 768px) {
.image-text-side__image img {
    padding-right: unset;
    margin-bottom: 20px;
}
  .image-text-side {
    flex-direction: column;
  }

  .image-text-side__image,
  .image-text-side__text {
    flex: 1 1 100%;
    padding: 5px;
  }
}
.image-title-grid-section {
  padding: 40px 20px;
}

.grid-section__heading {
  text-align: center;
  font-size: 2.6em;
  margin-bottom: 10px;
}

.grid-section__subheading {
  text-align: center;
  margin: 10px 0 25px;
  color: #666;
  font-size: 1.1em;
  line-height: 1.4;
}

.grid-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* (rest of your existing CSS) */
.grid-box {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.grid-box__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

.grid-box__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grid-box__title {
  padding: 15px;
  font-size: 1.2em;
  color: #fff;
  background-color: #0e84a1;
}
.grid-box a {
    width: 100%;
}

@media screen and (max-width: 768px) {
  .grid-boxes {
    grid-template-columns: 1fr;
  }
}
.masonry-recipes-section {
  padding: 60px 20px;
}
.masonry-section-heading {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
  color: #000;
}
.recipes-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.recipe-card-grid {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.recipe-card-grid:hover {
  transform: translateY(-5px);
}
.recipe-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.recipe-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.recipe-title-grid {
  margin: 0 0 12px;
  font-size: 18px !important;
  color: #000 !important;
  text-align: center;
}
.recipe-bullets {
  list-style: disc;
  margin: 0;
  padding-bottom: 10px;
  color: #333;
}
.recipe-bullets li {
  margin-bottom: 8px;
}
.toggle-bullets-button {
  display: block;
  margin-top: auto;
  padding: 8px 12px;
  background-color: #f47d4f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.toggle-bullets-button:hover {
     opacity: 0.85;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
  .recipes-masonry {
    grid-template-columns: 1fr;
  }
}
.partner-logos-section {
  padding: 40px 20px;
  overflow: hidden;
  position: relative;
}
.partner-logos-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  color: #333;
}
.partner-logos-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}
.carousel-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
}
.carousel-track {
  display: inline-flex;
  align-items: center;
}
.logo-slide {
  display: inline-block;
  padding: 0 20px;
  flex-shrink: 0;
}
.logo-slide img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(100%);
}
.logo-slide:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Keyframe animations */
@keyframes scroll-left {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(0%); }
  to { transform: translateX(50%); }
}

/* Top row: scroll left (normal order) */
.row-top .carousel-track {
  animation: scroll-left linear infinite;
  animation-duration: 30s;
}

/* Bottom row: reverse order, scroll right-to-left (start from right) */
.row-bottom .carousel-track {
  animation: scroll-right linear infinite;
  animation-duration: 30s;
}

/* Optionally, you can reverse the direction and flip transforms */
/*
.row-bottom .carousel-track {
  animation: scroll-left linear infinite;
  transform: translateX(50%);
  animation-duration: 30s;
}
*/

@media (max-width: 768px) {
  .logo-slide img {
    max-height: 40px;
  }
  .carousel-row {
    margin-bottom: 15px;
  }
}
.postum-recipes-section {
  padding: 60px 0;
}

.recipes-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.recipe-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.recipe-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.recipe-item:hover .recipe-image img {
  transform: scale(1.03);
}

.recipe-content {
  flex: 1;
  min-width: 280px;
}

.recipe-title {
  font-size: 2.6rem;
  color: #000;
  margin-bottom: 16px;
}

.recipe-description {
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* CTA button styles */
.recipe-button {
  display: inline-block;
    background-color: #f47d4f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(244, 125, 79, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
  width: max-content;
}

.recipe-button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
  .recipe-item {
    flex-direction: column;
    text-align: center;
  }
  .recipe-content {
    margin-top: 20px;
  }
  .recipe-button {
    width: 100%;
}
}
.story-scroll-section {
  padding: 80px 0;
}

.story-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-item {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}

.story-image img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.story-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.story-content {
  max-width: 700px;
}

.story-content h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.story-content p {
  color: #000;
  line-height: 1.7;
  font-size: 1rem;
}
.story-item.aos-init.aos-animate {
  gap: 20px;
}
  @media (max-width: 768px) {
    .story-item {
    display: block;
    text-align: center;
    }
    .story-content {
    margin-top: 30px;
    }
}
/* Existing styles you had... */

.sustainability-subheading {
  font-size: 1rem;
  color: #000;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}

/* (rest of your CSS) */

.swiper-button-next svg, .swiper-button-prev svg {
    width: 50% !important;
    height: 50% !important;
}
.sustainability-carousel-section .swiper {
  width: 100%;
  padding-bottom: 30px;
  padding-top: 20px;
}
.sustainability-carousel-section .swiper-slide {
  display: flex;
  justify-content: center;
}
.sustainability-carousel-section .sustainability-card {
  width: 100%;
  max-width: 340px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}
.custom-swiper-btn {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.sustainability-carousel-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.sustainability-carousel-section .swiper {
  width: 100%;
  padding-bottom: 30px;
}
.sustainability-carousel-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.sustainability-carousel-section .sustainability-card {
  width: 100%;
  max-width: 340px;
  min-height: 490px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.sustainability-carousel-section .sustainability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.sustainability-carousel-section .sustainability-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.sustainability-carousel-section .sustainability-card .p-6 {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.sustainability-carousel-section .sustainability-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0e84a1;
  margin-bottom: 0.5rem;
  text-align: center;
}
.sustainability-carousel-section .sustainability-card p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}
.sustainability-carousel-section .swiper-pagination-bullet {
  background: #0e84a1;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.sustainability-carousel-section .swiper-pagination-bullet-active {
  background: #0e84a1;
  opacity: 1;
}
.sustainability-carousel-section .custom-swiper-btn {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e84a1;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sustainability-carousel-section .custom-swiper-btn:hover {
  background-color: #0b6d83;
  transform: scale(1.1);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}