/** Shopify CDN: Minification failed

Line 364:0 Unexpected "<"
Line 374:0 Unexpected "<"

**/
/* --- SPARKLE AMIGAS GLOBAL DESIGN SYSTEM --- */

:root {
--sparkle-max-width: 1300px; /* The widest the content will ever go */
--sparkle-side-padding: 20px; /* The "right and left padding" you want global control over */

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Colors */
  --color-pink: #F391B8;
  --color-light-pink: #E8BBD96B;
  --color-navy:#2b3d63;
  --color-text-gray: #6a7889;
  --color-sec_background:#ededed; /* Section background color
  
  /* Shared Styling */
  --radius-main: 20px;
  --radius-button: 50px;
  --shadow-text: 0px 4px 15px rgba(0, 0, 0, 0.4);
  --border-main: 0.5px solid var(--color-pink);
  --dropboxshadow1:  0 10px 30px rgba(0,0,0,0.5);
}

/* Global Heading Style (H2) */
/* Used for all sections except the main Hero H1 */
.sparkle-h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px); /* Responsive sizing */
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

  /* Subheading Label */
.sparkle-sub-head {
    font-family: var(--font-body);
    font-size: 18px;
    /*max-width: 650px;*/
    color:var(--color-text-gray);
  }

.sparkle-body-text {
    font-family: var(--font-body);
    font-size: 18px;
}

.sparkle-card-title {
    font-family: var(--font-body) !important;
    font-size: 24px;
  }

/* Use this class on the main wrapper of every section */
.sparkle-app-container {
  max-width: var(--sparkle-max-width);
  margin: 0 auto; /* Centers the section */
  padding-left: var(--sparkle-side-padding);
  padding-right: var(--sparkle-side-padding);
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't break the width */
}


/* Unified Button Style */
/* This matches the Hero button you liked */
.sparkle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-pink);
  color: #ffffff !important;
  padding: 18px 40px;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 145, 184, 0.3);
}

.sparkle-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(243, 145, 184, 0.4);
}

.sparkle-button span {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
/* Fun extra: make the arrow/icon nudge right when you hover! */
.sparkle-button:hover span {
  transform: translateX(5px);
}

/* If you use an SVG icon, make sure it's sized right */
.button-icon svg {
  width: 14px;
  height: auto;
  fill: currentColor;
}

/* Utility for Rounded Images */
.sparkle-rounded-image {
  border-radius: var(--radius-main);
  overflow: hidden;
  object-fit: cover;
}


/* --- END of SPARKLE AMIGAS GLOBAL DESIGN SYSTEM --- */

/* === Make all Shopify layout panels fluidly responsive === */
.layout-panel--flex-row {
  display: flex;
  flex-wrap: wrap; /* allows natural wrapping */
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.5rem, 2vw, 1.5rem); /* scales spacing fluidly */
}

/* === Each group block adjusts automatically === */
.group-block {
  flex: 1 1 300px; /* grows and shrinks, min width ~300px */
  max-width: 100%;
  box-sizing: border-box;
}

/* Keep images and content scaling correctly */
.group-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.group-block * {
  max-width: 100%;
}

/* Optional: limit content width globally to avoid stretching too wide */
.section-content-wrapper {
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* FONT */
.subheadline-soft{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.7;
  font-weight:400;
  letter-spacing:.2px;
  text-align: center;
}


/* =========================
   zSA Custom Button Styles
   ========================= */

.zSA_btn {
  background: #E8BBD9;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 999px;

  font-size: 18px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  position: relative;
  text-decoration: none;

  transition: transform 0.25s ease;
}

/* Arrow */
.zSA_btn_icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Glow under button */
.zSA_btn::after {
  content: "";
  position: absolute;

  left: 14%;
  right: 14%;
  bottom: -10px;
  height: 12px;

  background: linear-gradient(
    90deg,
    transparent,
    #F391B8,
    transparent
  );

  filter: blur(7px);
  opacity: 0;

  transition: opacity 0.25s ease, bottom 0.25s ease;
  pointer-events: none;
}

/* Hover effects */
.zSA_btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
}


/* Glow appears */
.zSA_btn:hover::after {
  opacity: 1;
  bottom: -14px;
}

.zSA_arrow{
  display:inline-flex;
  align-items:center;
  transform:translateY(1px);
  transition:transform .25s ease;
}

/** INFO CARDS **/
/* Desktop & General Styles */
/*
.section-heading, .card-title {
  color: #2d3a5a; 
  font-family: serif; 
  font-size: 4.rem;
}
*/


.info-cards-section {
  padding: 50px 0;
  background-color:var(--color-sec_background);
  text-align: center;
}

.cards-container {
  display: flex;
  gap: 40px; 
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px; /*control h2 padding*/
}

.info-card {
  flex: 1;
  min-width: 450px; /* Gives that long line room to stay on one line */
  max-width: 700px;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--dropboxshadow1);
  text-align: left;
   
  
  /* Ensures no movement happens if other styles are inherited */
  transition: none;
}

/* Mobile Adjustments */
@media screen and (max-width: 749px) {
  :root {
    --sparkle-side-padding: 20px; 
  }
  .info-cards-section {
    padding: 40px 0;
  }

  .info-card {
    min-width: 100%; /* Forces cards to stack vertically on phones */
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .section-heading {
    font-size: 1.8rem; /* Smaller heading for mobile screens */
    padding: 0 15px;
  }
  
  .income-content .amount {
    font-size: 2.5rem; /* Prevents the price from overlapping on small screens */
  }
}
/* control each card title */
.card-title {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  padding: 0;
}

.card-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: #f1b3cc;
  /* This prevents the icon from shrinking when text wraps */
  flex-shrink: 0; 
  /* This ensures the icon stays aligned with the top line of text */
  align-self: flex-start; 
  margin-top: 4px; 
}


.income-content .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1; /* Tighter line height for the large number */
  margin-bottom: 0;
  display: flex;
  flex-direction: column; /* Stacked vertically */
  align-items: flex-start; /* Aligns both to the left */
}

.income-content .per-unit {
  font-size: 1.2rem;
  margin-top: -5px; /* Pulls the subtext upward */
  margin-bottom: 15px; /* Space before the description starts */
  opacity: 0.9;
  line-height: 1;
}

.income-content .description {
  line-height: 1.5;
  font-size: 1.1rem;
}


/* Never building alone section*/
<style>
  .text-start-journey h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    letter-spacing: 0.2px !important;
    text-align: center !important;
    text-transform: none !important; /* Prevents themes from forcing ALL CAPS */
    margin: 1.5rem 0;
  }
</style>

.zsa-feature-list{
  list-style:none;
  padding:0;
  margin:0;
}

.zsa-feature-item{
  display:flex;
  gap:16px;
  margin-bottom:28px;
  align-items:flex-start;
}

.zsa-feature-item h3{
  margin:0 0 6px;
  font-weight:600;
}

.zsa-feature-item p{
  margin:0;
  opacity:.8;
}

