@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 슬라이드 팝업 */
#slide-popup-container {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "GmarketSansMedium", "맑은 고딕", helvetica, "Apple SD Gothic Neo", sans-serif;
}
#bottom-slide-popup { width: 100%; height: 100%; }

/* 컨테이너 */
#slide-popup-container .popup-link {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    line-height: 0; 
}

/* 배너 이미지 */
#slide-popup-container .popup-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 1;
    margin-bottom: 75px; 
}

/* 그라데이션 오버레이 */
#slide-popup-container .popup-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; 
    z-index: 2;
}

/* 하단 단색 블록 */
#slide-popup-container .popup-solid-base {
    position: absolute;
    bottom: -75px;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 3;
}

/* 텍스트 그룹 위치 */
#slide-popup-container .popup-text-wrapper {
    position: absolute; 
    z-index: 4; 
    bottom: -25px;  
    left: 10px;
    right: 10px;
    text-align: center;
}

/* 부제목 */
#slide-popup-container .popup-subtext {
    font-size: 13px;
    font-weight: normal;
    line-height: 1.3;
    opacity: 0.8;
    margin-bottom: 4px; 
}

/* 팝업 텍스트 */
#slide-popup-container .popup-text {
    font-family: 'GmarketSansMedium';
    font-size: 19px;
    font-weight: bold;
    line-height: 1.2;
    word-break: keep-all;
}

/* GO 버튼 */
#slide-popup-container .popup-go-btn {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    border-radius: 15px;
    font-family: 'GmarketSansMedium';
    font-size: 12px;
    z-index: 4;
    line-height: normal;
}

/* 오늘 그만 보기 버튼 */
#slide-popup-container .popup-close-today {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 6px;
    cursor: pointer;
    font-family: Presentation;
    font-size: 13px;
    line-height: 1;
}
#slide-popup-container .popup-close-today:hover { 
    background-color: #333; 
}