/* ===== Order Timeline (scoped) ===== */

/* Optional wrapper if you ever need it */
#lz-container {
  width: 100%;
  clear: both;
  margin-top: 15px;
}

.lz-timeline {
  padding: 14px 16px;
  background: #f8f8f8;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

.lz-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.lz-steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22px;
  height: 2px;
  background: #e4e4e4;
  z-index: 0;
}

.lz-step {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lz-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.lz-date {
  display: block;
  font-weight: 700;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
}

.lz-label {
  display: block;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .lz-timeline { padding: 12px 12px; }
  .lz-steps { gap: 8px; }
  .lz-steps::before { left: 10%; right: 10%; top: 20px; }
  .lz-ico { width: 40px; height: 40px; }
  .lz-date { font-size: 14px; }
  .lz-label { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .lz-steps, .lz-timeline { transition: none; }
}
