.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.wrapper__content-inner {
  text-align: center;
}
p {
  margin: 0 !important;
}
/* Multisteps Upload Interface */
.multisteps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  gap: 2rem;
  margin:0 auto;
  padding: 2rem;
  background: var(--color-background);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--color-shadow);
}

.multisteps__progress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* top-align all steps so circles line up */
  position: relative;
  height: 100%;
}

.multisteps__step-content-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.multisteps__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  background: var(--color-background);
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;             /* even spacing like a nav bar */
  min-width: 0;        /* prevent overflow for long titles */
}

.multisteps__step.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.multisteps__step:hover {
  transform: translateY(-2px);
}

.multisteps__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.multisteps__step.active .multisteps__step-number {
  background: var(--color-brand);
  color: var(--color-brand-contrast);
}

.multisteps__step.completed .multisteps__step-number {
  background: var(--color-success);
  color: var(--color-brand-contrast);
}

.multisteps__step-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  text-align: center;
}

.multisteps__step.active .multisteps__step-title {
  color: var(--color-brand);
  font-weight: 600;
}

.multisteps__step.completed .multisteps__step-title {
  color: var(--color-success);
}



.multisteps__step-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.multisteps__step-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  }

  .upload-hint__button{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
 


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--color-border-strong);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--color-light-bg);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* Disabled state: block interactions visually */
.upload-area.is-disabled { 
  cursor: not-allowed; 
  opacity: 0.5;
  pointer-events: auto;
}
.upload-area.is-disabled * { 
  pointer-events: none; 
}
.upload-area.is-disabled:hover {
  border-color: var(--color-border-strong);
  background: var(--color-light-bg);
  transform: none;
}

/* Style for helper note beneath the See Example buttons */
.upload-hint__note {
  display: block;
  color: var(--color-muted-2);
  font-size: 0.9rem;
}

/* Generic reusable error style for any button */
.btn--error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
  color: #666 !important;
}
.text-error {
  color: #e74c3c !important;
}
.btn--error:hover {
  background: transparent !important;
  color: #333 !important;
}

.upload-area.hidden {
  display: none;
}

.upload-area:hover {
  border-color: var(--color-brand);
  background: var(--color-bg-soft);
}

.upload-area.dragover {
  border-color: var(--color-brand);
  background: var(--color-bg-softer);
  transform: scale(1.02);
}

.upload-area__icon {
  font-size: 3rem;
  color: var(--color-border-strong);
  transition: color 0.3s ease;
}

.upload-area:hover .upload-area__icon {
  color: var(--color-brand);
}

.upload-area__text {
  font-size: 1.125rem;
  color: var(--color-muted);
}

.upload-area__subtext {
  font-size: 0.875rem;
  color: var(--color-muted-2);
}

.upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Upload hint text */
.upload-hint {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
  background: var(--color-bg-soft);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: opacity 0.25s ease;
}
/* Disable state for Next button */
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.upload-hint-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.upload-hint-container p{
 margin: 0;
}

