/* Order Form Styles */
.combo-popup {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-form-wrap {
  position: relative;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-group.invalid input {
  border-color: #ff4d4f;
}

.form-message {
  display: block;
  color: #ffd700;
  font-size: 12px;
  margin-top: 5px;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.order-form-wrap button {
  background-color: #ffd700;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s;
}

.order-form-wrap button:hover {
  background-color: #e6c200;
}

.order-form-wrap button.active {
  opacity: 0.7;
  cursor: not-allowed;
}

.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.loading-container.active {
  opacity: 1;
  visibility: visible;
}

.loading {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ffd700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-alert {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  display: none;
}

.form-alert.active {
  display: block;
}

.form-alert.success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
}

.form-alert.error {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
}

.form-alert .message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-alert.success .message {
  color: #52c41a;
}

.form-alert.error .message {
  color: #ffd700;
}
