/* a4w_productreturn — return form styles */

.a4w-productreturn-btn-wrapper {
  display: inline-block;
  margin: 0.5rem 0;
}

.a4w-productreturn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.a4w-productreturn-btn .material-icons {
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Step indicator */
.a4w-return-steps {
  gap: 0;
}

.a4w-return-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.a4w-return-step.active {
  opacity: 1;
}

.a4w-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #6c757d;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.a4w-return-step.active .a4w-step-number {
  background-color: var(--bs-primary, #0d6efd);
}

.a4w-step-label {
  font-size: 0.85rem;
  white-space: nowrap;
}

.a4w-step-divider {
  flex: 1;
  height: 2px;
  background-color: #dee2e6;
  min-width: 1rem;
  margin: 0 0.5rem;
}

/* Product rows */
.a4w-product-row {
  background-color: #f8f9fa;
}

.a4w-product-row:hover {
  background-color: #e9ecef;
}

.a4w-qty-wrapper {
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .a4w-step-label {
    display: none;
  }

  .a4w-product-row {
    flex-wrap: wrap;
  }

  .a4w-qty-wrapper {
    width: 100%;
    margin-left: 1.75rem !important;
  }
}
