/* QR 코드 관련 스타일 */
.footer-content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* QR 버튼 스타일 */
        .qr-code-btn {
            position: absolute;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 2px solid #333;
        }

        .qr-code-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: url("../images/ball2.png") 32 32, auto;
        }

        .qr-icon {
            width: 24px;
            height: 24px;
            font-size: 20px;
            color: #7b5e57;
        }

        /* QR 모달 배경 */
        .qr-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .qr-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* QR 모달 컨텐츠 */
        .qr-modal-content {
            position: absolute;
            background-color: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            text-align: center;
            width: 700px;
            max-width: 90vw;
            /* 초기 위치: QR 버튼 위치 */
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .qr-modal-overlay.active .qr-modal-content {
            /* 최종 위치: 화면 중앙 */
            top: 50%;
            left: 50%;
            bottom: auto;
            right: auto;
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* 닫기 버튼 */
        .qr-close-btn {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .qr-close-btn:hover {
            transform: rotate(360deg);
            cursor: url("../images/ball2.png") 32 32, auto;
        }

        /* 모달 제목 */
        .qr-modal-title {
            color: #333;
            margin-bottom: 30px;
            font-family: 'Klee One', cursive;
            font-size: 32px;
            font-weight: bold;
        }

        /* QR 이미지 컨테이너 */
        .qr-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .qr-image {
            width: 500px;
            height: 500px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            color: #666;
        }

@media screen and (max-width: 600px) {
    .qr-code-btn {
                right: 15px;
                width: 26px;
                height: 26px;
            }

            .qr-icon {
                width: 20px;
                height: 20px;
                font-size: 18px;
            }

            .qr-modal-content {
                width: 300px;
                padding: 30px;
                right: 30px;
            }

            .qr-modal-title {
                font-size: 26px;
                margin-bottom: 25px;
            }

            .qr-image {
                width: 300px;
                height: 300px;
            }

            .qr-close-btn {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
}