/* ========================================
   Toast 컴포넌트
======================================== */

.c-toast {
    position: fixed;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    width: 90vw;
    justify-content: center;
}

.c-toast.c-toast-visible {
    opacity: 1;
}

.c-toast-content {
    font-family: 'Pretendard', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
    word-break: keep-all;
    padding: 10px 16px;
    background: rgba(72, 72, 72, 0.9);
    border-radius: 10px;
}

/* Mobile 위치 (화면 기준) */
.c-toast-mobile.c-toast-top-left {
    top: 20px;
    left: 20px;
}

.c-toast-mobile.c-toast-top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.c-toast-mobile.c-toast-top-right {
    top: 20px;
    right: 20px;
}

.c-toast-mobile.c-toast-bottom-left {
    bottom: 20px;
    left: 20px;
}

.c-toast-mobile.c-toast-bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.c-toast-mobile.c-toast-bottom-right {
    bottom: 20px;
    right: 20px;
}

/* PC 위치 (base 요소 기준) */
.c-toast-pc {
    position: absolute;
}

.c-toast-pc.c-toast-top-left {
    top: -10px;
    left: 0;
}

.c-toast-pc.c-toast-top-center {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.c-toast-pc.c-toast-top-right {
    top: -10px;
    right: 0;
}

.c-toast-pc.c-toast-bottom-left {
    bottom: -10px;
    left: 0;
}

.c-toast-pc.c-toast-bottom-center {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.c-toast-pc.c-toast-bottom-right {
    bottom: -10px;
    right: 0;
}