.order-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-columns {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: flex-start;
}

.order-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-column--side {
  position: sticky;
  top: 88px;
}

.order-menu {
  margin: 0;
}

.menu-category--inner {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 10px;
}

.order-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 12px;
}

.menu-item-meta--order {
  min-width: 120px;
}

.order-qty-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 4px;
}

.order-qty-row label {
  color: var(--muted);
}

.order-qty-row input {
  width: 62px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: #020617;
  color: #f9fafb;
  padding: 4px 8px;
  font-size: 12px;
}

.menu-item.has-qty {
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.12), transparent 55%);
  border-radius: 14px;
  padding: 6px 8px;
}

.order-menu-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-clear {
  font-size: 13px;
}

.order-cart-empty {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 2px;
}

.order-cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.order-cart-item {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(75, 85, 99, 0.9);
}

.order-cart-item:last-child {
  border-bottom: 0;
}

.order-cart-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.order-cart-qty {
  font-weight: 700;
  color: var(--accent-soft);
  min-width: 28px;
}

.order-cart-name {
  font-size: 14px;
  font-weight: 600;
}

.order-cart-meta {
  font-size: 12px;
  color: var(--muted);
}

.order-cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 4px;
}

.order-cart-price {
  font-weight: 600;
}

.order-cart-remove {
  font-size: 11px;
  color: #fca5a5;
  text-decoration: none;
}

.order-cart-remove:hover {
  text-decoration: underline;
}

.order-cart-summary {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(75, 85, 99, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.order-form-fields {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.order-field label {
  color: var(--text);
}

.order-field input,
.order-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: #020617;
  color: #f9fafb;
  padding: 8px 10px;
  font-size: 13px;
  resize: vertical;
}

.order-small-note {
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 4px;
}

.order-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn-pay-card {
  width: 100%;
}

.btn-pay-klarna {
  width: 100%;
  background: linear-gradient(135deg, #f9a8ff, #d946ef);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn-pay-klarna:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.btn-paypal {
  width: 100%;
  background: linear-gradient(135deg, #ffc439, #ffb000);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn-paypal:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.checkout-success-card {
  max-width: 460px;
  margin: 40px auto;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.checkout-success-icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.checkout-success-card h1 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.checkout-success-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .order-columns {
    grid-template-columns: minmax(0, 1fr);
  }
  .order-column--side {
    position: static;
  }
}

@media (max-width: 640px) {
  .order-layout {
    gap: 14px;
  }
}