.order-hero { 
  background: linear-gradient(135deg, var(--red-soft) 0%, var(--cream-2) 100%); 
  padding: 60px 0 40px; 
  text-align: center;
}
.crumbs { font-size: 14px; font-weight: 600; color: var(--ink-3); margin-bottom: 16px; }
.crumbs a { color: var(--red); transition: color 0.2s; }
.crumbs a:hover { color: var(--red-dark); }
.order-hero h1 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 12px; }
.order-hero p { color: var(--ink-2); margin: 0 auto; max-width: 600px; font-size: 16px; line-height: 1.6; }

.ogrid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: start; padding: 48px 0 80px; }

.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 40px; }
.fstep { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--ink); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.fstep .n { width: 28px; height: 28px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 14px; }
.fblock { margin-bottom: 36px; }
.fblock > p.hint { color: var(--ink-3); font-size: 14px; margin: 4px 0 20px; line-height: 1.5; }

.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 14px 18px; border: 2px solid var(--line); border-radius: var(--r-md); background: #fafafa;
  transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1); }
.field textarea { resize: vertical; min-height: 100px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.prodpick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prodpick label { cursor: pointer; }
.prodpick input { position: absolute; opacity: 0; }
.prodpick .tile { background: #fafafa; border: 2px solid var(--line); border-radius: var(--r-md); padding: 18px 12px; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: all .2s ease; }
.prodpick .tile .ic { font-size: 28px; margin-bottom: 8px; display:block; }
.prodpick label:hover .tile { border-color: var(--orange); background: #fff; box-shadow: var(--sh-sm); }
.prodpick input:checked + .tile { border-color: var(--red); background: var(--red-soft); color: var(--red); box-shadow: 0 4px 12px rgba(226, 48, 40, 0.1); transform: translateY(-2px); }

.submit-note { font-size: 14px; color: var(--ink-3); margin-top: 16px; text-align: center; line-height: 1.5; }

/* preview sidebar */
.preview { position: sticky; top: 100px; }
.preview-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden; }
.preview-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: #fafafa; }
.preview-head h3 { font-size: 18px; font-weight: 800; }
.preview-head .badge { font-size: 12px; }
.preview-body { padding: 24px; }
.sumrow { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.sumrow span:first-child { color: var(--ink-2); }
.sumrow span:last-child { font-weight: 700; font-family: var(--font-head); color: var(--ink); }
.sumtotal { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; margin-top: 8px; }
.sumtotal .lbl { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.sumtotal .val { font-family: var(--font-head); font-weight: 900; font-size: 28px; color: var(--red); }
.preview .tip { font-size: 13.5px; color: var(--ink-3); margin-top: 16px; display: flex; gap: 8px; line-height: 1.5; background: var(--cream); padding: 14px; border-radius: var(--r-sm); border: 1px solid var(--line); }
.preview .tip svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 2px; }

@media (max-width: 860px) {
  .ogrid { grid-template-columns: 1fr; gap: 32px; }
  .preview { position: static; }
  .formcard { padding: 28px 20px; }
  .frow { grid-template-columns: 1fr; gap: 16px; }
  .order-hero { padding: 40px 0 30px; }
}
@media (max-width: 520px) { .prodpick { grid-template-columns: 1fr 1fr; } }
