        .detail-floating-wrap {
            position: fixed;
            bottom: 70px; /* 하단 메뉴와의 간격 */
            right: 20px;  /* [수정] 10px에서 20px로 변경하여 PC 스크롤바 간섭 및 잘림 방지 */
            z-index: 999;
            display: none; /* 스크롤 전에는 숨김 */
            flex-direction: column-reverse; 
            gap: 12px;    /* 버튼 사이 간격 소폭 확대 */
            align-items: center;
            padding: 5px; /* [추가] 박스 그림자가 외곽선에 잘리지 않도록 여백 부여 */
        }

        /* 공통 버튼 스타일 */
        .btn_floating {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: bold;
            text-decoration: none !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* 그림자 농도 조절 */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-sizing: border-box; /* [추가] 테두리 포함 크기 계산 */
            overflow: visible; /* 그림자가 잘리지 않도록 설정 */
        }

        /* TOP 버튼 전용 스타일 */
        .btn_top {
            background: rgba(0, 0, 0, 0.65);
            color: #fff !important;
            line-height: 1;
        }
        .btn_top:hover {
            background: #000;
            transform: translateY(-3px);
        }

        /* 카카오톡 버튼 전용 스타일 */
        .btn_kakao {
            background: #FEE500; 
            color: #3C1E1E !important; 
        }
        .btn_kakao i {
            font-size: 26px; /* 아이콘 크기 최적화 */
            margin: 0;
            padding: 0;
            display: block;
        }
        .btn_kakao:hover {
            background: #fada0a;
            transform: translateY(-3px) scale(1.05);
        }

        /* 모바일 대응 여백 보정 */
        @media (max-width: 768px) {
            .detail-floating-wrap {
                right: 10px; /* 모바일은 스크롤바가 얇거나 없으므로 10px 유지 */
                bottom: 60px;
            }
            .btn_floating {
                width: 46px;
                height: 46px;
            }
        }

/* 숨김 처리 클래스 */
.detail-floating-wrap.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}