/* ================================
   QN FLEX SHOP - Toast Notifications
   ================================ */

.qn-shop-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.qn-shop-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #333;
    color: #fff;
    border-radius: var(--qn-shop-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transform: translateX(120%);
    opacity: 0;
    transition: all var(--qn-shop-transition-slow) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    max-width: 350px;
}

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

.qn-shop-toast-hide {
    transform: translateX(120%);
    opacity: 0;
}

.qn-shop-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.qn-shop-toast-success {
    background: linear-gradient(135deg, var(--qn-shop-success) 0%, #20c997 100%);
}

.qn-shop-toast-success .qn-shop-toast-icon {
    background: rgba(255, 255, 255, 0.2);
}

.qn-shop-toast-error {
    background: linear-gradient(135deg, var(--qn-shop-danger) 0%, #e74c3c 100%);
}

.qn-shop-toast-error .qn-shop-toast-icon {
    background: rgba(255, 255, 255, 0.2);
}

.qn-shop-toast-warning {
    background: linear-gradient(135deg, var(--qn-shop-warning) 0%, #ffb300 100%);
    color: var(--qn-shop-text);
}

.qn-shop-toast-info {
    background: linear-gradient(135deg, var(--qn-shop-info) 0%, #138496 100%);
}

.qn-shop-toast-message {
    font-size: 0.925rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .qn-shop-toast-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .qn-shop-toast {
        max-width: 100%;
    }
}
