.dn-order-status-shell {
  margin: 32px 0;
}

.dn-order-status-shell * {
  box-sizing: border-box;
}

.dn-order-status-shell .dn-shell {
  max-width: 920px;
  margin: 0 auto;
  color: #15231c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.dn-order-status-shell .dn-panel {
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(72, 48, 27, 0.12);
  backdrop-filter: blur(12px);
}

.dn-order-status-shell .dn-panel p,
.dn-order-status-shell .dn-empty-state,
.dn-order-status-shell .dn-timeline-copy span,
.dn-order-status-shell .dn-meta-card span {
  color: #5b6b63;
}

.dn-order-status-shell .dn-panel {
  padding: 34px;
}

.dn-order-status-shell .dn-panel h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.dn-order-status-shell .dn-panel p {
  margin: 0 0 24px;
  line-height: 1.6;
}

.dn-order-status-shell .dn-form {
  display: grid;
  gap: 18px;
}

.dn-order-status-shell .dn-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.dn-order-status-shell .dn-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(21, 35, 28, 0.12);
  border-radius: 16px;
  background: #fffdf8;
  color: #15231c;
  font: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dn-order-status-shell .dn-form input:focus {
  outline: none;
  border-color: rgba(200, 95, 53, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 95, 53, 0.12);
  transform: translateY(-1px);
}

.dn-order-status-shell .dn-form button {
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #c85f35 0%, #7c2f18 100%);
  box-shadow: 0 14px 24px rgba(124, 47, 24, 0.22);
  color: #fffdf9;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.dn-order-status-shell .dn-form button:hover,
.dn-order-status-shell .dn-form button:focus-visible {
  transform: translateY(-2px);
}

.dn-order-status-shell .dn-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 35, 28, 0.08);
}

.dn-order-status-shell .dn-result.visible {
  display: block;
}

.dn-order-status-shell .dn-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dn-order-status-shell .dn-status-pill.ok {
  color: #2c7a56;
  background: rgba(44, 122, 86, 0.12);
}

.dn-order-status-shell .dn-status-pill.warn {
  color: #a56a18;
  background: rgba(165, 106, 24, 0.14);
}

.dn-order-status-shell .dn-status-title {
  margin: 14px 0 10px;
  font-size: 1.7rem;
}

.dn-order-status-shell .dn-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 24px;
}

.dn-order-status-shell .dn-meta-card {
  padding: 16px;
  border: 1px solid rgba(21, 35, 28, 0.08);
  border-radius: 18px;
  background: #fff;
}

.dn-order-status-shell .dn-meta-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dn-order-status-shell .dn-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dn-order-status-shell .dn-timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.dn-order-status-shell .dn-timeline-dot {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 4px solid rgba(21, 35, 28, 0.05);
  border-radius: 50%;
  background: rgba(21, 35, 28, 0.14);
}

.dn-order-status-shell .dn-timeline-item.done .dn-timeline-dot {
  background: #2c7a56;
}

.dn-order-status-shell .dn-timeline-item.active .dn-timeline-dot {
  background: #c85f35;
}

.dn-order-status-shell .dn-timeline-copy {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(21, 35, 28, 0.08);
}

.dn-order-status-shell .dn-timeline-copy strong {
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 920px) {
  .dn-order-status-shell .dn-meta {
    grid-template-columns: 1fr;
  }
}
