#rush-order-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  font-family: Poppins, sans-serif;
}
#rush-order-form h2 {
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
  color: #222;
}
#rush-order-form .subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}
#rush-order-form label {
  font-weight: bold;
  margin-top: 25px;
  display: block;
}
#rush-order-form input,
#rush-order-form select,
#rush-order-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#rush-order-form .size-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
#rush-order-form button {
  background: #f9a825;
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
}
#rush-order-form button:hover {
  background: #000000;
}


.total-display {margin-top: 50px !important;
font-size: 23px;}
.error-message {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: red;
}