/* --- 전체 팝업 레이어 --- */
.popup-wrapper {
  position: fixed;
  bottom: 350px;
  right: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px; /* 좁은 화면 대응 여백 */
  box-sizing: border-box;
}

/* 팝업 박스 */
.popup {
  position: relative;
  width: 100%;
  max-width: 350px; /* 최대 500px까지만, 그 이하에서는 100% */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0 16px; /* 모바일 화면에서 좌우 여백 확보 */
}

/* 상단 배경 및 닫기 버튼 */
.popup_close {
  position: absolute;
  right: -12px;
  top: 0;
  text-align: right;
  padding: 8px 16px;
}
.btn_close,
.btn_today_close {
  margin: 0;
  padding: 0;
}
.pop-btn01 {
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 2px solid #f39700;
  border-radius: 100%;
  font-size: 18px;
  color: #f39700;
  font-weight: 700;
  cursor: pointer;
  background-color: #fff;
  transition: color 0.2s ease;
}
.pop-btn01:hover {
  background-color: #fff;
  color: #f39700;
}
/* 팝업 이미지 */
.popup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* 하단 버튼 영역 */
.buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* 버튼 공통 스타일 */
.buttons button {
  flex: 1;
  width: 100%;
  padding: 2px 8px;
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

/* 오늘 하루 보지 않기 버튼 */
.btn_today_close {
  position: absolute;
  bottom: -30px;
  background-color: transparent;
  color: #444;
  font-weight: 600;
  font-size: 24px;
}
.btn_today_close:hover {
  color: #111;
}

/* 닫기 버튼 (하단) */
/* .pop-btn02 {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.pop-btn02:hover {
  opacity: 0.2;
} */
