/* Overlay that covers viewport */
.ipp-quote-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none; /* hidden initially */
  overflow: auto;
  z-index: 9999;
}

/* Container to apply margin/padding around popup + center vertically/horizontally */
.ipp-quote-modal-container {
  box-sizing: border-box;
  padding: 20px; /* 20px margin from edges */
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup box */
.ipp-quote-popup {
  width: 100%;
  max-width: 1408px;      /* Figma width for desktop */
  /* Use auto height but limit to viewport if needed */
  max-height: calc(100vh - 40px); /* 20px top + 20px bottom padding from container */
  background: #8F8F8F;
  border-radius: 24px;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.ipp-popup-inner, .ipp-multiselect-inner {
  width: 100%;
  padding: 20px; 
  margin: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  background: #F1F1F1;
}

/* Close button */
.ipp-close {
    position: absolute;
    top: 20px;
    right: 40px;

    width: 27px;
    height: 27px;

    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ipp-close svg {
    width: 27px;
    height: 27px;
}


/* Top intro text */
.ipp-popup-top-text {
  color: #131313;
    text-align: center;
    font-family: "Noto Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--Static-Display-Large-Line-Height, 64px); /* 160% */
    letter-spacing: var(--Static-Display-Large-Tracking, -0.25px);
}

/* Header */
.ipp-popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.ipp-popup-header h1 {
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 75% */
}
.ipp-popup-header p {
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; /* 158.333% */
    padding-top: 10px;
}

/* Sections */
/* Popup section card style */
.ipp-popup-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1108px; /* Figma card width */
  height: 120px;     /* Figma card height */
  padding: 0 20px;   /* inner horizontal padding */
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #EC8914;
  background: #FFF;
  box-sizing: border-box;
}

/* Text inside card */
.ipp-popup-text {
  font-size: 16px;
  line-height: 1.4;
  flex: 1; /* take available space */
  text-align: left;
}

/* Button inside card */
.ipp-popup-button {
  margin-left: 20px; /* space between text and button */
}

/* Button styling */
.ipp-popup-button .ipp-btn {
  min-width: 262px;
  min-height: 62px;
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: #EC8914;
  color: #fff;
  cursor: pointer;
}
.ipp-popup-button .ipp-btn-flora-go {
  display: inline-block;
  min-width: 262px;
  min-height: 62px;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #484E53;
  color: #fff;
  cursor: pointer;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .ipp-popup-section {
    max-width: 90%;
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
  }

  .ipp-popup-text {
    margin-bottom: 10px;
  }

  .ipp-popup-button {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .ipp-popup-section {
    max-width: 100%;
    padding: 10px;
  }

  .ipp-popup-button .ipp-btn {
    width: 100%;
  }
}

/* =====================
Multi-Step Form Styles
===================== */
/* =====================
Multi-Step Form Styles
===================== */
.multi-step-form {
  width: 100%;
  max-width: 1408px; /* Figma width */
  height: 863px;     /* Figma height */
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  background: #F1F1F1;
  border-radius: 24px;
  padding: 40px; /* optional padding inside the form */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .multi-step-form {
    height: auto; /* allow height to adjust for smaller screens */
    padding: 30px;
  }
}

@media (max-width: 1200px) {
  .multi-step-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .multi-step-form {
    padding: 15px;
    border-radius: 16px; /* smaller radius for mobile */
  }
}


/* Progress bar */
.multi-step-form .progressbar {
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  position: relative;
}

/* Step items */
.multi-step-form .progressbar li {
  position: relative;
  text-align: center;
  flex: 1;
  color: #ccc;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circles */
.multi-step-form .progressbar li .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff; /* inactive circle fill */
  border: 3px solid #848484; /* inactive circle border */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #484E53; /* inactive text */
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

/* Active circle */
.multi-step-form .progressbar li.active .circle {
  background: #EC8914; /* active circle fill */
  border: 3px solid #EC8914; /* active circle border */
  color: #fff; /* active text */
}


/* Step labels */
.multi-step-form .progressbar li .label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}

/* -------------------------------
   UPDATED Progress Bar Line System
-------------------------------- */

/* -------------------------------
  UPDATED: Lines between circles
  (replace only the previous li + li::before / ::after block)
---------------------------------*/

/* Base grey connector between previous and this circle */
.multi-step-form .progressbar li + li::before {
  content: '';
  position: absolute;
  top: 20px; /* vertical center with circles */
  left: calc(-50% + 20px); /* start at previous circle's edge */
  width: calc(100% - 40px); /* end at next circle's edge */
  height: 4px;
  background: #ccc;
  z-index: 1;
  border-radius: 2px;
}

/* Orange overlay: uses --fill (0%..100%) to cover part of the grey line */
.multi-step-form .progressbar li + li::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(-50% + 20px);
  width: calc(100% - 40px);
  height: 4px;
  /* two color stops at same position — first part orange then grey */
  background: linear-gradient(
    to right,
    #EC8914 var(--fill, 0%),
    #ccc var(--fill, 0%)
  );
  border-radius: 2px;
  z-index: 2;
  transition: background 0.25s linear, width 0.25s linear;
  pointer-events: none;
}


/* Filled lines for active steps */
.multi-step-form .progressbar li.active + li::before {
  background-color: #EC8914;
}


/* Step content */
.multi-step-form .form-step {
  display: none;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.multi-step-form .form-step-active {
  display: flex;
}

/* Inputs & textarea */
.multi-step-form input,
.multi-step-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

.multi-step-form textarea {
  resize: vertical;
}
/*select field style */
.select-wrapper {
  position: relative;
}

.step1-select {
  width: 100%;
  appearance: none;     /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;   /* space for SVG */
}

.select-arrow {
  position: absolute;
  right: 10px;
  top: 30%;
  width: 26px;
  height: 26px;
  pointer-events: none;  /* prevents blocking clicks */
}

/* Buttons */
.multi-step-form .submit-btn {
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background-color: #EC8914;
  transition: background 0.3s;
}

/*.multi-step-form button:hover {
  background-color: #d87f0f;
}*/

/* Container for step buttons */
.form-step .step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Back button */
.form-step .prev-btn {
    width: 169px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
    background: #FFF;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Next button */
.form-step .next-btn, .final-submit-btn {
    width: 169px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
    background: #484E53;
    color: #FFF;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.steptext {
  text-align: right;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  color: #4E4E4E; /* default color for inactive steps */
}

/* Responsive */
@media (max-width: 768px) {
  .multi-step-form .progressbar li .label {
    font-size: 12px;
  }

  .multi-step-form .progressbar li .circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.start_quot_heading p{
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 75% */
  padding-bottom: 40px;
}

/* Step 1 row layout */
.step1-row {
  display: flex;
  gap: 16px; /* space between fields */
  flex-wrap: wrap; /* responsive wrap on small screens */
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

/* Category select (first rectangle) */
.step1-select.category-select {
  width: 375px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #FFF;
  padding: 0 12px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Product select (second rectangle) */
.step1-select.product-select {
  width: 399px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #FFF;
  padding: 0 12px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Quantity input (third rectangle) */
.step1-input.quantity-input {
  width: 209px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #FFF;
  padding: 0 12px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Submit button (fourth rectangle) */
.step1-btn {
  width: 160px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid rgba(236, 137, 20, 0.42);
  background: #EC8914;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .step1-row {
    justify-content: space-between;
  }

  .step1-select.category-select,
  .step1-select.product-select,
  .step1-input.quantity-input,
  .step1-btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .step1-row {
    flex-direction: column;
    gap: 12px;
  }

  .step1-select.category-select,
  .step1-select.product-select,
  .step1-input.quantity-input,
  .step1-btn {
    width: 100%;
  }
}
.step1-select, .quantity-input{
  color: #8D8D8D;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
}

.selected-products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
  margin-top: 30px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #ddd;
}

/* Each product row */
.selected-product {
  display: flex;
  align-items: center;
  padding: 12px;
  /*border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;*/
}

/* Product image */
.selected-product .product-image {
  width: 97px;
  height: 97px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-color: lightgray;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* Product details */
.selected-product .product-details {
  margin-left: 16px;
  flex-grow: 1;
}

.selected-product .product-name {
  color: #000;
  font-family: "Noto Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.selected-product .product-category {
  color: #000;
  font-family: "Noto Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 4px;
}

/* Quantity */
.selected-product .product-qty {
  margin-left: 16px;
  font-family: "Noto Sans";
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-right: 30px;
  /* margin: 30px; */
  top: -25%;
  position: relative;
}

/* Remove button */
.remove-product-btn {
    width: 47px;
    height: 47px;
    border-radius: 5px;
    background: #F41616;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.remove-product-btn svg {
    width: 15.668px;
    height: 15.668px;
}
@media (max-width: 768px) {
  .selected-products-list {
    grid-template-columns: 1fr;  /* mobile = 1 column */
  }
}

/* Step2 wrapper */
.step2-container {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;       
  padding: 0 20px;        
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 2-column grid for 6 inputs */
.step2-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Inputs responsive */
.step2-input {
  width: 100%;
  height: 62px;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #FFF;
  padding: 0 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

/* Full width fields */
.step2-address,
.step2-additional {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ACACAC;
  background: #FFF;
  padding: 12px;
  box-sizing: border-box;
}

.step2-address {
  height: 62px;
}

.step2-additional {
  height: 104px;
}

/* =============== RESPONSIVE BREAKPOINTS =============== */

/* Tablet (2-column → stays 2 columns but flexible) */
@media (max-width: 900px) {
  .step2-container {
    margin: 0 40px;
  }
}

/* Mobile (Switch to 1-column layout) */
@media (max-width: 600px) {
  .step2-row {
    grid-template-columns: 1fr; /* 1 column */
  }

  .step2-container {
    margin: 0 15px;
  }
}


/*step 3 */
.review-address .row {
    display: flex;
    gap: 20px; /* space between columns */
    margin-bottom: 15px;
}

.review-address .row .col {
    /*flex: 1;*/
    min-width: 0;
    /*background: #FFF;
    border: 1px solid #ACACAC;
    border-radius: 8px;
    padding: 10px 15px;*/
    color: #000;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 116.667% */
}

.review-address .row .col.full-width {
    flex: 1 1 100%;
}

.review-details-heading{
  color: #000;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
}

.form-buttons {
    display: flex;
    justify-content: space-between; /* Back left, Next/Submit right */
    margin-top: 20px;
}

.form-buttons .prev-btn {
    width: 169px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
    background: #FFF;
}

.form-buttons .next-btn,
.form-buttons .final-submit-btn {
    width: 169px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
    background: #484E53;
    color: #FFF;
}
.thankyou-text{
  color: #484E53;
  text-align: center;
  font-family: "Open Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 130% */
}