        body {
            font-family: 'Pretendard', sans-serif;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 768px) {
            /* 모바일 스타일 */
            .register-floating {
                display: none !important;
            }
        }


        /* [관심고객 등록 플로팅 버튼 - 이미지 대체 및 크기 조절] */
        .register-floating {
            width: 115px;
            height: 114px;
            position: absolute;
            top: 23%;
            right: 3%;
            z-index: 9999999999 !important; /* 👈 이 부분을 100에서 9999로 변경하세요 */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .register-floating:hover {
            transform: scale(1.05);
        }

        /* 안쪽 네이비색 원 */
        .register-inner {
            position: absolute;
            width: 82px;
            height: 82px;
            /* 왼쪽 하단이 더 밝은 대각선 그라데이션 */
            background: linear-gradient(45deg, #cd8f67 0%, #a76a41 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.3;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            padding-top: 7px;
        }

        /* 바깥쪽 회전하는 이미지 (SVG 대신 적용) */
        .register-spin-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: spin-rotate 15s linear infinite; /* 회전 애니메이션 유지 */
            z-index: 1;
        }

        @keyframes spin-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        /* =========================================
           서브 비주얼 컨테이너
        ========================================= */
        .sub-visual-wrap {
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #f4f4f4;
            min-height: 450px;
            display: flex;
            align-items: center;
        }

        /* 배경 이미지 스타일 및 줌 애니메이션 */
        .bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bg-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /* 배경 줌 애니메이션 (5초) */
            animation: visualZoom 5s ease-out forwards;
        }

        /* =========================================
           🛠️ 서브페이지 카피(이미지) 컨트롤러
        ========================================= */
        .sub-copy-wrap {
            position: relative;
            z-index: 10;
            padding: 180px 0 90px 500px;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            justify-content: flex-start;

            /* 핵심: 왼쪽에서 오른쪽으로 펼쳐지는 클립 */
            /*clip-path: inset(0 100% 0 0);*/
            /*animation: revealLeft 3s ease-out 0.3s forwards;*/

            /* ✅ 새로 넣을 부분 (시간은 1.5초로 줄이는 것을 추천) */
            opacity: 0;
            animation: copyFade 1.5s ease-out 0.3s forwards;
        }

        .sub-copy-img {
            width: auto;
            max-width: 100%;
            height: auto;
            display: block;
        }
        /* 화면 너비가 768px 이하일 때 적용 (모바일/태블릿) */
        @media screen and (max-width: 768px) {
            .sub-copy-img {

                width: 300px;

                /* max-width: 100%; */

                height: auto;

                display: block;

            }
        }
        /* =========================================
           ✨ 애니메이션 키프레임
        ========================================= */
        /* 배경 줌 효과 */
        @keyframes visualZoom {
            0% { transform: scale(1.1); }   /* 시작할 때 1.1배 크기 */
            100% { transform: scale(1); }  /* 끝날 때 원래 크기(1배) */
        }

        /* 💡 카피 제자리 페이드 효과 (움직임 제거) */
        @keyframes copyFade {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes revealLeft {
            0% {
                clip-path: inset(0 100% 0 0);
            }
            100% {
                clip-path: inset(0 0% 0 0);
            }
        }

        /* =========================================
           📱 모바일 반응형 (화면 너비 768px 이하)
        ========================================= */
        @media (max-width: 768px) {
            .sub-visual-wrap {
                min-height: 350px;
            }

            .sub-copy-wrap {
                padding: 110px 24px 80px 24px;
                justify-content: center;
            }

            .sub-copy-img {
                margin-top: -40px;
            }

        }
