/** Shopify CDN: Minification failed

Line 15:13 Expected identifier but found whitespace
Line 15:15 Unexpected "{"
Line 15:24 Expected ":"
Line 15:50 Expected ":"
Line 16:16 Expected identifier but found whitespace
Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:56 Expected ":"

**/
.cart-progress {
  text-align: center;
  margin-top: {{ section.settings.padding_top }}px;
  margin-bottom: {{ section.settings.padding_bottom }}px;
}
.progress-bar {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  align-items: center;
}

.progress-bar .step {
  position: relative;
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400; /* Make normal weight by default */
  text-align: center;
}


.progress-bar .step:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #F4E5E0;
  margin-bottom: 6px;
  cursor: pointer;
}


.progress-bar .step.active {
  font-weight: 700; /* stronger bold */
}


.progress-bar .step.active:before {
  background-color: #F4E5E0;
  border-color: #F4E5E0;
}

.progress-bar .step-line {
  width: 160px;
  height: 6px; 
  background: #F4E5E0;
  margin: 0 8px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 48px;
}

.progress-bar .step-line.completed {
  background: #d35d80;
}

.skip-button-container {
  text-align: center;
  margin-top: 15px;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

/* new styling added for steps */
.step-number {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.step-label {
  font-size: 14px;
}

/* styling for buttons */
/* Base style */
.nav-button {
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background-color: white;
  color: black;
  border: 1px solid #F4E5E0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover fill only if not disabled */
.nav-button:not(:disabled):hover {
  background-color: #F4E5E0;
}

/* Disabled styling */
.nav-button:disabled {
  background-color: white;
  color: black;
  border: 1px solid #F4E5E0;
  opacity: 0.5;
  cursor: not-allowed;
}

.progress-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/*progress bar mobile*/

.md-block{
  display:block;
}

@media (max-width: 768px) {
  .md-block{
    display:none;
  }
  
  .progress-bar-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
  }

  .progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    padding-top: 40px !important;
  }

  .step .step-number {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .step .step-label {
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
  }

  .step::before {
    content: "";
    width: 22px !important;
    height: 22px !important;
    border-radius: 50%;
    border: 2px solid black;
    background-color: white;
    z-index: 1;
  }

  .step.active::before {
   background-color: #F4E5E0 ;
    border-color: #F4E5E0 ;
  }

  .step-line {
    height: 2px !important;
    background-color: #F4E5E0 !imortant;
    flex: 1 !important;
    margin: 0 -8px !important;
    width: unset !important;
  }

  .nav-button {
    background: unset !important;
    border: unset !important;
    font-size: 24px;
    padding: 0px !important;
    cursor: pointer;
    color: black;
    position: relative;
  }
}


