:root{
  --bg-start: #8fb6df;
  --bg-end: #607ea8;
  --card-bg: rgba(255,255,255,0.85);
  --accent: #2ecc71;
  --accent-dark: #27ae60;
  --text: #16324a;
  --muted: #6b7b8c;
  --error: #e74c3c;
  --radius: 14px;
}

/* Reset */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body{
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
}

/* Background */
body{
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  padding: 20px;
}

/* Form Card */
.order-box{
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Title */
.order-box h2{
  text-align: center;
  margin-bottom: 18px;
  font-size: 22px;
}

/* Form layout */
#orderForm{
  display: grid;
  gap: 12px;
}

/* Labels */
label{
  font-size: 13px;
  color: var(--muted);
}

/* Inputs & Select */
input,
select{
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #d0d7df;
  outline: none;
  transition: all 0.2s ease;
}

/* Focus */
input:focus,
select:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.15);
}

/* Button */
button{
  margin-top: 10px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(39,174,96,0.35);
}

button:active{
  transform: translateY(0);
}

/* Message box */
#msg{
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  display: none;
}

/* Success */
#msg.success{
  display: block;
  background: rgba(46,204,113,0.15);
  color: #0f6b34;
  border: 1px solid rgba(46,204,113,0.3);
}

/* Error */
#msg.error{
  display: block;
  background: rgba(231,76,60,0.12);
  color: var(--error);
  border: 1px solid rgba(231,76,60,0.25);
}

/* Mobile */
@media (max-width: 420px){
  .order-box{
    padding: 20px;
  }
  h2{
    font-size: 18px;
  }
}


/* Action Buttons (WhatsApp / Email) */
.action-buttons{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.action-buttons button{
  flex: 1;
  font-size: 14px;
}

/* WhatsApp button color */
#whatsappBtn{
  background: linear-gradient(180deg, #25D366, #1ebe5d);
}

#whatsappBtn:hover{
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

/* Email button color */
#emailBtn{
  background: linear-gradient(180deg, #3498db, #2980b9);
}

#emailBtn:hover{
  box-shadow: 0 8px 18px rgba(52, 152, 219, 0.35);
}
.subtitle{
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

#msg h3{
  margin-bottom: 6px;
  font-size: 16px;
}

#msg p{
  line-height: 1.5;
}
