/* ── Order page layout ── */
.order-page-root {
  --order-accent: var(--color-brand);
  --order-accent-dark: var(--color-brand-dark);
  --order-gradient: linear-gradient(135deg, var(--color-brand), var(--color-accent));
  max-width: 1100px;
  margin: 0 auto;
}

.panel-main .panel-page-title { display: none; }

/* Hero */
.order-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 24px 28px;
  color: #fff;
}

.order-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--order-gradient);
  opacity: 1;
}

.order-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.order-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-hero-icon svg { width: 32px; height: 32px; }

.order-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
}

.order-hero-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.order-hero-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 480px;
}

/* Layout */
.order-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { order: 2; }
}

/* Sidebar */
.order-summary-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  padding: 20px;
  position: sticky;
  top: 72px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.order-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f6;
}

.order-summary-label { font-size: 0.78rem; font-weight: 700; color: #64748b; }
.order-summary-cat {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--order-accent) 12%, transparent);
  color: var(--order-accent-dark);
  font-weight: 600;
}

.order-summary-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.order-summary-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--order-accent) 10%, transparent);
  color: var(--order-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-summary-item-icon svg { width: 22px; height: 22px; }

.order-summary-item-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.order-summary-item-price { font-size: 1.1rem; font-weight: 800; color: var(--order-accent-dark); }

.order-summary-loading { font-size: 0.85rem; color: #94a3b8; text-align: center; padding: 12px; }

.order-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #475569;
}

.order-highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--order-accent);
  flex-shrink: 0;
}

.order-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #94a3b8;
}

.order-trust-item svg { width: 14px; height: 14px; color: var(--order-accent); }

/* Stepper */
.order-stepper {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  padding: 6px;
  overflow-x: auto;
}

.order-step {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.25s;
  white-space: nowrap;
}

.order-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: all 0.25s;
}

.order-step svg { width: 14px; height: 14px; display: none; }

.order-step.active {
  background: color-mix(in srgb, var(--order-accent) 8%, transparent);
  color: var(--order-accent-dark);
}

.order-step.active .order-step-num {
  border-color: var(--order-accent);
  background: var(--order-accent);
  color: #fff;
}

.order-step.done { color: var(--order-accent-dark); }
.order-step.done .order-step-num {
  border-color: var(--order-accent);
  background: color-mix(in srgb, var(--order-accent) 15%, transparent);
  color: var(--order-accent-dark);
  font-size: 0;
}
.order-step.done .order-step-num::after {
  content: '✓';
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .order-step-label { display: none; }
  .order-step { justify-content: center; padding: 8px; }
}

/* Panels */
.order-panel { display: none; animation: orderFadeIn 0.35s ease; }
.order-panel.active { display: block; }

@keyframes orderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Card */
.order-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.order-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid #eef2f6;
  background: #fafbfc;
}

.order-card-head-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--order-accent) 12%, transparent);
  color: var(--order-accent);
  flex-shrink: 0;
}

.order-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.order-card-sub { font-size: 0.78rem; color: #94a3b8; }

.order-card-body { padding: 24px; }

/* Service preview step 1 */
.order-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.order-preview-stat {
  padding: 14px;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  text-align: center;
}

.order-summary-cycle {
  font-size: 0.72rem;
  color: var(--order-accent-dark);
  font-weight: 600;
  margin-top: 4px;
}

/* Billing cycles */
.order-cycle-section {
  border-top: 1px solid #eef2f6;
  padding-top: 20px !important;
}

.order-cycle-heading {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a2e;
}

.order-cycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.order-cycle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: center;
}

.order-cycle-card:hover {
  border-color: color-mix(in srgb, var(--order-accent) 50%, transparent);
  background: color-mix(in srgb, var(--order-accent) 4%, #fff);
}

.order-cycle-card.active {
  border-color: var(--order-accent);
  background: color-mix(in srgb, var(--order-accent) 10%, #fff);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--order-accent) 20%, transparent);
}

.order-cycle-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
}

.order-cycle-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--order-accent-dark);
}

.order-cycle-per {
  font-size: 0.68rem;
  color: #94a3b8;
}

