.step-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 10px;
}

.step {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
}

.circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #555;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.active .circle {
  background-color: #f44336; /* 빨간색 */
}

.arrow {
  color: #ccc;
  font-size: 20px;
}

.title {
  font-size: 30px;
  font-weight: bold;
}

.step-icon {
  font-size: 16px;
  margin-right: 4px;
}

.card{
    border-radius: 15px;
     overflow: hidden;
}
/* 커스텀 스타일 */
.cart-item { border-bottom: 1px solid #e9ecef; }
.cart-item:last-child { border-bottom: none; }
.cart-summary .col { padding: 1rem; }
.cart-summary span { display: block; font-size: 0.9rem; color: #6c757d; }
.cart-summary .fw-bold { font-size: 1.1rem; }

/* 액션 버튼 스타일 */
.action-buttons {
 color: #333;
}
/* 구분선 및 간격 조정 */
.action-buttons > *:not(:last-child)::after {
 content: "|";
 margin: 0 0.5rem; /* 간격 축소 */
 color: #6c757d;
}
/* 버튼 링크 텍스트 컬러 및 밑줄 제거 */
.action-buttons .btn-link {
 color: #333 !important;
 text-decoration: none !important;
 padding: 0;
 font-size: 0.95rem;
}
.action-buttons .btn-link:hover {
 color: #333 !important;
 text-decoration: none;
}
/* 체크박스 라벨 컬러 */
.action-buttons .form-check-label {
 color: #333;
 margin-right: 0; /* 불필요 여백 제거 */
}

.item-options, .item-shipping { font-size: 0.85rem; color: #6c757d; }
/* 가격 텍스트 줄바꿈 방지 */
.no-wrap { white-space: nowrap; }


#emptyCart .cart-icon {
  font-size: 5rem;
  color: #cbdcee;
}

/* 숫자 입력창 화살표(스피너) 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
