/* ============================================================
   WCellar Cart Select — 블록 카트 "이번에 결제 수량" 컨트롤
   (블록 카트 디자인은 미변경. 주입 컨트롤만 스타일)
   ============================================================ */

.wcs-order-ctl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 5px 10px;
  background: #faf6f4;
  border: 1px solid #ecdfe0;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  user-select: none;
}
.wcs-order-ctl.wcs-zero {
  background: #f4f4f4;
  border-color: #e2e2e2;
  opacity: .8;
}
.wcs-oq-label { color: #7a1f2b; font-weight: 700; font-size: 12px; }
.wcs-order-ctl.wcs-zero .wcs-oq-label { color: #999; }

.wcs-oq-btn {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #d9c7c9;
  background: #fff;
  border-radius: 50%;
  font-size: 16px; line-height: 1; color: #7a1f2b;
  cursor: pointer; padding: 0;
  transition: background .12s, border-color .12s;
}
.wcs-oq-btn:hover { background: #7a1f2b; color: #fff; border-color: #7a1f2b; }

.wcs-oq-val {
  min-width: 18px; text-align: center;
  font-weight: 800; font-size: 15px; color: #222;
  font-variant-numeric: tabular-nums;
}
.wcs-oq-suffix { color: #999; font-size: 12px; }

/* 결제 진행 버튼: 0개 선택 시 막힘 표시 */
.wc-block-cart__submit-button.wcs-blocked { opacity: .45 !important; }
.wc-block-cart__submit-button.wcs-busy { opacity: .65 !important; }

/* "결제 진행" 버튼 위 실시간 "이번에 결제: N병 · €X" */
.wcs-live-summary {
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #7a1f2b;
  color: #fff;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.wcs-live-summary b { font-weight: 800; font-size: 16px; }
.wcs-live-summary.wcs-ls-empty {
  background: #f4ecec;
  color: #9a6a6a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .wcs-order-ctl { margin-top: 8px; padding: 6px 10px; }
  .wcs-oq-btn { width: 28px; height: 28px; }   /* 모바일 터치영역 */
  .wcs-oq-val { font-size: 16px; }
}
