@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
.hostfully-wizard-container {
  font-family: "Inter", sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}
.hostfully-wizard-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  transition: all 0.3s ease;
}
/* Header & Progress */
.hostfully-wizard-header {
  text-align: center;
  margin-bottom: 35px;
}
.hostfully-wizard-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1e21;
  margin: 0 0 8px 0;
}
.hostfully-wizard-header p {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 25px 0;
}
.hostfully-progress-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
}
.hostfully-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #40caa1, #2d2aa5);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hostfully-progress-steps {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.hostfully-step-indicator {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e9ecef;
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-align: center;
  transition: all 0.3s ease;
}
.hostfully-step-indicator.active {
  border-color: #2d2aa5;
  background: #2d2aa5;
  color: #fff;
  box-shadow: 0 0 10px rgba(45, 42, 165, 0.3);
}
.hostfully-step-indicator.completed {
  border-color: #40caa1;
  background: #40caa1;
  color: #fff;
}
/* Steps Transition */
.hostfully-form-step {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.hostfully-form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #2b353b;
  margin: 0 0 25px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #2d2aa5;
  display: inline-block;
}
/* Form Grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 550;
  color: #384248;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  padding: 11px 16px;
  font-size: 14px;
  border: 1px solid #d2d8dd;
  border-radius: 8px;
  background: #fff;
  color: #2b353b;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.form-group input:focus,
.form-group select:focus {
  border-color: #2d2aa5;
  box-shadow: 0 0 0 3px rgba(45, 42, 165, 0.15);
}
/* Accordion Card Styles */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.accordion-header {
  background: #f8f9fa;
  padding: 16px 20px;
  font-weight: 600;
  color: #384248;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s ease;
}
.accordion-header:hover {
  background: #f1f3f5;
}
.accordion-icon {
  font-size: 11px;
  color: #6c757d;
  transition: transform 0.2s ease;
}
.accordion-content {
  padding: 24px 20px;
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.accordion-item.expanded .accordion-content {
  display: block;
}
/* Special Inputs */
.size-input-group,
.currency-input-group,
.percentage-input-group {
  display: flex;
  position: relative;
}
.size-input-group input,
.currency-input-group input,
.percentage-input-group input {
  flex-grow: 1;
}
.size-input-group select {
  width: 80px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.size-input-group input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.currency-input-group input {
  padding-left: 28px;
}
.currency-input-group .currency-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6c757d;
}
.percentage-input-group input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.percentage-input-group .percentage-symbol {
  background: #f8f9fa;
  border: 1px solid #d2d8dd;
  border-left: none;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 14px;
  color: #6c757d;
}
/* File Upload Style */
.file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-upload-label {
  background: #f8f9fa;
  border: 1px dashed #d2d8dd;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #384248;
  transition: all 0.2s ease;
}
.file-upload-label:hover {
  background: #e9ecef;
  border-color: #2d2aa5;
}
#thumbnail_file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-chosen-text {
  font-size: 12px;
  color: #6c757d;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Buttons */
.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.btn-primary {
  background-color: #40caa1;
  color: #fff;
  box-shadow: 0 4px 12px rgba(64, 202, 161, 0.25);
}
.btn-primary:hover {
  background-color: #34bc94;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(64, 202, 161, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background-color: #e9ecef;
  color: #495057;
}
.btn-secondary:hover {
  background-color: #dee2e6;
}
/* Feedback Messages */
.hostfully-feedback-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  animation: fadeIn 0.3s ease;
}
.hostfully-feedback-message.success {
  background: #e6f7f0;
  color: #248065;
  border: 1px solid #a8e5cc;
  display: block;
}
.hostfully-feedback-message.error {
  background: #fdf2f2;
  color: #dc3545;
  border: 1px solid #f8d7da;
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
