/* css/order.css
   基础排版,颜色用了你项目里出现过的品牌色(#F7EFE4/#E6E1D8/#C89A5A/#8B857A)作为起点,
   如果 styles.css 里已经有对应的 CSS 变量(比如 --color-cream 之类),
   建议把下面这些十六进制值换成你自己的变量名,保持一致 */

#order-widget {
  max-width: 560px;
  margin: 0 auto;
}

.order-widget-subtitle {
  margin-top: 24px;
  font-size: 18px;
}

.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E6E1D8;
}

.order-item-name {
  font-size: 16px;
}

.order-item-meta {
  font-size: 13px;
  color: #8B857A;
}

.order-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #C89A5A;
  background: #F7EFE4;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.order-window-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #E6E1D8;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}

.order-window-option input:disabled + div {
  opacity: 0.45;
}

#order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E6E1D8;
  font-size: 18px;
}

#order-errors {
  color: #b3452e;
  font-size: 14px;
  margin-top: 8px;
}

#order-confirm-msg {
  color: #4a7a4a;
  font-size: 14px;
  margin-top: 8px;
}

#order-contact,
#order-email,
#order-notes {
  width: 100%;
  padding: 8px 10px;
  margin: 6px 0 16px;
  border: 1px solid #E6E1D8;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

#order-notes {
  resize: vertical;
}
