/* ======================== 장바구니 버튼 ======================== */
.cart-btn {
  position: fixed;
  bottom: 80px;
  right: 40px; /* 🔸 오른쪽 여백 */
  z-index: 1050;
  background-color: #F08200 !important; /* 참포크 오렌지 */
  border: none !important;
  color: #fff !important;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s ease;
}

.cart-btn:hover {
  background-color: #d46f00 !important; /* hover 시 어두운 오렌지 */
}

.offcanvas {
    z-index: 2500 !important;
}

.offcanvas-backdrop {
    z-index: 2400 !important;
}



/* 반응형: 모바일 화면일 때 위치 조정 */
@media (max-width: 768px) {
  .cart-btn {
    right: 24px;
    bottom: 60px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}