.order-cycle-save {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  margin-top: 2px;
}

.order-cycle-sale {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

@media (max-width: 480px) {
  .order-cycle-grid { grid-template-columns: repeat(2, 1fr); }
}

.order-preview-stat-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--order-accent-dark);
  margin-bottom: 2px;
}

.order-preview-stat-label { font-size: 0.72rem; color: #94a3b8; }

.order-preview-desc {
  margin-top: 16px;
  padding: 14px;
  background: color-mix(in srgb, var(--order-accent) 6%, transparent);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.7;
}

/* Fields */
.order-field { margin-bottom: 16px; }
.order-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 500px) { .order-field-grid { grid-template-columns: 1fr; } }

.order-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.order-label svg { width: 14px; height: 14px; color: var(--order-accent); }

.order-input,
.order-select,
.order-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.order-input:focus,
.order-select:focus,
.order-textarea:focus {
  outline: none;
  border-color: var(--order-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--order-accent) 15%, transparent);
}

.order-textarea { min-height: 88px; resize: vertical; }

.order-field-hint {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 6px;
}

.order-field-hint.success { color: var(--order-accent-dark); }
.order-field-hint.error { color: #ef4444; }

.order-field-checkbox {
  margin-bottom: 8px;
}

.order-domain-mode {
  margin-bottom: 16px;
  padding: 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafb;
}

.order-domain-mode-title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

.order-domain-mode .order-field-checkbox {
  margin-bottom: 8px;
}

.order-domain-mode .order-field-checkbox:last-child {
  margin-bottom: 0;
}

.order-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  user-select: none;
}

.order-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.order-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.order-checkbox-box svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s;
}

.order-checkbox:checked + .order-checkbox-box {
  background: var(--order-accent);
  border-color: var(--order-accent);
}

.order-checkbox:checked + .order-checkbox-box svg {
  opacity: 1;
}

.order-field-conditional {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.order-irnic-wrap {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--order-accent) 6%, #f8fafb);
  border: 1px solid color-mix(in srgb, var(--order-accent) 18%, #e2e8f0);
}

.order-irnic-wrap.hidden {
  display: none;
}

.order-irnic-wrap .order-input {
  margin-bottom: 8px;
}

.order-irnic-link {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.order-irnic-link svg {
  width: 16px;
  height: 16px;
}

/* Domain search */
.order-domain-search {
  display: flex;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
  direction: ltr;
}

.order-domain-search:focus-within {
  border-color: var(--order-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--order-accent) 15%, transparent);
}

.order-domain-search .order-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.order-domain-suffix {
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: color-mix(in srgb, var(--order-accent) 8%, #f8fafb);
  font-weight: 700;
  color: var(--order-accent-dark);
  font-size: 0.95rem;
  border-right: 1px solid #eef2f6;
  white-space: nowrap;
}

.order-domain-tld-picker {
  flex-shrink: 0;
}

.order-domain-tld-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 14px;
  border: none;
  border-right: 1px solid #eef2f6;
  background: color-mix(in srgb, var(--order-accent) 8%, #f8fafb);
  color: var(--order-accent-dark);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.order-domain-tld-btn:hover {
  background: color-mix(in srgb, var(--order-accent) 14%, #f8fafb);
}

.order-domain-tld-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* TLD popup */
.order-tld-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-tld-popup.hidden {
  display: none;
}

body.order-tld-popup-open {
  overflow: hidden;
}

.order-tld-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
}

.order-tld-popup-panel {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  max-height: min(520px, 88vh);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: order-tld-popup-in 0.18s ease-out;
}

@keyframes order-tld-popup-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.order-tld-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef2f6;
}

.order-tld-popup-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.order-tld-popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.order-tld-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.order-tld-popup-close svg {
  width: 18px;
  height: 18px;
}

.order-tld-popup-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #eef2f6;
  background: #f8fafb;
}

.order-tld-popup-search-wrap svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
}

.order-tld-popup-search {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: #1e293b;
}

.order-tld-popup-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  overflow-y: auto;
  flex: 1;
}

