/* eCsomagfutár 2.0 – közös rendelési flow */

.order-flow {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 0 36px;
}

.order-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 58%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.order-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.order-hero p {
  margin: 10px 0 0;
  max-width: 720px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.order-hero__pill {
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .10);
  white-space: nowrap;
}

.order-summary {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  color: #475569;
  line-height: 1.7;
}

.order-summary strong {
  color: #0f172a;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-grid--single {
  grid-template-columns: 1fr;
}

.order-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.order-card__head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid #eef2f7;
}

.order-card__head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.order-card__body {
  padding: 18px;
}

.order-muted {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.order-price {
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.order-price small {
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
}

.order-button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

.order-button:hover {
  background: #1d4ed8;
}

.order-button:disabled {
  cursor: not-allowed;
  background: #cbd5e1;
  box-shadow: none;
}

.order-alert {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
}

.order-alert--warning {
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
}

.order-alert--danger {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #991b1b;
}

.order-alert--success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.order-alert a {
  color: inherit;
  font-weight: 900;
}

.order-back {
  display: inline-flex;
  margin-top: 16px;
  color: #2563eb;
  font-weight: 900;
  text-decoration: none;
}

.order-back:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* form elemek */

.order-form {
  display: grid;
  gap: 14px;
}

.order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-field label,
.order-label {
  display: block;
  margin-bottom: 6px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 12px 13px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.order-field textarea {
  min-height: 110px;
  resize: vertical;
}

.order-span-2 {
  grid-column: span 2;
}

.order-help {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.order-choice {
  display: grid;
  gap: 10px;
}

.order-choice-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  cursor: pointer;
  background: #ffffff;
}

.order-choice-row:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.order-choice-row input {
  margin-top: 3px;
}

.order-choice-title {
  color: #0f172a;
  font-weight: 900;
}

.order-choice-sub {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

/* kis lista / előnyök */

.order-feature-list {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
}

.order-feature-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.order-feature-list li::before {
  content: "✓";
  color: #2563eb;
  font-weight: 900;
}

/* reszponzív */

@media (max-width: 860px) {
  .order-grid,
  .order-grid--three {
    grid-template-columns: 1fr;
  }

  .order-form-grid {
    grid-template-columns: 1fr;
  }

  .order-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .order-flow {
    padding: 12px 0 28px;
  }

  .order-hero {
    display: block;
    padding: 20px;
  }

  .order-hero__pill {
    display: inline-flex;
    margin-top: 14px;
    white-space: normal;
  }

  .order-card__head,
  .order-card__body {
    padding: 16px;
  }

  .order-price {
    font-size: 30px;
  }
}

/* ================================
   eCsomagfutár Order UI 2.0 demo
================================ */

.order-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 11px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
  font-weight: 900;
}

.order-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: start;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.order-progress__step {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 76px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.order-progress__step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 950;
}

.order-progress__step.is-active {
  color: #c2410c;
}

.order-progress__step.is-active span {
  border-color: #f97316;
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(249, 115, 22, .25);
}

.order-progress__step.is-done {
  color: #166534;
}

.order-progress__step.is-done span {
  border-color: #22c55e;
  background: #22c55e;
  color: #ffffff;
}

.order-progress__line {
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e5e7eb;
}

.order-progress__line.is-done {
  background: #22c55e;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.order-main {
  min-width: 0;
}

.order-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.order-summary-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.order-summary-card__title {
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eef2f7;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 14px;
}

.order-summary-row strong {
  color: #0f172a;
  text-align: right;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 15px;
  font-weight: 900;
}

.order-summary-total strong {
  color: #c2410c;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-align: right;
}

.order-mini-trust {
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  background: #fffbeb;
  color: #0f172a;
}

.order-mini-trust p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.order-option-card {
  position: relative;
  padding: 18px;
  border: 1px solid #fbbf24;
  border-radius: 22px;
  background: #fffdf5;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.order-option-card:hover {
  transform: translateY(-2px);
  border-color: #f97316;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.order-option-card.is-featured {
  border-color: #f97316;
  background: #fff7ed;
}

.order-option-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #ffffff;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px #fed7aa;
}

.order-option-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.order-option-price {
  margin-top: 8px;
  color: #c2410c;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.order-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.order-badge--dark {
  background: #111827;
}

.order-flow--demo {
  padding-top: 18px;
}

/* Narancsos arculat felülírások */

.order-button {
  background: #f97316;
  box-shadow: 0 10px 22px rgba(249, 115, 22, .25);
}

.order-button:hover {
  background: #ea580c;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .13);
}

.order-choice-row:hover {
  border-color: #fed7aa;
  background: #fff7ed;
}

.order-feature-list li::before {
  color: #f97316;
}

.order-back {
  color: #ea580c;
}

.order-back:hover {
  color: #c2410c;
}

/* Demo responsive */

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .order-progress {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-progress__line {
    display: none;
  }

  .order-progress__step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
    text-align: left;
  }

  .order-progress__step span {
    width: 30px;
    height: 30px;
  }
}

/* SEO header/footer alap 2.0 keret */

body {
  margin: 0;
  background: #f8fafc;
  color: #020617;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.seo-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.seo-info-bar {
  background: #020617;
  color: #ffffff;
  font-size: 12px;
}

.seo-info-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 28px;
}

