/* Order Page - Base Structure */
.order-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.order-placeholder {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.placeholder-icon {
  font-size: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.order-placeholder h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ff8c69;
  margin-bottom: 15px;
}

.order-placeholder p {
  font-size: 15px;
  color: #5a9997;
  line-height: 1.6;
  margin-bottom: 20px;
}

.placeholder-apology {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  padding: 20px;
  border-radius: 15px;
  margin-top: 25px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.placeholder-apology p {
  margin: 0;
  font-size: 14px;
  color: #4a7b78;
  font-style: italic;
}

.order-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ff8c69;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.order-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255, 154, 118, 0.15);
}

.order-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.order-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #5ebdb8;
}

.order-section p {
  font-size: 14px;
  color: #5a9997;
  line-height: 1.6;
  margin-bottom: 0;
}

.section-hint {
  font-size: 13px;
  color: #5a9997;
  margin-bottom: 12px;
}

.quick-add-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.quick-add-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Noto Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-height: 80px;
}

.quick-add-btn:active {
  transform: scale(0.95);
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
}

.quick-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.quick-name {
  font-size: 12px;
  font-weight: 600;
  color: #5a9997;
  text-align: center;
}

.quick-price {
  font-size: 14px;
  font-weight: 700;
  color: #ff8c69;
}

.qty-input {
  width: 50px;
  padding: 4px 8px;
  border: 2px solid rgba(94, 189, 184, 0.3);
  border-radius: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: white;
  color: #2c5f5d;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.qty-input:focus {
  outline: none;
  border-color: #5ebdb8;
  box-shadow: 0 0 0 2px rgba(94, 189, 184, 0.1);
}