/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:76 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:82 Expected ":"
... and 10 more hidden warnings

**/
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media screen and (min-width: 960px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
.image-benefits-container.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 960px) {
  .image-benefits-container.page-width {
    padding: 0 5rem;
  }
}
.video-element {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5; /* Fallback color while video loads */
}
.image-benefits-container {
  margin-top: 10px;
  margin-bottom: 0px;
}
.image-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .image-benefits-grid {
    display: grid;
    grid-template-areas: 
      "headline"
      "image"
      "buttons"; /* Ensure buttons come after the image */
    gap: 15px; /* Space between grid areas */
  }
  
  .benefits-container {
    grid-area: headline;
  }
  
  .image-container {
    grid-area: image;
  }
  
  .benefit-buttons {
    grid-area: buttons; /* Place buttons below the image */
    margin-top: 10px;
  }
}
@media screen and (min-width: 960px) {
  .image-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Increase the gap between columns */
  }
  
  .image-container {
    margin-right: 10px; /* Add a little extra margin on the right side of the image/video */
  }
  
  .benefits-container {
    display: block;
    margin-left: 10px; /* Add a little extra margin on the left side of the text */
    padding: 20px 0 20px 10px; /* Increase left padding for text content */
  }
}
.main-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.image-overlay {
  position: absolute;
  padding: 12px 20px;
  color: white;
  background-color: rgba(164, 66, 87, 0.65);
  transition: opacity 0.3s ease;
  left: 0;
  right: 0;
}
.image-overlay.top {
  top: 0;
}
.image-overlay.bottom {
  bottom: 0;
}
.image-overlay h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.image-overlay p {
  margin: 0;
  font-size: 14px;
  color: white;
  line-height: 1.3;
}
.benefits-container {
  padding: 20px 0;
}
.benefits-container h2 {
  font-size: 32px;
  color: #BA7281;
  margin-bottom: 15px;
  font-weight: 700; /* Keeps it bold */
  text-align: left; /* Default alignment for larger screens */
}
.subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: left; /* Default alignment for larger screens */
}
.benefit-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.benefit-button {
  padding: 12px 15px;
  background-color: #f8f7fa;
  border: 2px solid transparent;
  border-radius: 5px;
  color: #BA7281;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  
  /* Adding subtle shadow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* light shadow */
}
.benefit-button:hover {
  background-color: #f2e9ec;
  /* Darker shadow on hover for effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* slightly larger shadow on hover */
}
.benefit-button.active {
  background-color: #BA7281;
  color: white;
  /* Adding shadow to active button as well */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Active button shadow */
}