.seo-info-item a {
  color: #ffffff;
  text-decoration: none;
}

.seo-main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.seo-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.seo-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #020617;
  text-decoration: none;
}

.seo-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.seo-logo strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.seo-logo small {
  display: block;
  margin-top: 4px;
  color: #475569;
  font-size: 12px;
}

.seo-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.seo-nav a {
  color: #020617;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.seo-nav a:hover {
  color: #ea580c;
}

.seo-header-cta,
.seo-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 16px;
  background: #f97316;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.seo-header-cta:hover,
.seo-footer-cta:hover {
  background: #ea580c;
}

.seo-footer {
  margin-top: 40px;
  padding: 38px 0 20px;
  background: #020617;
  color: #ffffff;
}

.seo-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.seo-footer a:hover {
  color: #ffffff;
}

.seo-footer-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.seo-footer-intro strong {
  font-size: 20px;
}

.seo-footer-intro p {
  color: #cbd5e1;
  line-height: 1.7;
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.seo-footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.seo-footer-col h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.seo-footer-contact p {
  margin: 0;
  color: #cbd5e1;
}

.seo-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 900px) {
  .seo-main-inner,
  .seo-info-inner,
  .seo-footer-bottom {
    display: grid;
  }

  .seo-nav {
    flex-wrap: wrap;
  }

  .seo-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero premium */

.order-hero--premium {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  padding: 34px;
  border-color: #fed7aa;
  background:
    radial-gradient(circle at 82% 20%, rgba(249, 115, 22, .14), transparent 28%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #fffaf2 100%);
}

.order-hero--premium::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .08);
}

.order-hero--premium .order-hero__content {
  position: relative;
  z-index: 1;
}

.order-hero--premium h1 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.order-hero--premium p {
  max-width: 700px;
  font-size: 17px;
}

.order-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.order-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  color: #7c2d12;
  font-size: 13px;
  font-weight: 900;
}

.order-hero__trust span::before {
  content: "✓";
  color: #f97316;
  font-weight: 950;
}

.order-hero__panel {
  position: relative;
  z-index: 1;
  min-width: 230px;
  align-self: center;
  padding: 18px;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
}

.order-hero__panel-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  font-size: 28px;
}

.order-hero__panel strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
}

.order-hero__panel span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .order-hero--premium {
    padding: 24px;
  }

  .order-hero--premium h1 {
    font-size: 34px;
  }

  .order-hero__panel {
    margin-top: 20px;
  }
}

/* Progress premium */

.order-progress--premium {
  margin: 20px 0;
  padding: 18px 20px;
  border-color: #fed7aa;
  background: #ffffff;
}

.order-progress--premium .order-progress__step {
  text-decoration: none;
}

.order-progress--premium .order-progress__step span {
  width: 38px;
  height: 38px;
}

.order-progress--premium .order-progress__step small {
  font-size: 12px;
  font-weight: 900;
}

.order-progress--premium .order-progress__line {
  height: 3px;
  margin-top: 18px;
}

.order-progress--premium .order-progress__step.is-done span {
  background: #16a34a;
  border-color: #16a34a;
}

