/* Toast Notification Styles */
.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.toast-overlay.show {
    opacity: 1;
    visibility: visible;
}
.custom-toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.9);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-toast-container.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}
.custom-toast {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 92, 56, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    min-width: 360px;
    max-width: 450px;
    position: relative;
}
.toast-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.toast-emoji {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.toast-emoji img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.toast-title-box {
    flex: 1;
}
.toast-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toast-title .num {
    color: #ff5c38;
    font-size: 28px;
}
.toast-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.toast-content {
    margin: 0;
}
.toast-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}
.toast-stats .count {
    color: #ff5c38;
    font-weight: 600;
}
.toast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff5c38;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    width: 100%;
}
.toast-btn:hover {
    background: #ff7657;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 92, 56, 0.3);
}
.toast-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #999;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}
.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}
