/* ============================
   Everythings Multi-Option Cart
   ============================ */
/* 전체에 100% 강제 금지! → 필요한 요소만 100% */
.product-options-wrapper #multi-cart-preview {
  width: 100%;
  box-sizing: border-box;
}

/* 전체 영역 */
#multi-cart-preview {
  display: none;
  width: 100%;
  margin: 4px 0px;
  border-bottom: 1px solid #aaa;
}

#multi-cart-preview.active {
  display: block;
}

/* 옵션 항목 */
.multi-cart-item {
  width: 100%; /* 개별 박스만 100% */
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.multi-cart-item:last-child {
  border-bottom: none;
}

.multi-cart-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

/* 아래줄: qty + 가격/삭제 */
.multi-cart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; /* 전체 폭 사용 */
}

/* ============================
   수량 박스
   ============================ */
.qty-box {
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #999;
  padding: 2px 6px;
  flex-shrink: 0; /* 🔥 폭 줄어들지 않도록 */
}

.qty-btn {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.qty-input {
  width: 20px;
  text-align: center;
  background: transparent;
  border: none;
}

/* ============================
   가격 + 삭제 묶음
   ============================ */
.price-remove-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* 🔥 붙지 않게 고정 */
}

.multi-cart-price {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.multi-cart-price del {
  font-size: 11px;
  color: #999;
  margin-right: 4px;
}

/* 삭제 버튼 */
.multi-cart-remove {
  font-size: 16px; /* 🔥 18px → 16px로 줄여 안정화 */
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
}
