
.rfo-wizard{
  --rfo-bg:#ffffff;
  --rfo-surface:#ffffff;
  --rfo-border:#e7eaf0;
  --rfo-border-strong:#cfd6e4;
  --rfo-text:#0f172a;
  --rfo-muted:#64748b;
  --rfo-primary:#166534;
  --rfo-primary-soft:#ecfdf3;
  --rfo-shadow:0 18px 50px rgba(15,23,42,.08);
  display:grid;
  gap:28px;
  color:var(--rfo-text);
}
.rfo-hero,
.rfo-fulfillment-card,
.rfo-empty-state{
  background:linear-gradient(180deg,#ffffff 0%,#fcfcfd 100%);
  border:1px solid var(--rfo-border);
  border-radius:24px;
  box-shadow:var(--rfo-shadow);
}
.rfo-hero{
  padding:28px;
}
.rfo-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--rfo-primary-soft);
  color:var(--rfo-primary);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rfo-hero__title{
  margin:14px 0 8px;
  font-size:clamp(1.5rem,2vw,2.25rem);
  line-height:1.15;
}
.rfo-hero__text{
  margin:0;
  color:var(--rfo-muted);
  font-size:1rem;
}
.rfo-fulfillment-card{
  padding:22px;
}
.rfo-section-title{
  margin-bottom:14px;
  font-size:1rem;
  font-weight:700;
}
.rfo-fulfillment-selector{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.rfo-choice{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px;
  border:1px solid var(--rfo-border);
  border-radius:20px;
  background:var(--rfo-surface);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.rfo-choice:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
  border-color:var(--rfo-border-strong);
}
.rfo-choice.is-active{
  border-color:rgba(22,101,52,.35);
  background:var(--rfo-primary-soft);
  box-shadow:0 14px 30px rgba(22,101,52,.12);
}
.rfo-choice input[type="radio"]{
  margin-top:4px;
  inline-size:20px;
  block-size:20px;
  accent-color:var(--rfo-primary);
  flex:0 0 auto;
}
.rfo-choice__content{
  display:grid;
  gap:4px;
}
.rfo-choice__title{
  font-size:1.1rem;
  font-weight:700;
}
.rfo-choice__desc{
  color:var(--rfo-muted);
  font-size:.95rem;
  line-height:1.35;
}
.rfo-empty-state{
  padding:32px 24px;
  text-align:center;
}
.rfo-empty-state h3{
  margin:0 0 8px;
}
.rfo-empty-state p{
  margin:0;
  color:var(--rfo-muted);
}
.rfo-menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}
.rfo-menu-card{
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
  border:1px solid var(--rfo-border);
  border-radius:24px;
  box-shadow:var(--rfo-shadow);
}
.rfo-menu-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.rfo-menu-card__body{
  display:grid;
  gap:14px;
  padding:20px;
}
.rfo-menu-card h3{
  margin:0;
  font-size:1.25rem;
}
.rfo-desc{
  color:var(--rfo-muted);
  line-height:1.5;
}
.rfo-price{
  font-weight:800;
  font-size:1.05rem;
}
.rfo-item-form{
  display:grid;
  gap:12px;
}
.rfo-field{
  display:grid;
  gap:8px;
}
.rfo-field--inline{
  grid-auto-flow:column;
  justify-content:start;
  align-items:center;
}
.rfo-field__label{
  font-weight:600;
}
.rfo-item-form textarea,
.rfo-item-form input[type="text"],
.rfo-item-form input[type="email"],
.rfo-item-form input[type="tel"],
.rfo-item-form select{
  width:100%;
  border:1px solid var(--rfo-border);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  color:var(--rfo-text);
  transition:border-color .18s ease, box-shadow .18s ease;
  box-sizing:border-box;
}
.rfo-item-form textarea{
  min-height:100px;
  resize:vertical;
}
.rfo-item-form textarea:focus,
.rfo-item-form input:focus,
.rfo-item-form select:focus{
  outline:none;
  border-color:rgba(22,101,52,.45);
  box-shadow:0 0 0 4px rgba(22,101,52,.10);
}
.rfo-button{
  appearance:none;
  border:0;
  border-radius:18px;
  padding:14px 18px;
  background:linear-gradient(135deg,#166534 0%,#15803d 100%);
  color:#fff;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(22,101,52,.20);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.rfo-button:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(22,101,52,.24);
}
.rfo-button:active{
  transform:translateY(0);
}
@media (max-width: 767px){
  .rfo-wizard{
    gap:20px;
  }
  .rfo-hero,
  .rfo-fulfillment-card{
    padding:18px;
    border-radius:20px;
  }
  .rfo-fulfillment-selector{
    grid-template-columns:1fr;
  }
  .rfo-choice{
    border-radius:18px;
  }
  .rfo-menu-card img{
    height:200px;
  }
}