.order-progress--premium .order-progress__line.is-done {
  background: linear-gradient(90deg, #16a34a, #f97316);
}

.order-progress--premium .order-progress__step.is-active span {
  background: #f97316;
  border-color: #f97316;
}

.order-progress--premium .order-progress__step.is-active small {
  color: #c2410c;
}

.order-progress--premium .order-progress__step:hover span {
  transform: translateY(-1px);
}

.order-progress--premium .order-progress__step span {
  transition: transform .12s ease, box-shadow .12s ease;
}

/* =========================================
   Order UI 2.0 final service screen
========================================= */

.order-card--premium {
  border-color: #e5e7eb;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.order-service-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
}

.order-service-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.order-service-card:hover {
  transform: translateY(-2px);
  border-color: #fb923c;
  box-shadow: 0 22px 44px rgba(249, 115, 22, .13);
}

.order-service-card--featured {
  border-color: #f97316;
  background:
    radial-gradient(circle at 28% 0%, rgba(249, 115, 22, .15), transparent 34%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 72%);
}

.order-service-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(249, 115, 22, .24);
}

.order-service-time {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.order-service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  font-size: 36px;
  box-shadow: 0 12px 26px rgba(249, 115, 22, .10);
}

.order-service-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 27px;
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.04em;
}

.order-service-card p {
  margin: 8px 0 18px;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.order-service-card .order-feature-list {
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid #fed7aa;
}

.order-service-card:not(.order-service-card--featured) .order-feature-list {
  border-top-color: #e5e7eb;
}

.order-service-pickup {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #fed7aa;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

.order-service-card:not(.order-service-card--featured) .order-service-pickup {
  border-top-color: #e5e7eb;
}

.order-service-pickup span,
.order-service-pickup strong {
  display: block;
}

.order-service-pickup strong {
  margin-top: 3px;
  color: #0f172a;
}

.order-service-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  color: #f97316;
}

.order-service-price strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.order-service-price span {
  font-size: 18px;
  font-weight: 900;
}

.order-service-note {
  margin-top: 12px;
  color: #c2410c;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.order-button--brand {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(249, 115, 22, .26);
}

.order-button--brand:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.order-button--outline {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  box-shadow: none;
}

.order-button--outline:hover {
  border-color: #f97316;
  background: #fff7ed;
  color: #c2410c;
}

.order-info-strip {
  margin-top: 20px;
  padding: 13px 16px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.order-info-strip::before {
  content: "ⓘ ";
  color: #f97316;
  font-weight: 950;
}

/* Summary final */

.order-summary-card--premium {
  border-color: #e5e7eb;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.order-summary-card--premium .order-summary-card__title {
  padding: 20px 20px 14px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.order-summary-card--premium .order-summary-row {
  padding: 13px 20px;
}

.order-summary-card--premium .order-summary-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 18px 20px;
  background: #ffffff;
  border-top: 1px solid #eef2f7;
}

.order-summary-card--premium .order-summary-total span {
  color: #0f172a;
  font-weight: 950;
}

.order-summary-card--premium .order-summary-total strong {
  color: #f97316;
  font-size: 34px;
  line-height: 1;
}

.order-summary-card--premium .order-summary-total small {
  grid-column: 2;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.order-summary-trust {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid #eef2f7;
}

.order-summary-trust div {
  position: relative;
  padding-left: 34px;
}

.order-summary-trust div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 950;
}

.order-summary-trust strong,
.order-summary-trust span {
  display: block;
}

.order-summary-trust strong {
  color: #0f172a;
  font-size: 14px;
}

.order-summary-trust span {
  margin-top: 2px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}

.order-security-box {
  margin: 0 20px 20px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
}

.order-security-box::before {
  content: "🔒";
  float: left;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 12px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.order-security-box strong,
.order-security-box span {
  display: block;
}

.order-security-box strong {
  color: #0f172a;
  font-size: 14px;
}

.order-security-box span {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}

/* Benefits */

.order-benefits {
  margin-top: 28px;
  padding: 0 4px;
}

.order-benefits h2 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 24px;
  text-align: center;
  letter-spacing: -0.03em;
}

.order-benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.order-benefit-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
}

.order-benefit-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #f97316;
  font-size: 19px;
  font-weight: 950;
}

