/* Order Search styles - light theme */
.order-search {
  position: relative;
  padding: 60px 0;
  background: #fff;
  color: #222;
  overflow: hidden;
}

.order-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  color: #111;
}

.order-subtitle {
  margin: 12px auto 0;
  text-align: center;
  font-size: 16px;
  color: #555;
}

.order-form {
  max-width: 980px;
  margin: 28px auto 0;
}

.order-tip {
  background: #f6f7f9;
  border: 1px solid #e6e8eb;
  color: #333;
  border-radius: 1000px;
  padding: 10px 18px;
  font-size: 14px;
  width: fit-content;
  margin: 0 auto 16px;
}

.order-input-group {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.order-input {
  flex: 1;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #333;
  padding: 0 14px;
}

.order-input::placeholder { color: #999; }

.order-btn {
  align-self: stretch;
  padding: 0 26px;
  min-width: 120px;
  border: none;
  border-radius: 12px;
  background: var(--color);;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease;
  min-height: 46px;
}

.order-btn:hover { box-shadow: 0 6px 16px rgba(88,179,62,.3); }
.order-btn:active { transform: translateY(1px); }

@media (max-width: 768px) {
  .order-search { padding: 36px 0; }
  .order-title { font-size: 26px; line-height: 1.3; }
  .order-subtitle { font-size: 14px; color: #666; margin-top: 8px; }
  .order-form { margin-top: 20px; padding: 0 16px; }
  .order-input-group {
    flex-direction: column;
    gap: 10px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
  }
  .order-input { line-height: 46px; font-size: 15px; }
  .order-btn { width: 100%; min-height: 44px; font-size: 16px; -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 480px) {
  .order-search { padding: 32px 0; }
  .order-title { font-size: 24px; }
  .order-subtitle { font-size: 13px; }
  .order-tip { font-size: 13px; }
}