/* ============================================================
   PS Beauty Theme - popup.css
   메인 팝업 스타일
   ============================================================ */

.main-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.main-popup__box {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.main-popup__img-link {
    display: block;
}

.main-popup__img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: cover;
}

/* 팝업 하단 액션 바 */
.main-popup__actions {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 30, 0.92);
    backdrop-filter: blur(10px);
}

.main-popup__no-today {
    flex: 1;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-popup__no-today::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.main-popup__no-today:hover { color: #fff; }
.main-popup__no-today:hover::before {
    border-color: #fff;
    background: rgba(255,255,255,0.2);
}

.main-popup__close {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255,255,255,0.15);
    transition: color 0.2s ease;
}
.main-popup__close:hover { color: rgba(255,255,255,0.7); }
