/* Track Order Page Custom Styles
   Only add overrides or enhancements here. Uses site palette. */

.track-order-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 2rem auto;
}

.track-order-status,
.track-order-summary {
  background: #fff8f0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(120, 0, 0, 0.07);
  padding: 2rem;
  flex: 1 1 350px;
}

@media (max-width: 900px) {
  .track-order-main {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Timeline improvements */
.timeline-dot {
  border: 3px solid #d4af37;
  background: #fff8f0;
  color: #7b1e1e;
}
.timeline-dot.active {
  background: #d4af37;
  color: #7b1e1e;
}
.timeline-line {
  background: #d4af37;
}

/* Card spacing */
.track-order-status {
  margin-bottom: 2rem;
}

/* Responsive summary */
.track-order-summary {
  min-width: 320px;
  max-width: 400px;
}

/* Button tweaks */
.track-order-btn {
  background: #7b1e1e;
  color: #fff;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-weight: bold;
  border: none;
  transition: background 0.2s;
}
.track-order-btn:hover {
  background: #d4af37;
  color: #7b1e1e;
}
