/* 별점 + 보관함/공유 같은 줄 배치 */
.product-rating-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-rating-share .ratings-container {
    margin-bottom: 0;
}

/* 보관함/공유 아이콘 이미지 */
.product-share-icons {
    display: flex;
    align-items: center;
}

.product-share-icons img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    cursor: pointer;
}

.product-share-icons a+a {
    margin-left: 8px;
}

/* 장바구니/바로구매 버튼 높이 통일 */
.product-single-details .product-action .btn {
    padding: 12px 24px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    min-height: 46px;
    box-sizing: border-box;
}

/* elevateZoom inner 모드: 이미지 내부 확대 지원 */
.product-single-gallery .product-item {
    overflow: hidden;
    cursor: crosshair;
}
.product-single-gallery .product-item .zoomWindow {
    z-index: 10 !important;
}
.product-single-gallery .product-single-image {
    width: 100%;
    height: auto;
}

/* ─── 상품 상세: 수량 버튼 원형 + 가로 레이아웃 ─── */
/* 수량 + 총 금액을 같은 줄에 배치 */
.buy-panel .bp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    padding-top: 15px;
    margin-top: 15px;
}

/* -/+ 버튼 원형 (상품 상세 페이지만 적용) */
.buy-panel .product-single-qty .btn.btn-outline {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #f5f5f5;
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.buy-panel .product-single-qty .btn.btn-outline:hover {
    background: #e0e0e0;
    border-color: #999;
}

/* 수량 입력 필드: 원형 버튼 높이(32px)에 맞춤 */
.buy-panel .product-single-qty .bootstrap-touchspin .form-control {
    width: 40px;
    height: 32px;
    padding: 4px 2px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 4px;
}

/* 총 상품금액 영역 (오른쪽 정렬) */
.bp-total {
    text-align: right;
}
.bp-total-label {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 2px;
}
.bp-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}