.order-benefit-grid strong {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.2;
}

.order-benefit-grid small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
}

/* Hero panel extra */

.order-hero__panel em {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 11px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

/* Final responsive */

@media (max-width: 1100px) {
  .order-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .order-service-grid {
    grid-template-columns: 1fr;
  }

  .order-service-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .order-service-card h3 {
    font-size: 24px;
  }

  .order-service-price strong {
    font-size: 36px;
  }

  .order-benefit-grid {
    grid-template-columns: 1fr;
  }

  .order-benefit-grid div {
    padding: 10px 0;
  }
}

/* Service card overlap fix */

.order-service-grid {
  align-items: stretch;
}

.order-service-card {
  min-height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}

.order-service-card .order-button {
  margin-top: auto;
}

.order-info-strip {
  clear: both;
  position: relative;
  z-index: 1;
}

/* =========================================
   Order UI 2.0 final one-page order form
========================================= */

.order-form-section {
  margin-bottom: 18px;
}

.order-form-section:last-of-type {
  margin-bottom: 0;
}

.order-form-section .order-card__head {
  position: relative;
  padding-left: 68px;
}

.order-form-section .order-card__head::before {
  content: "✦";
  position: absolute;
  left: 20px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #fed7aa;
  border-radius: 13px;
  background: #fff7ed;
  color: #f97316;
  font-size: 18px;
  font-weight: 950;
}

.order-form-section:nth-of-type(1) .order-card__head::before {
  content: "👤";
}

.order-form-section:nth-of-type(2) .order-card__head::before {
  content: "📍";
}

.order-form-section:nth-of-type(3) .order-card__head::before {
  content: "🧾";
}

.order-form-section:nth-of-type(4) .order-card__head::before {
  content: "💰";
}

.order-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.order-field label small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
}

.order-form-section .order-field input,
.order-form-section .order-field select,
.order-form-section .order-field textarea {
  min-height: 48px;
  border-radius: 15px;
  background: #ffffff;
  font-size: 15px;
}

.order-form-section .order-field input:hover,
.order-form-section .order-field select:hover,
.order-form-section .order-field textarea:hover {
  border-color: #fbbf24;
}

.order-billing-toggle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  background: #fff7ed;
  cursor: pointer;
}

.order-billing-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #f97316;
}

.order-billing-toggle strong,
.order-billing-toggle small {
  display: block;
}

.order-billing-toggle strong {
  color: #0f172a;
  font-size: 15px;
}

.order-billing-toggle small {
  margin-top: 4px;
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.45;
}

.order-billing-fields {
  margin-top: 16px;
}

.order-form-submit {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  background: #fff7ed;
  text-align: center;
}

.order-form-submit .order-button {
  max-width: 420px;
  margin: 0 auto;
}

.order-form-submit .order-help {
  margin-top: 12px;
  color: #7c2d12;
  font-weight: 800;
}

/* Summary checklist */

.order-summary-checklist {
  display: grid;
  gap: 9px;
  padding: 16px 20px;
  border-top: 1px solid #eef2f7;
}

.order-summary-checklist div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.order-summary-checklist span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
}

.order-summary-checklist .is-done {
  color: #166534;
}

.order-summary-checklist .is-done span {
  background: #dcfce7;
  color: #16a34a;
}

/* One page form spacing */

.order-flow--demo .order-layout {
  align-items: start;
}

.order-flow--demo .order-main > .order-card + .order-card {
  margin-top: 18px;
}

.order-flow--demo .order-card__body .order-info-strip {
  margin-top: 16px;
}

/* Mobile form */

@media (max-width: 760px) {
  .order-form-section .order-card__head {
    padding-left: 60px;
  }

  .order-form-section .order-card__head::before {
    left: 16px;
    top: 16px;
  }

  .order-form-submit {
    padding: 16px;
  }

  .order-billing-toggle {
    padding: 14px;
  }
}

/* =========================================
   Order UI 2.0 final payment screen
========================================= */

.order-pay-card {
  margin-bottom: 18px;
}

.order-pay-options {
  display: grid;
  gap: 14px;
}

.order-pay-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease, background .14s ease;
}

.order-pay-option:hover {
  transform: translateY(-1px);
  border-color: #fb923c;
  background: #fff7ed;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .10);
}

