/* ========================================================= */
/* 커스텀 스타일                                             */
/* ========================================================= */

/*팝업 CSS*/
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-inner {
  position: relative;
  width: 80%;
  max-width: 450px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeIn 0.4s ease;
  border:3px solid white;
}

.popup-inner img {
  width: 100%;
  display: block;
}

.popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
  background: #f5f5f5;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color:white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* 모바일 최적화 */
@media (max-width: 480px) {
  .popup-inner {
    width: 90%;
    height: auto;
    border-radius: 0;
	border-radius:10px;
  }
}

/*팝업 마무리*/