/* Custom Toast Notification */
.rcg-toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    display: none;
    pointer-events: none;
}

.rcg-toast {
    background: #092332;
    color: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 380px;
    max-width: 450px;
    border: 1px solid #C6A344;
    animation: rcg-toast-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
    direction: rtl;
    line-height: 1.5;
    font-family: 'Almarai', sans-serif;
}

.rcg-toast-icon {
    background: #C6A344;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #092332;
    font-size: 20px;
    flex-shrink: 0;
}

@keyframes rcg-toast-in {
    from { 
        transform: translateY(-80px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes rcg-toast-out {
    from { 
        transform: translateY(0); 
        opacity: 1; 
    }
    to { 
        transform: translateY(-80px); 
        opacity: 0; 
    }
}

/* التجاوب مع الجوال */
@media (max-width: 480px) {
    .rcg-toast-container {
        top: 15px;
        width: 100%;
        left: 0;
        transform: none;
        padding: 0 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }
    .rcg-toast {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 14px;
        gap: 12px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    .rcg-toast-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .rcg-toast-icon svg {
        width: 16px;
        height: 16px;
    }
}
