		/* ÆË¾÷ ¿À¹ö·¹ÀÌ */
		.popup-overlay {
			position: fixed;
			bottom: 30px;
			right: 30px;
			z-index: 1000;
			opacity: 0;
			visibility: hidden;
			transform: translateY(100px);
			transition: all 0.4s ease;
	}

	.popup-overlay.active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
	}

	/* ÆË¾÷ ÄÁÅ×ÀÌ³Ê */
	.popup-container {
		position: relative;
		background: white;
		border-radius: 20px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		padding: 20px;
		max-width: 90vw;
		transition: transform 0.3s ease;
		border: 2px solid #e0e0e0;
	}

	.popup-overlay.active .popup-container {
			transform: translateY(0);
	}

	/* ´Ý±â ¹öÆ° */
	.close-btn {
			position: absolute;
			top: 15px;
			right: 20px;
			background: none;
			border: none;
			font-size: 24px;
			cursor: pointer;
			color: #666;
			z-index: 1001;
			padding: 5px;
			border-radius: 50%;
			transition: all 0.2s ease;
	}

	.close-btn:hover {
			background: #f0f0f0;
			color: #333;
	}

	/* ½½¶óÀÌµå ÄÁÅ×ÀÌ³Ê */
	.slide-container {
			position: relative;
			width: 450px;
			height: 450px;
			margin: 0 auto 30px;
			overflow: hidden;
			border-radius: 15px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	}

	.slide {
			position: absolute;
			width: 100%;
			height: 100%;
			opacity: 0;
			transition: opacity 0.5s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
			font-size: 20px;
			color: #666;
			border-radius: 15px;
	}

	.slide.active {
			opacity: 1;
	}

	.slide img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 15px;
	}

	/* ³×ºñ°ÔÀÌ¼Ç ¹öÆ° */
	.nav-btn {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background: rgba(255, 255, 255, 0.9);
			border: none;
			border-radius: 50%;
			width: 40px;
			height: 40px;
			cursor: pointer;
			font-size: 20px;
			color: #333;
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
			transition: all 0.3s ease;
			z-index: 1002;
	}

	.nav-btn:hover {
			background: white;
			transform: translateY(-50%) scale(1.1);
			box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	}

	.nav-btn.prev {
			left: 10px;
	}

	.nav-btn.next {
			right: 10px;
	}

	/* ÀÎµðÄÉÀÌÅÍ */
	.indicators {
			display: flex;
			justify-content: center;
			gap: 8px;
			margin-bottom: 30px;
	}

	.indicator {
			width: 12px;
			height: 12px;
			border-radius: 50%;
			background: #ddd;
			cursor: pointer;
			transition: all 0.3s ease;
	}

	.indicator.active {
			background: #667eea;
			transform: scale(1.2);
	}

	/* ÇÏ´Ü ¿É¼Ç */
	.popup-footer {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding-top: 20px;
			border-top: 1px solid #eee;
	}

	.checkbox-container {
			display: flex;
			align-items: center;
			gap: 8px;
			font-size: 14px;
			color: #666;
	}

	.checkbox-container input[type="checkbox"] {
			width: 18px;
			height: 18px;
			accent-color: #667eea;
	}

	.popup-actions {
			display: flex;
			gap: 10px;
	}

	.btn {
			padding: 8px 16px;
			border: none;
			border-radius: 6px;
			cursor: pointer;
			font-size: 14px;
			transition: all 0.2s ease;
	}

	.btn-secondary {
			background: #f8f9fa;
			color: #666;
			border: 1px solid #dee2e6;
	}

	.btn-secondary:hover {
			background: #e9ecef;
	}

	.btn-primary {
			background: #667eea;
			color: white;
	}

	.btn-primary:hover {
			background: #5a6fd8;
	}

	@media (max-width: 600px) {
		.popup-overlay {
			bottom: 20px;
			right: 20px;
			left: 20px;
			right: 20px;
		}
		
		.popup-container {
			width: 100%;
			padding: 20px 60px 20px 60px;
		}
		
		.slide-container {
			width: 300px;
			height: 300px;
		}
		
		.nav-btn.prev {
			left: 10px;
		}

		.nav-btn.next {
			right: 10px;
		}
	}

	@media (max-width: 480px) {
		.popup-overlay {
			bottom: 10px;
			left: 10px;
			right: 10px;
		}
		
		.popup-container {
			padding: 15px 50px 15px 50px;
		}
		
		.slide-container {
			width: 250px;
			height: 250px;
		}
	}
