/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 272:0 Unexpected "<"

**/
<style>
.product-benefits {
  padding: 60px 20px;
  width: 100%;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  /* font-style: italic; */
  color: #1a1a1a;
  margin-bottom: 20px;
  margin-top: 0px;

}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Benefits Side Columns */
.benefits-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item-right {
  text-align: left;
}

.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #1a365d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a365d;
}

.benefit-content {
  flex: 1;
}

.benefit-heading {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.benefit-description {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

/* Center Product Card */
.benefits-center {
  display: flex;
  justify-content: center;
}

.product-card {
  background-color: #f5f0e6;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  min-width: 380px;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c9a962;
  margin: 0 0 20px 0;
}

.product-image-wrapper {
  position: relative;
}

.product-image {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-image-placeholder {
  width: 280px;
  height: 300px;
  margin: 0 auto;
  background: #e0d5c5;
  border-radius: 8px;
}

/* Icon Benefits Around Product */
.benefit-icons-row {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.top-row {
  margin-bottom: 20px;
}

.bottom-row {
  margin-top: 20px;
}

.icon-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 120px;
}

.icon-svg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

.icon-label {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-side {
    order: 2;
  }

  .benefits-center {
    order: 1;
  }

  .benefits-left {
    order: 2;
  }

  .benefits-right {
    order: 3;
  }

  .product-card {
    min-width: auto;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-benefits {
    padding: 20px 16px;
  }

  .benefits-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-heading {
    font-size: 15px;
  }

  .benefit-description {
    font-size: 13px;
  }

  .product-card {
    padding: 24px 20px;
  }

  .card-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .product-image {
    max-width: 220px;
  }

  .icon-benefit {
    max-width: 100px;
  }

  .icon-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .benefits-title {
    font-size: 20px;
  }

  .benefit-icons-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .icon-benefit {
    flex-direction: row;
    max-width: 100%;
    gap: 12px;
  }

  .icon-svg {
    width: 32px;
    height: 32px;
  }
}
</style>