/* 팜플 공통 모달/토스트 */
.pample-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pmFade 0.2s ease-out;
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }

.pample-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 460px;
    width: 100%;
    padding: 32px 28px 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: pmSlide 0.25s ease-out;
}
@keyframes pmSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.pample-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none; border: none;
    font-size: 28px; line-height: 1;
    color: #999; cursor: pointer;
    width: 32px; height: 32px;
    border-radius: 50%;
    transition: background 0.2s;
}
.pample-modal-close:hover { background: #f0f0f0; color: #000; }

.pample-modal-header { text-align: center; margin-bottom: 20px; }
.pample-modal-icon {
    font-size: 40px;
    color: #2bbcc0;
    margin-bottom: 8px;
}
.pample-modal-header h3 {
    font-size: 20px; font-weight: 700;
    color: #1d1d1f; margin-bottom: 6px;
}
.pample-modal-header p {
    font-size: 13px; color: #6b6b6b;
}
.pample-modal-header strong { color: #2bbcc0; }

.pample-modal-guide {
    background: #f7f8fa;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 13px;
}
.pample-modal-guide h4 {
    font-size: 13px; font-weight: 700;
    color: #1d1d1f; margin-bottom: 8px;
}
.pample-modal-guide ul {
    list-style: none; padding: 0; margin: 0 0 10px;
}
.pample-modal-guide ul li {
    padding: 3px 0 3px 14px; position: relative;
    color: #4a4a4a;
}
.pample-modal-guide ul li::before {
    content: "•"; position: absolute; left: 2px;
    color: #2bbcc0; font-weight: 700;
}
.pample-modal-tip {
    font-size: 12px;
    color: #2bbcc0;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.pample-modal-btns {
    display: flex; flex-direction: column; gap: 8px;
}
.pmbtn {
    display: flex; align-items: center; justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #1d1d1f;
    cursor: pointer;
    transition: all 0.2s;
}
.pmbtn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.pmbtn-gmail { background: #fff; border-color: #ea4335; color: #ea4335; }
.pmbtn-gmail:hover { background: #ea4335; color: #fff; }
.pmbtn-naver { background: #fff; border-color: #03c75a; color: #03c75a; }
.pmbtn-naver:hover { background: #03c75a; color: #fff; }
.pmbtn-default { background: #fff; border-color: #2bbcc0; color: #2bbcc0; }
.pmbtn-default:hover { background: #2bbcc0; color: #fff; }
.pmbtn-copy { background: #f7f8fa; border-color: #e5e7eb; color: #4a4a4a; }
.pmbtn-copy:hover { background: #e5e7eb; }

/* 토스트 */
.pample-toast {
    position: fixed;
    bottom: 40px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(29,29,31,0.95);
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 14px; font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.pample-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.pample-toast-success { background: #2bbcc0; }
.pample-toast-error { background: #ef4444; }