.order-pay-option.is-selected {
  border-color: #f97316;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: 0 16px 34px rgba(249, 115, 22, .12);
}

.order-pay-option input {
  width: 18px;
  height: 18px;
  accent-color: #f97316;
}

.order-pay-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  background: #fff7ed;
  font-size: 26px;
}

.order-pay-content strong,
.order-pay-content small {
  display: block;
}

.order-pay-content strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.25;
}

.order-pay-content small {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.order-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-pay-warning {
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 800;
}

.order-pay-warning::before {
  content: "ⓘ ";
  color: #f97316;
  font-weight: 950;
}

.order-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-review-grid div {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #f8fafc;
}

.order-review-grid span,
.order-review-grid strong,
.order-review-grid small {
  display: block;
}

.order-review-grid span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.order-review-grid strong {
  margin-top: 6px;
  color: #0f172a;
  font-size: 16px;
}

.order-review-grid small {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

.order-pay-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 70%);
}

.order-pay-final h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.order-pay-final p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.order-pay-final .order-button {
  width: auto;
  min-width: 230px;
  margin-top: 0;
}

/* Payment mobile */

@media (max-width: 760px) {
  .order-pay-option {
    grid-template-columns: auto 46px minmax(0, 1fr);
  }

  .order-pay-badge {
    grid-column: 3;
    justify-self: start;
  }

  .order-pay-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 23px;
  }

  .order-review-grid {
    grid-template-columns: 1fr;
  }

  .order-pay-final {
    display: grid;
  }

  .order-pay-final .order-button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================
   Order UI 2.0 - Success page
========================================= */

.order-success-hero {
    margin: 0 0 28px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid #bbf7d0;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(34,197,94,.12), transparent 45%),
        linear-gradient(180deg,#ffffff 0%,#f8fff9 100%);
    box-shadow: 0 18px 42px rgba(15,23,42,.06);
}

.order-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(34,197,94,.28);
}

.order-success-hero h1{
    margin:14px 0;
    font-size:42px;
    line-height:1.1;
    letter-spacing:-.04em;
    color:#0f172a;
}

.order-success-hero p{
    max-width:760px;
    margin:0 auto;
    color:#475569;
    font-size:17px;
    line-height:1.75;
}

.order-success-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:34px;
    flex-wrap:wrap;
}

/* --------------------------- */

.order-success-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.order-success-grid div{
    padding:18px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#f8fafc;
}

.order-success-grid span{
    display:block;
    font-size:12px;
    font-weight:900;
    color:#64748b;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.order-success-grid strong{
    display:block;
    margin-top:6px;
    font-size:17px;
    color:#0f172a;
}

/* --------------------------- */

.order-next-steps{
    margin-top:18px;
}

.order-timeline{
    display:grid;
    gap:18px;
}

.order-timeline > div{
    display:grid;
    grid-template-columns:56px 1fr;
    gap:18px;
    align-items:flex-start;
}

.order-timeline span{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:999px;
    border:2px solid #cbd5e1;
    background:#fff;
    color:#64748b;
    font-size:20px;
    font-weight:900;
}

.order-timeline .is-done span{
    border-color:#22c55e;
    background:#22c55e;
    color:#fff;
}

.order-timeline strong{
    display:block;
    color:#0f172a;
    font-size:18px;
}

.order-timeline small{
    display:block;
    margin-top:6px;
    color:#64748b;
    line-height:1.6;
    font-size:14px;
}

/* --------------------------- */

.order-summary-card .order-summary-row strong{
    font-weight:800;
}

.order-summary-card .order-summary-total strong{
    color:#22c55e;
}

/* --------------------------- */

@media (max-width:900px){

    .order-success-grid{
        grid-template-columns:1fr;
    }

    .order-success-hero{
        padding:34px 24px;
    }

    .order-success-hero h1{
        font-size:34px;
    }

    .order-success-actions{
        flex-direction:column;
    }

    .order-success-actions .order-button{
        width:100%;
    }

}

@media (max-width:640px){

    .order-success-icon{
        width:74px;
        height:74px;
        font-size:38px;
    }

    .order-timeline>div{
        grid-template-columns:44px 1fr;
        gap:14px;
    }

    .order-timeline span{
        width:44px;
        height:44px;
        font-size:16px;
    }

}
/* Legacy GLS content -> Order UI 2.0 bridge */