/* Guidance Modal */
.guidance-modal {
  
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.guidance-modal.show { 
  display: flex; }

.guidance-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.guidance-modal__content {
  position: relative;
  background: var(--color-background);
  border-radius: 12px;
  padding: 1.5rem;
  width: min(90vw, 520px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.guidance-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.guidance-modal__image-wrap {
  display: flex;
  justify-content: center;
  height: 300px;
  width: 100%;
  object-fit: cover;

}

.guidance-modal__content-inner{
  text-align: center;
}


.guidance-modal__image {
  object-fit: cover;
  height: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Processing & Result Modals */
.processing-modal,
.result-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.processing-modal.show,
.result-modal.show {
  display: flex;
}

.processing-modal__overlay,
.result-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.processing-modal__content,
.result-modal__content {
  position: relative;
  background: var(--color-background);
  border-radius: 12px;
  padding: 1.5rem;
  width: min(92vw, 600px);
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.result-modal__content-inner{
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.result-modal__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.result-modal__image-block img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.result-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .result-modal__images { grid-template-columns: 1fr; }
  
  .result-modal__content {
    width: 95vw;
    padding: 1rem;
  }
  
  .result-modal__hero {
    max-height: 60vh;
  }
  
  .result-modal__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .result-modal__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Single-image friendly modal */
.result-modal__single {
  text-align: center;
}

.result-modal__title {
  margin: 0;
}

.result-modal__subtitle {
  margin: 0;
  color: var(--color-muted);
}

.result-modal__hero {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 70vh;
}

.result-modal__hero-img {
  max-width: 100%;
  overflow: hidden;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.result-modal__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Result modal buttons inherit from base .btn class */

.upload-hint.is-hidden {
  opacity: 0;
  height: 0;
  margin-top: 0;
  overflow: hidden;
}

/* Image Preview */
.image-preview {
  display: none;
  text-align: center;
}

.image-preview.show {
  display: block;
}

.image-preview__container {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-preview__img {
  max-width: 100%;
  max-height: 400px;
  display: block;
}

.image-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-preview__container:hover .image-preview__overlay {
  opacity: 1;
}

/* Add Outfit Section */
.add-outfit-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

.add-outfit-section h4 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.125rem;
}
/* Outfit Selection */
.outfit-selection {
  margin-top: 2rem;
}

.outfit-selection h4 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.125rem;
}

.outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.outfit-item {
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-background);
}

.outfit-item:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.outfit-item.selected {
  border-color: var(--color-brand);
  background: var(--color-bg-soft);
}

.outfit-item__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.outfit-item__name {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.outfit-item__description {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Navigation Buttons */
.multisteps__navigation {
  padding-inline: 2rem;
}
.multisteps__navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .multisteps__navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}





.try-outfit{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 200px;
margin: 0 auto;
}
.navigation-spacer {
  flex: 1;
}

/* Step-based navigation visibility */
.multisteps[data-step="1"] .js-prev-btn {
  display: none;
}

.multisteps[data-step="3"] .js-next-btn {
  display: none;
}


/* Loading State */
.upload-loading {
  display: none;
  text-align: center;
  margin-top: 2rem;
}

.upload-loading.show {
  display: block;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--color-brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

 
p {
 padding: 0 ;
}
/* Try-On Result Styles */
.try-on-result {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.result-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-container-content{
   text-align: center;
}

.result-container-photos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}


/* DRY equal-sizing for Step 3 image cards */
.result-container-photos > .original-photo,
.result-container-photos > .outfit-photo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

/* Fixed, equal visual size on desktop while keeping aspect ratio */
.result-container-photos img {
  width: 300px;      /* equal width */
  box-sizing: border-box; /* prevent border from changing layout size */
  object-fit: cover; /* fill without distortion */
  border-radius: 12px;
  max-height: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.original-photo,
.try-on-photo {
  text-align: center;
}


.original-photo,
.outfit-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.original-photo img,
.try-on-photo img,
.outfit-photo img {
  max-width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Add visible border only to the outfit image in Step 3 */
.outfit-photo img {
  border: 3px solid #000;
}

/* Button visibility is controlled by JavaScript using .hide class */

/* Center the result-actions container in navigation */
.multisteps__navigation .result-compare-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  width: 100%;
}

/* Ensure buttons have proper spacing and alignment */
.result-compare-actions .btn {
  min-width: 160px;
}




/* Responsive Design */
@media (max-width: 768px) {
  .multisteps {
    margin-inline: 1rem;
    padding: 1.5rem;
  }
  
  .multisteps__progress {
    gap: 0.5rem;
    align-items: flex-start;   /* keep top-aligned on mobile */
    justify-content: space-between;
  }
  
  .multisteps__step {
    padding: 0.25rem;
    gap: 0.25rem;
  }
  
  .multisteps__step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .multisteps__step-title {
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
  }
  
  .outfit-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .multisteps__navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .multisteps__navigation .result-compare-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .multisteps__navigation .result-compare-actions .btn {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .result-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .result-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .result-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================================================
   Monochrome Overrides (Black / White / Gray)
   Keeps existing structure; only adjusts colors for accessibility simplicity
   ======================================================================== */
.multisteps__step.active .multisteps__step-number { 
  background: var(--color-brand); 
  color: var(--color-brand-contrast); 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}
.multisteps__step.completed .multisteps__step-number { 
  background: var(--color-muted); 
  color: var(--color-brand-contrast); 
}
.multisteps__step.active .multisteps__step-title { 
  color: var(--color-brand); 
  font-weight: 600; 
  width: 100%;
  text-align: center;
}

.upload-area:hover { 
  border-color: var(--color-brand); 
  background: var(--color-light-bg); 
}
.upload-area.dragover { 
  border-color: var(--color-brand); 
  background: var(--color-light-bg); 
  transform: scale(1.02); 
}
.upload-area:hover .upload-area__icon { 
  color: var(--color-brand); 
}

.image-preview__btn { 
  background: var(--color-background); 
  color: var(--color-brand); 
  border: 2px solid var(--color-brand); 
}
.image-preview__btn:hover { 
  background: var(--color-brand); 
  color: var(--color-brand-contrast); 
}

.btn--primary { 
  background: var(--color-brand); 
  color: var(--color-brand-contrast); 
}
.btn--primary:hover { 
  background: var(--color-brand-hover); 
}
.btn--secondary { 
  background: var(--color-secondary); 
  color: var(--color-brand-contrast); 
}
.btn--secondary:hover { 
  background: #2a2a2a; 
}
.btn--outline { 
  background: transparent; 
  color: var(--color-brand); 
  border: 2px solid var(--color-brand);
 }
.btn--outline:hover { 
  background: var(--color-brand); 
  color: var(--color-brand-contrast); 
}

.spinner { 
  border-top-color: var(--color-brand); 
}

.outfit-item:hover { 
  border-color: var(--color-brand); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}
.outfit-item.selected { 
  border-color: var(--color-brand); 
  background: var(--color-light-bg); 
}

/* ========================================================================
   Step 4 Sub-steps Styling
   ======================================================================== */

/* Step 4 Navigation */
.step4-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.step4-navigation.hide {
  display: none;
}

/* Step 4 Slider Container */
.step4-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%; 
  height: 400px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step4-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 300%; /* 3 sub-steps = 300% width */
  align-items: center;
  height: 100%;
}

/* Step 4 Progress Indicator */
.step4-progress-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.step4-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s ease;
}

.step4-progress-dot.active {
  background: #000;
  transform: scale(1.2);
}

.step4-progress-dot.completed {
  background: #666;
}

/* Step 4 Sub-steps */
.step4-substep {
  width: 33.333%; /* Each sub-step takes 1/3 of the track */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.step4-content {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease-out 0.2s forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.step4-substep p {
  font-size: 1rem;
  color: #666;
}

/* Name Input Styling */
.name-input-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.name-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
}

.name-input:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}


/* Email Input Styling */
.email-input-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
}

.email-input:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}



/* Code Input Styling */
.code-input-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.digit-inputs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.digit-input {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}
@media  (max-width: 768px) {
  .digit-input {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media  (max-width: 375px) {
  .digit-inputs {
    gap: 0.5rem;
  }
}
.digit-input:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}


.digit-input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.input-error {
  font-size: 0.9rem;
  text-align: center;
}

/* Name Confirmation Styling */
.name-confirmation {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.name-display {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.confirmation-question {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Final Result Styling */
.personalized-message {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 500;
}

.final-result-container {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.final-result-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Result Actions in Step 4 Sub-step 3 */
.step4-substep .result-modal__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Step4 substep buttons inherit from base .btn class */

.step4-substep .result-modal__actions .btn--outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.step4-substep .result-modal__actions .btn--outline:hover {
  background: #000;
  color: #fff;
}

.step4-substep .result-modal__actions .btn--primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.step4-substep .result-modal__actions .btn--primary:hover {
  background: #111;
}

/* Responsive Design for Step 4 */
@media (max-width: 768px) {

  
  .step4-substep h3 {
    font-size: 1.3rem;
  }
  
  .step4-substep p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .name-input,
  .email-input {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .name-display {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
  
  .personalized-message {
    font-size: 1.1rem;
  }
  
  .step4-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step4-navigation .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .step4-substep .result-modal__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .result-modal__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}