.order-page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--navbar-h) 0 0;
}

.mt-page {
  font-family: var(--font);
  min-height: calc(100vh - var(--navbar-h));
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
}

.mt-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  z-index: 100;
}

.mt-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--page-pad) 100px;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  animation: mt-rise 0.5s cubic-bezier(.25,.8,.25,1) 0.1s forwards;
}

@keyframes mt-rise {
  to { opacity: 1; transform: translateY(0); }
}

.mt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 40px;
  background: var(--gray-50);
}

.mt-chip__dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: mt-blink 2.4s ease-in-out infinite;
}

@keyframes mt-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

.mt-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(177,12,65,0.07);
  border: 1px solid rgba(177,12,65,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--brand);
}

.mt-icon svg {
  width: 26px; height: 26px;
  stroke: currentColor;
}

.mt-heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 16px;
}

.mt-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 40px;
}

.mt-rule {
  width: 100%;
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 40px;
}

.mt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 40px;
}

.mt-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
}

.mt-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.mt-card__value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.mt-card__value--green {
  color: #1a8f4e;
}

.mt-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  text-decoration: none;
  background: #25D366;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  transition:
    transform var(--transition),
    background var(--transition);
}

.mt-wa:hover {
  background: #1db954;
  transform: translateY(-1px);
}

.mt-wa:active {
  transform: translateY(0);
}

.mt-wa__icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.mt-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-300);
}

.mt-note::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mt-main {
    padding: 48px var(--page-pad) 80px;
  }
  .mt-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mt-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }
  .mt-card__label { margin-bottom: 0; }
  .mt-wa {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .mt-heading { font-size: 1.4rem; }
  .mt-sub { font-size: 0.88rem; }
}