.gls-hero {
  margin: 18px 0;
  padding: 34px;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(249,115,22,.14), transparent 28%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #fffaf2 100%);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.gls-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.gls-hero .sub {
  margin-top: 12px;
  max-width: 700px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.gls-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.gls-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15,23,42,.07);
}

.gls-card > .head,
.gls-card .head {
  padding: 20px 20px 14px;
  border-bottom: 1px solid #eef2f7;
}

.gls-card > .body,
.gls-card .body {
  padding: 20px;
}

.gls-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.gls-note {
  margin: 12px 0;
  padding: 13px 16px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.55;
}

.gls-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.gls-span-2 {
  grid-column: span 2;
}

.gls-field label,
.gls-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.gls-field input,
.gls-field select,
.gls-field textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  padding: 12px 13px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
}

.gls-field input:focus,
.gls-field select:focus,
.gls-field textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249,115,22,.13);
}

.gls-submit {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(249,115,22,.26);
}

.gls-submit:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.gls-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  background: #fff7ed;
  cursor: pointer;
}

.gls-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #f97316;
}

.gls-cta-wrap {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  background: #fff7ed;
  text-align: center;
}

.gls-microcopy {
  margin-top: 12px;
  color: #7c2d12;
  font-weight: 800;
  font-size: 14px;
}

.gls-microcopy-sub {
  display: block;
  margin-top: 4px;
  color: #9a3412;
  font-size: 12px;
}

.gls-help-lead {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.gls-help-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff7ed;
}

.gls-help-title {
  color: #0f172a;
  font-weight: 950;
}

.gls-help-sub {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.gls-help-list {
  display: grid;
  gap: 12px;
}

.gls-help-item {
  display: flex;
  gap: 10px;
}

.gls-help-item .dot {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: #f97316;
}

.gls-help-item .t {
  color: #0f172a;
  font-weight: 900;
}

.gls-help-item .d {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .gls-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gls-hero {
    padding: 24px;
  }

  .gls-form {
    grid-template-columns: 1fr;
  }

  .gls-span-2 {
    grid-column: auto;
  }
}

/* =========================================
   Dev rend-ui real flow finishing styles
========================================= */

.order-map-wrap {
  height: 600px;
  margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  background: #f8fafc;
}

.gls-bottom-cta {
  display: none;
}

.gls-proof {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  pointer-events: none;
}

.gls-proof-card {
  width: 280px;
  padding: 14px 16px;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .16);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.gls-proof-card.show {
  opacity: 1;
  transform: translateY(0);
}

.gls-proof-title {
  font-weight: 950;
  font-size: 14px;
}

.gls-proof-sub {
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.gls-proof-time {
  margin-top: 6px;
  color: #f97316;
  font-size: 12px;
  font-weight: 900;
}

.order-field.is-error input,
.order-field.is-error select,
.order-field.is-error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .10);
}

.gls-note-error {
  margin-top: 6px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .order-map-wrap {
    height: 480px;
  }

  .gls-bottom-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px;
    border-top: 1px solid #fed7aa;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 28px rgba(15, 23, 42, .12);
  }

  .gls-bottom-cta .row {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .gls-bottom-cta .hint {
    color: #7c2d12;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
  }

  .gls-proof {
    display: none;
  }
}

.order-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:20px 0 22px;
}

.order-choice-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:18px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#fff;
  cursor:pointer;
  transition:.15s ease;
}

.order-choice-card:hover{
  border-color:#ff7a1a;
  box-shadow:0 10px 24px rgba(255,122,26,.12);
}

.order-choice-card input{
  margin-top:4px;
}

.order-choice-card strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.order-choice-card small{
  display:block;
  color:#64748b;
  line-height:1.45;
}

.order-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

@media (max-width:720px){
  .order-choice-grid{
    grid-template-columns:1fr;
  }
}
.order-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.order-btn-primary{
  background:#ff7a1a;
  border-color:#ff7a1a;
  color:#fff;
  box-shadow:0 12px 24px rgba(255,122,26,.22);
}

