/* Toast 提示組件樣式 - 根據 Figma 設計規格 */

/* Toast 容器（固定在畫面中央） */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Toast 顯示狀態 */
.toast--show {
    display: flex;
    opacity: 1;
}

/* Toast 內容卡片 */
.toast__content {
    min-width: 142px;
    max-width: 200px;
    min-height: 99px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Toast 圖標容器 */
.toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Toast 圖標（愛心翻轉） */
.toast__icon i {
    font-size: 17px;
    color: #FFFFFF;
    transform: rotate(180deg) scaleY(-1);
}

/* Toast 文字 */
.toast__text {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    text-align: center;
    flex-shrink: 0;
}