.order-domain-tld-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.order-domain-tld-group {
  padding: 8px 14px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-domain-tld-group.hidden,
.order-domain-tld-item.hidden {
  display: none;
}

.order-domain-tld-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 14px;
  border: none;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
}

.order-domain-tld-option:hover,
.order-domain-tld-item.is-active .order-domain-tld-option {
  background: color-mix(in srgb, var(--order-accent) 10%, #fff);
}

.order-domain-tld-name {
  font-weight: 700;
  color: var(--order-accent-dark);
  direction: ltr;
}

.order-domain-tld-label {
  font-size: 0.78rem;
  color: #64748b;
}

.order-domain-check {
  margin-top: 10px;
}

.order-domain-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 10px;
}

.order-domain-status.available {
  background: rgba(var(--color-brand-rgb), 0.1);
  color: var(--color-brand-dark);
}

.order-domain-status.unavailable {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

.order-domain-status svg { width: 18px; height: 18px; }

/* Phone */
.order-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  direction: ltr;
}

.order-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f8fafb;
  font-weight: 600;
  color: #64748b;
  font-size: 0.88rem;
  border-right: 1px solid #eef2f6;
}

.order-phone-wrap .order-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Auth */
.order-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.order-auth-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.order-auth-tab svg { width: 16px; height: 16px; }

.order-auth-tab.active {
  border-color: var(--order-accent);
  background: color-mix(in srgb, var(--order-accent) 8%, transparent);
  color: var(--order-accent-dark);
}

.order-auth-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, var(--order-accent) 8%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--order-accent) 25%, transparent);
}

.order-auth-success-icon { color: var(--order-accent); }
.order-auth-success-icon svg { width: 32px; height: 32px; }
.order-auth-success-label { font-size: 0.72rem; color: #64748b; }
.order-auth-success-name { font-weight: 700; font-size: 0.95rem; }

.order-otp-section { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eef2f6; }
.order-otp-label { text-align: center; font-size: 0.82rem; color: #64748b; margin-bottom: 14px; }

.order-otp-boxes {
  display: flex;
  gap: 8px;
  justify-content: center;
  direction: ltr;
  margin-bottom: 16px;
  position: relative;
}

.order-otp-boxes .otp-sms-capture {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.order-otp-box {
  width: 44px;
  height: 50px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: inherit;
  transition: border-color 0.2s;
}

.order-otp-box:focus {
  outline: none;
  border-color: var(--order-accent);
}

/* Coupon */
.order-coupon-box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.order-coupon-row {
  display: flex;
  gap: 8px;
}

.order-coupon-row .order-input { flex: 1; }

/* Invoice */
.order-invoice {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
}

.order-invoice-row span:first-child { color: #64748b; }
.order-invoice-row span:last-child { font-weight: 600; }

.order-invoice-row.total {
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 2px solid #eef2f6;
  font-size: 1.05rem;
}

.order-invoice-row.total span:last-child {
  color: var(--order-accent-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.order-invoice-domain {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #f8fafb;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.order-invoice-domain svg { width: 20px; height: 20px; color: var(--order-accent); }
.order-invoice-domain strong { dir: ltr; unicode-bidi: embed; }

/* Buttons */
.order-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.order-btn svg { width: 18px; height: 18px; }

.order-btn-primary {
  background: var(--order-accent);
  color: #fff;
}

.order-btn-primary:hover { background: var(--order-accent-dark); }
.order-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.order-btn-outline {
  background: #fff;
  color: var(--order-accent-dark);
  border: 1.5px solid var(--order-accent);
}

.order-btn-outline:hover {
  background: color-mix(in srgb, var(--order-accent) 8%, transparent);
}

.order-btn-ghost {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
}

.order-btn-ghost:hover { background: #f8fafb; color: #475569; }

.order-btn-block { width: 100%; }

.order-btn-pay {
  background: var(--order-gradient);
  color: #fff;
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--order-accent) 35%, transparent);
}

.order-btn-pay:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--order-accent) 40%, transparent);
}

.order-btn-pay:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.hidden { display: none !important; }
