/** Shopify CDN: Minification failed

Line 47:8 Expected identifier but found whitespace
Line 47:10 Unexpected "{"
Line 47:19 Expected ":"
Line 72:8 Expected identifier but found whitespace
Line 72:10 Unexpected "{"
Line 72:19 Expected ":"
Line 125:8 Expected identifier but found whitespace
Line 125:10 Unexpected "{"
Line 125:19 Expected ":"
Line 151:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* =========================================================
   flo-checkout-steps.liquid — hardcoded styles
   Prefix: flo-cst-checkout-
   Customizer-driven (via CSS vars): text colors
   Everything else (font, size, line-height, spacing, layout)
   is hardcoded per Figma.
   ========================================================= */

.flo-cst-checkout-section {
  width: 100%;
}

.flo-cst-checkout-inner {
  
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------
   Main Heading — Desktop
   font-family: Roobert PRO / 700 / 40px / 124% / center
   --------------------------------------------------------- */
.flo-cst-checkout-heading,
.flo-cst-checkout-heading p {
  font-family: 'Roobert PRO', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 124%;
  letter-spacing: normal;
  text-align: center;
  color: {{ section.settings.heading_color }};
  margin: 20px 0 30px 0;
}

.flo-cst-checkout-heading * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ---------------------------------------------------------
   Sub Heading (One-time Purchases) — Desktop
   font-family: Roobert PRO / 500 / 24px / 100% / center
   --------------------------------------------------------- */
.flo-cst-checkout-subheading {
  font-family: 'Roobert PRO', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: normal;
  text-align: center;
  color: {{ section.settings.subheading_color }};
  margin: 0 0 0px 0;
}

/* ---------------------------------------------------------
   Steps layout — Desktop
   Each column: 430.67px wide, 484px tall, gap 24px
   --------------------------------------------------------- */
.flo-cst-checkout-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
     max-width: 1352px;
    margin: 0 auto;
    padding: 64px 20px;

}

.flo-cst-checkout-step {
  display: flex;
  flex-direction: column;
  width: 420.6666564941406px;
  max-width: 100%;
}

.flo-cst-checkout-step-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.flo-cst-checkout-step-image img {
  display: block;
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 18.85px;
}

/* ---------------------------------------------------------
   Step Heading (below image) — Desktop
   font-family: Montserrat / 600 / 22px / 150%
   --------------------------------------------------------- */
.flo-cst-checkout-step-heading,
.flo-cst-checkout-step-heading p {
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: {{ section.settings.step_heading_color }};
  margin: 24px 0 0 0;
}

.flo-cst-checkout-step-heading * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ---------------------------------------------------------
   Step Paragraph (below image) — Desktop
   font-family: Montserrat / 400 / 16px / 124%
   --------------------------------------------------------- */
.flo-cst-checkout-step-paragraph,
.flo-cst-checkout-step-paragraph p {
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 124%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: {{ section.settings.step_paragraph_color }};
  margin: 4px 0 0 0;
}

.flo-cst-checkout-step-paragraph * {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media screen and (max-width: 749px) {

  .flo-cst-checkout-inner {
    padding: 0 27px;
  }

  /* Main Heading — Mobile
     font-family: Roobert PRO / 700 / 36px / 40px / center */
  .flo-cst-checkout-heading,
  .flo-cst-checkout-heading p {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    vertical-align: middle;
    margin: 30px 0 20px 0px;
  }

  /* Sub Heading — Mobile
     font-family: Roobert PRO / 500 / 24px / 100% / center */
  .flo-cst-checkout-subheading {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: normal;
    margin: 0 0 12px 0;
  }

  /* Steps layout — Mobile
     Column: 338.24px wide, 380.71px tall, gap 18.85px, stacked */
  .flo-cst-checkout-steps {
    flex-direction: column;
    align-items: center;
    gap: 30.85px;
            padding: 24px 0px;
  }

  .flo-cst-checkout-step {
    gap: 0px;
    width: 366.2370300292969px;
    max-width: 100%;
  }

  .flo-cst-checkout-step-image img {
    height: auto;
  }

  /* Step Heading — Mobile
     font-family: Roobert PRO / 700 / 18px / 150% */
  .flo-cst-checkout-step-heading,
  .flo-cst-checkout-step-heading p {
    font-family: 'Roobert PRO', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
        margin: 10px 0 0 0;
  }

  /* Step Paragraph — Mobile
     font-family: Roobert PRO / 400 / 14px / 124% */
  .flo-cst-checkout-step-paragraph,
  .flo-cst-checkout-step-paragraph p {
    font-family: 'Roobert PRO', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 124%;
    letter-spacing: 0%;
    vertical-align: middle;
  }
}