.order-btn-secondary{
  background:#fff;
  color:#0f172a;
}
.order-flow-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 300px;
  gap:24px;
  align-items:start;
}

.order-flow-main{
  min-width:0;
}

.order-flow-side{
  min-width:0;
}

.order-summary-card{
  padding:0;
  overflow:hidden;
}

.order-summary-card > h3{
  margin:0;
  padding:18px 22px;
  border-bottom:1px solid #e5e7eb;
}

.order-summary-card > :not(h3){
  margin-left:22px;
  margin-right:22px;
}

.order-summary-card .order-price{
  margin-top:18px;
}

.order-summary-card p:last-child{
  margin-bottom:20px;
}

@media (max-width:900px){
  .order-flow-layout{
    grid-template-columns:1fr;
  }
}
.order-card h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.02em;
}

.order-card > .order-muted{
  margin:0 0 22px;
  max-width:720px;
  line-height:1.55;
}

.order-form{
  margin-top:8px;
}

.order-choice-grid{
  margin:0 0 26px;
}

.order-choice-card{
  min-height:74px;
  align-items:center;
}

.order-actions{
  margin-top:8px;
  padding-top:10px;
}

.order-btn{
  min-width:168px;
}

.order-btn-primary{
  min-width:120px;
}
.order-choice-card{
  min-height:auto;
  padding:16px 18px;
}

.order-actions{
  padding-top:0;
  margin-top:18px;
}

.order-btn{
  min-height:46px;
  min-width:auto;
}

.order-btn-secondary{
  padding-left:20px;
  padding-right:20px;
}

.order-btn-primary{
  min-width:112px;
}
.order-flow-page{
  background:#f4f6f8;
  padding:32px 20px 56px;
}

.order-flow-page .seo-container{
  max-width:1180px;
  margin:0 auto;
}

main.order-flow-page{
  width:100%;
  background:#f4f6f8;
  padding:48px 24px 64px;
  box-sizing:border-box;
}

main.order-flow-page > .seo-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  box-sizing:border-box;
}

.order-flow-layout{
  width:100%;
}

.order-content{
    max-width:1120px;
    margin:36px auto 0;
}

.order-content .order-card{
    margin-bottom:24px;
}

.order-content .order-card:last-child{
    margin-bottom:0;
}

.gumi-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.gumi-feature-card{
    background:#fff;
    border:1px solid #fed7aa;
    border-radius:22px;
    padding:26px;
    transition:.25s;
    box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.gumi-feature-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(234,88,12,.14);
}

.gumi-feature-icon{
    width:64px;
    height:64px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;

    background:
        linear-gradient(135deg,#fb923c,#ea580c);

    color:#fff;
    margin-bottom:18px;

    box-shadow:0 12px 28px rgba(234,88,12,.22);
}

.gumi-feature-card strong{
    display:block;
    font-size:22px;
    line-height:1.25;
    color:#7c2d12;
    margin-bottom:12px;
}

.gumi-feature-card small{
    display:block;
    color:#6b7280;
    font-size:15px;
    line-height:1.75;
}

@media(max-width:900px){

    .gumi-feature-grid{
        grid-template-columns:1fr;
    }

}
.gumi-feature-card strong::after{

    content:"";

    display:block;

    width:46px;

    height:4px;

    border-radius:20px;

    background:#fb923c;

    margin-top:10px;

}
.gumi-feature-grid--packaging{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

@media(max-width:1100px){
  .gumi-feature-grid--packaging{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .gumi-feature-grid--packaging{
    grid-template-columns:1fr;
  }
}

.gumi-size-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gumi-size-card{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 15px;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#7c2d12;
  text-decoration:none;
  font-weight:900;
  transition:.2s;
}

.gumi-size-card:hover{
  background:#ffedd5;
  border-color:#fb923c;
  transform:translateY(-1px);
}

.gumi-size-card__icon{
  font-size:16px;
}

.gumi-size-card__title{
  font-size:15px;
  font-weight:950;
}

.gumi-size-card__text{
  display:none;
}

@media(max-width:900px){

    .gumi-size-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

    }

}

@media(max-width:600px){

    .gumi-size-grid{

        grid-template-columns:1fr;

    }

}

.gumi-guide-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:22px;

}

.gumi-guide-card{

    background:#fff;

    border:1px solid #fed7aa;

    border-radius:22px;

    padding:24px;

    text-decoration:none;

    transition:.25s;

    color:inherit;

}

.gumi-guide-card:hover{

    transform:translateY(-3px);

    border-color:#fb923c;

    box-shadow:0 18px 40px rgba(234,88,12,.14);

}

.gumi-guide-card__icon{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#fb923c,#ea580c);

    color:#fff;

    font-size:28px;

    margin-bottom:18px;

}

.gumi-guide-card h3{

    margin:0 0 10px;

    color:#7c2d12;

    font-size:22px;

}

.gumi-guide-card p{

    margin:0;

    color:#6b7280;

    line-height:1.7;

    min-height:70px;

}

.gumi-guide-card span{

    display:inline-block;

    margin-top:18px;

    font-weight:900;

    color:#ea580c;

}

@media(max-width:900px){

    .gumi-guide-grid{

        grid-template-columns:1fr;

    }

}
.gumi-price-panel{
  border-radius:26px;
  padding:30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55), transparent 34%),
    linear-gradient(135deg,#7c2d12,#ea580c);
  color:#fff;
  box-shadow:0 18px 42px rgba(234,88,12,.22);
}

