.lf-order-panel {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background: #fff;
}
.lf-order-panel h2 {
  margin-top: 0;
}
.lf-order-panel h3 {
  margin-top: 1.5rem;
}
.lf-order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.lf-order-summary-box {
  padding: 1rem;
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 8px;
}
.lf-order-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.72;
  margin-bottom: 0.25rem;
}
.lf-order-estimate {
  margin: 1rem 0;
  padding: 1rem;
  background: #fff8e6;
  border: 1px solid #f0ddb1;
  border-radius: 8px;
}
.lf-order-timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: relative;
}
.lf-timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  padding: 0 0 1.2rem;
  position: relative;
}
.lf-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: #e1e1e1;
}
.lf-timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #bfbfbf;
  margin-top: 3px;
  z-index: 1;
}
.lf-timeline-done .lf-timeline-dot {
  background: #2e7d32;
}
.lf-timeline-current .lf-timeline-dot {
  background: #f5a623;
}
.lf-timeline-pending .lf-timeline-dot {
  background: #9e9e9e;
}
.lf-timeline-cancelled .lf-timeline-dot {
  background: #b00020;
}
.lf-timeline-item span:not(.lf-timeline-dot) {
  display: block;
  font-size: 0.9rem;
  opacity: 0.78;
  margin-top: 0.15rem;
}
.lf-timeline-item p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}
.lf-google-login-wrap {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.lf-google-login-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.lf-google-login-button {
  display: flex;
  justify-content: center;
  min-height: 44px;
}
.lf-google-login-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.lf-google-login-message.is-error {
  color: #b00020;
}
.lf-login-separator {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #777;
  font-size: 0.9rem;
}
.lf-login-separator::before,
.lf-login-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}
@media (max-width: 700px) {
  .lf-order-summary-grid {
    grid-template-columns: 1fr;
  }
}
.lf-order-summary-grid-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lf-order-sent {
  background: #eef8f0;
  border-color: #cfe8d2;
}
@media (max-width: 700px) {
  .lf-order-summary-grid-simple {
    grid-template-columns: 1fr;
  }
}
