/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 355:0 Unexpected "<"

**/
<style>
.new-customer-offer-section {
  background-color: var(--background-color);
  font-family: Inter, sans-serif;
  color: var(--text-color);
  padding: 30px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.offer-text {
  width: 100%;
  max-width: 500px;
}

.offer-title {
  font-size: 34px;
  font-weight: 300;
  color: var(--primary-color);
  margin-bottom: 0px;
  line-height: 1.2;
  text-align: center;
}

.offer-title em {
  font-style: italic;
  font-weight: 300;
}

.offer-details {
  padding: 5px;
  border-radius: 12px;
}
.offer-background {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding-top: 20px;
}

.product-info {
  flex: 1;
  padding-right: 15px;
}

.product-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 5px 0;
  letter-spacing: -0.5px;
}

.product-description {
  font-size: 13px;
  color: var(--accent-color);
  margin: 0;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}

.gift-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.shipping-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.gift-badge {
  color: #ff4545 !important;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.gift-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.original-price {
  font-size: 14px;
  color: #ff4545 !important;
  text-decoration: line-through;
}

.discount-section {
  margin: 20px 0;
}

.discount-text {
  font-style: italic;
  color: var(--primary-color);
  margin: 0 0 10px 0;
  font-size: 16px;
}

.total-section {
  padding: 10px;
  margin: 10px 0;
}

.total-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.total-prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.final-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.original-total {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.price-product .original-total {
  font-size: 13px;
  color: #ff4545 !important;
  text-decoration: line-through;
  margin: 0;
  line-height: 1;
}

.cta-button {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px 0 0px;
  letter-spacing: -0.5px;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.additional-info {
  text-align: center;
  margin-top: 15px;
  background: white;
  border-radius: 10px;
  padding: 15px 5px;
}

.new-clients-only {
  color: var(--primary-color);
  font-size: 14px;
  margin: 0 0 10px 0;
}

.shipping-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-color);
  margin: 8px 0;
}

.shipping-badge {
  font-size: 16px;
}

.money-back {
  font-size: 13px;
  color: var(--text-color);
  margin: 8px 0 0 0;
}

.offer-image-mobile {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.offer-image {
display: none;
}

.offer-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.placeholder-image {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
  border: 2px dashed #ccc;
}

.price-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.sale-badge {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: #ff4545;
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Estilos para cuando la sección está oculta */
.new-customer-offer-section.hidden-for-subscriber {
  display: none !important;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .new-customer-offer-section {
    padding: 60px 40px;
  }
  
  .offer-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  
  .offer-text {
    flex: 1;
    max-width: none;
  }
  
  .offer-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 40px;
  }
  
  .offer-image {
    display: block;
    flex: 0 0 400px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: auto;
  }

  .offer-image-mobile {
    display: none;
  }
  
  .additional-info {
    text-align: center;
  }
  
  .shipping-info {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .offer-title {
    font-size: 42px;
  }
  
  .offer-image {
    flex: 0 0 450px;
    max-width: 450px;
  }
}
</style>