/* Order Page - Forms and Inputs */
.fulfillment-options,
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fulfillment-option,
.payment-option {
  display: block;
  cursor: pointer;
}

.fulfillment-option input,
.payment-option input {
  display: none;
}

.fulfillment-option .option-content,
.payment-option .option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.2s ease;
}

.fulfillment-option input:checked ~ .option-content,
.payment-option input:checked ~ .option-content {
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  border-color: #ff8c69;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.3);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

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

.option-title {
  font-size: 15px;
  font-weight: 700;
  color: #5ebdb8;
}

.fulfillment-option input:checked ~ .option-content .option-title,
.payment-option input:checked ~ .option-content .option-title {
  color: white;
}

.option-desc {
  font-size: 12px;
  color: #5a9997;
  margin: 0;
  padding-left: 34px;
}

.fulfillment-option input:checked ~ .option-content .option-desc {
  color: rgba(255, 255, 255, 0.9);
}

.payment-option .option-content {
  flex-direction: row;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input {
  padding: 12px 15px;
  border: 2px solid rgba(94, 189, 184, 0.3);
  border-radius: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  background: white;
  color: #2c5f5d;
  transition: all 0.2s ease;
}

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

.form-input::placeholder {
  color: #a0c5c3;
}

.order-policies {
  background: linear-gradient(135deg, #fff5eb 0%, #f0f9f8 100%);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.order-policies h4 {
  font-size: 14px;
  font-weight: 700;
  color: #5ebdb8;
  margin-bottom: 10px;
}

.order-policies ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-policies li {
  font-size: 12px;
  color: #5a9997;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 0;
}

.order-policies li:last-child {
  margin-bottom: 0;
}

.submit-order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #ff9a76 0%, #ffd89b 100%);
  border: none;
  border-radius: 25px;
  color: white;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 154, 118, 0.3);
  min-height: 52px;
}

.submit-order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-order-btn:not(:disabled):active {
  transform: scale(0.98);
}

.btn-icon {
  font-size: 20px;
}