/**
 * Premium Floating Toast Notification Styles
 *
 * @package astra-child-rara
 */

.rara-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
    max-width: 380px;
    width: 100%;
}

.rara-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border-left: 4px solid #6D28D9;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.rara-toast--show {
    transform: translateX(0);
    opacity: 1;
}

.rara-toast--success {
    border-left-color: #10B981;
}

.rara-toast--error {
    border-left-color: #EF4444;
}

.rara-toast--info {
    border-left-color: #3B82F6;
}

.rara-toast-icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
}

.rara-toast-content {
    flex-grow: 1;
}

.rara-toast-title {
    font-weight: 700;
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 4px;
}

.rara-toast-message {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.4;
}

.rara-toast-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.rara-toast-close:hover {
    color: #4B5563;
}
