/** Shopify CDN: Minification failed

Line 175:18 Unexpected "{"
Line 175:27 Expected ":"
Line 176:18 Unexpected "{"
Line 176:27 Expected ":"
Line 186:18 Unexpected "{"
Line 186:27 Expected ":"
Line 196:20 Unexpected "{"
Line 196:29 Expected ":"
Line 202:18 Unexpected "{"
Line 202:27 Expected ":"
... and 2 more hidden warnings

**/
/* Product Benefits Section Styling */

/* Style isolation */
.custom-benefits-section-wrapper,
.custom-benefits-section-wrapper * {
  box-sizing: border-box;
}

.custom-benefits-section-wrapper {
  display: block;
  width: 100%;
}

.custom-benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; /* Remove fixed horizontal padding - now controlled by wrapper */
  width: 100%;
  display: block;
}

/* Feature Image Styles */
.custom-feature-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* Square aspect ratio */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.custom-feature-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.custom-placeholder-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* Square aspect ratio */
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.custom-placeholder-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #d0d0d0;
}

/* Benefit Item Styles */
.custom-benefit-item {
  margin-bottom: 17px;
}

.custom-benefit-item:last-child {
  margin-bottom: 0;
}

.custom-benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.custom-benefit-icon {
  margin-right: 10px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

[dir="rtl"] .custom-benefit-icon {
  margin-left: 10px;
}

.custom-benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.custom-benefit-description-container {
  padding-left: 0;
}
.custom-benefit-description {
  margin: 0px;
}

.custom-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* --- Base Layout --- */
.custom-benefits-container {
  display: flex;
  flex-direction: column; /* Mobile-first: stacks elements vertically */
  gap: 20px;
}

/* --- Children Ordering --- */
.custom-header-section {
  order: 1; /* Header first on mobile */
  text-align: center;
}

.custom-image-column {
  order: 2; /* Image second on mobile */
}

.custom-content-column {
  order: 3; /* Benefits list third on mobile */
}

/* Hide desktop header on mobile */
.custom-section-header.desktop-header {
  display: none;
}

/* --- Desktop Two-Column Layout --- */
@media screen and (min-width: 768px) {
  .custom-benefits-container {
    flex-direction: row; /* Two columns on desktop */
    align-items: center; /* Vertically center align content */
    gap: 40px;
  }

  .custom-header-section {
    display: none; /* Hide mobile header on desktop */
  }

  .custom-content-column,
  .custom-image-column {
    flex: 1; /* Each column takes up 50% width */
    order: 0; /* Reset mobile order */
  }

  /* Show and center desktop header */
  .custom-section-header.desktop-header {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
} 
/* ===== HARD FIX: remove reserved height (padding/aspect-ratio) that creates empty space ===== */
#shopify-section-{{ section.id }} .custom-section-image-container,
#shopify-section-{{ section.id }} .custom-feature-image{
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;          /* kills padding-bottom hacks */
  aspect-ratio: auto !important;  /* kills aspect-ratio forcing height */
  overflow: visible !important;
  position: static !important;
}

/* Image stays fully visible (no crop) */
#shopify-section-{{ section.id }} .custom-feature-image img{
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  position: static !important;
}

/* Stop flex from stretching the row height */
@media (min-width: 768px){
  #shopify-section-{{ section.id }} .custom-benefits-container{
    align-items: flex-start !important;
  }
}

/* If any pseudo-element is creating space */
#shopify-section-{{ section.id }} .custom-feature-image::before,
#shopify-section-{{ section.id }} .custom-feature-image::after{
  content: none !important;
  display: none !important;
}



.custom-benefits-button{
  margin-top: 25px;
  text-align: center; /* This centers the button */
}

.custom-cta-button{
  display:inline-block;
  padding:12px 28px;
  background: #FF8A9D;
  text-decoration:none;
  border-radius:6px;
  transition:0.3s ease;
  color:white;
}

.custom-cta-button:hover{
  opacity:0.85;
}