        /* --- 공통 스타일 --- */
        .popup-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
        }

        .popup-footer button {
            border: none;
            padding: 5px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
        }

        .dont-show-today { display: flex; align-items: center; }
        .dont-show-today label { font-size: 16px; color: #555; cursor: pointer; position: relative; padding-left: 24px; }
        .dont-show-today .chk-dont-show { display: none; }
        .dont-show-today .chk-dont-show+label::before {
            content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
            width: 18px; height: 18px; border: 1px solid #ccc; border-radius: 4px; background-color: #fff;
        }
        .dont-show-today .chk-dont-show:checked+label::after {
            content: '✔'; position: absolute; left: 4px; top: 50%;
            transform: translateY(-50%); font-size: 14px; color: #007bff; font-weight: bold;
        }

        #desktop-popup-container { display: none; }
        .desktop-popup {
            display: none; position: absolute; background-color: #fff; border: 1px solid #e0e0e0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); z-index: 10000; flex-direction: column;
            border-radius: 4px; overflow: hidden;
        }
        .desktop-popup .popup-body { padding: 0; flex: 1; cursor: move; }
        .desktop-popup .popup-body img { pointer-events: none; width: 100%; height: 100%; object-fit: cover; }
        .desktop-popup .popup-footer { background-color: rgba(0, 0, 0, 0.75); }
        .desktop-popup .popup-footer .dont-show-today label { color: #ccc; }
        .desktop-popup .popup-footer .btn-close { background-color: #333; color: white; }

        .popup-slider-wrap {
            display: flex;
            visibility: hidden;
            opacity: 0;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            justify-content: center;
            align-items: flex-end;
            transition: opacity 0.3s ease, visibility 0.3s;
        }
		.popup-slider-wrap .swiper-button-prev{
			text-align:center;padding-top:3px;
			margin-top: 0px !important;
			display:none;
		}
		.popup-slider-wrap .swiper-button-next{
			text-align:center;padding-top:3px;
			margin-top: 0px !important;
			display:none;
		}
        .popup-slider-content {
            width: 100%;
            max-width: 768px;
            background-color: #fff;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        .popup-header {
            position: relative;
            padding: 12px;
            text-align: center;
        }
        .popup-grabber {
            display: inline-block;
            width: 40px;
            height: 5px;
            background-color: #e0e0e0;
            border-radius: 2.5px;
        }
        .popup-slider-wrap .btn-slider-close {
            position: absolute;
            top: 50%; right: 12px; transform: translateY(-50%);
            width: 28px; height: 28px; background-color: #f1f1f1; color: #888;
            border-radius: 50%; font-size: 24px; font-weight: 300; line-height: 26px;
            text-align: center; text-decoration: none; cursor: pointer; border: none;
			display:none;
        }
        .popup-slider-content .swiper-slide img {
            width: 100%; height: auto; display: block;
        }
        .popup-slider-content .swiper-button-next,
        .popup-slider-content .swiper-button-prev {
            color: #fff; background-color: rgba(0,0,0,0.3);
            width: 32px; height: 32px; border-radius: 50%;
            --swiper-navigation-size: 16px;
        }
        .popup-slider-content .swiper-pagination {
            position: static; padding: 12px 0; font-size: 14px;
            color: #888; font-weight: 500;
        }
        .popup-slider-content .swiper-pagination .swiper-pagination-current {
            font-weight: 700; color: #000;
        }

        .popup-slider-wrap .mobile-global-footer {
            padding: 16px; border-top: 1px solid #f0f0f0; background-color: #f9f9f9;
        }
        .popup-slider-wrap .mobile-global-footer .dont-show-today {
            /*padding-bottom: 12px;*/
        }
        .popup-slider-wrap .mobile-global-footer .btn-close {
            /*width: 100%;*/ background-color: #333; color: white;
            padding: 12px; font-size: 15px; font-weight: bold; border-radius: 8px;
        }

        .is-hidden { display: none !important; }

        @media screen and (max-width: 768px) {
            body.popups-active .popup-slider-wrap {
                display: flex;
            }

            body.popups-active .popup-slider-wrap {
                visibility: visible;
                opacity: 1;
            }
            body.popups-active .popup-slider-content {
                transform: translateY(0);
            }

            body.popups-active.mobile-popup-closing .popup-slider-wrap {
                opacity: 0;
            }
            body.popups-active.mobile-popup-closing .popup-slider-content {
                transform: translateY(100%);
            }
        }

        @media screen and (min-width: 769px) {
            body.popups-active #desktop-popup-container {
                display: block;
            }
            body.popups-active .desktop-popup {
                display: flex;
            }
        }