.gumi-price-panel__label{
  font-size:14px;
  font-weight:900;
  opacity:.9;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.gumi-price-panel__amount{
  font-size:clamp(42px,7vw,72px);
  line-height:1;
  font-weight:950;
  letter-spacing:-.05em;
  margin-top:10px;
}

.gumi-price-panel__note{
  margin-top:14px;
  display:inline-flex;
  border-radius:999px;
  padding:8px 12px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.25);
  font-weight:900;
}

.gumi-transfer-box{
  display:grid;
  gap:12px;
}

.gumi-transfer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff7ed;
  border:1px solid #fed7aa;
}

.gumi-transfer-row span{
  color:#7c2d12;
  font-weight:900;
}

.gumi-transfer-row code{
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  font-weight:950;
  color:#111827;
  background:#fff;
  border:1px solid #fdba74;
  border-radius:12px;
  padding:8px 10px;
}

.gumi-transfer-row--important{
  background:linear-gradient(135deg,#fff7ed,#ffedd5);
  border-color:#fb923c;
}

@media(max-width:700px){
  .gumi-transfer-row{
    align-items:flex-start;
    flex-direction:column;
  }
}
.copy-field{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.copy-btn{
    border:0;
    background:#ea580c;
    color:#fff;
    font-weight:800;
    font-size:13px;
    padding:7px 12px;
    border-radius:10px;
    cursor:pointer;
    transition:.2s;
}

.copy-btn:hover{
    background:#c2410c;
}

.copy-btn.done{
    background:#16a34a;
}

@media(max-width:700px){

    .copy-field{
        width:100%;
        justify-content:flex-start;
    }

}
.gumi-transfer-row--important code{
    font-size:18px;
    font-weight:900;
    color:#c2410c;
}

.order-summary-row.uid-row{

    display:block;

}

.order-summary-row.uid-row span{

    display:block;

    margin-bottom:6px;

}

.order-summary-row.uid-row strong{

    display:block;

    text-align:left;

    font-size:13px;

    line-height:1.5;

}

.status-badge{

    display:inline-flex;

    align-items:center;

    padding:6px 10px;

    border-radius:999px;

    font-size:12px;

    font-weight:900;

}

.status-badge--waiting{

    background:#fff7ed;

    color:#c2410c;

    border:1px solid #fdba74;

}

.status-badge--ok{
  background:#ecfdf5;
  color:#047857;
  border:1px solid #a7f3d0;
}

.status-badge--warning{
  background:#fff7ed;
  color:#c2410c;
  border:1px solid #fdba74;
}

.order-summary-row--stack{
    display:block;
    padding:14px 0;
}

.order-summary-row--stack span{
    display:block;
    margin-bottom:6px;
    color:#64748b;
    font-size:13px;
}

.order-summary-row--stack strong{
    display:block;
    color:#111827;
}

.summary-break{
    font-size:13px;
    line-height:1.45;
    word-break:break-word;
    overflow-wrap:anywhere;
}