/* Utility Styles for TVA - The Vintage Artefacts E-Commerce */

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transition: right 0.3s ease;
    max-width: 350px;
    min-width: 280px;
    font-size: 15px;
    font-weight: 500;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification i {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-error {
    border-left: 4px solid #ef4444;
    color: #dc2626;
}

.toast-error i {
    color: #ef4444;
}

.toast-success {
    border-left: 4px solid #10b981;
    color: #059669;
}

.toast-success i {
    color: #10b981;
}

.toast-info {
    border-left: 4px solid #3b82f6;
    color: #1d4ed8;
}

.toast-info i {
    color: #3b82f6;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
}

.loading-state i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error State */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-notification {
        right: -100%;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .toast-notification.show {
        right: 10px;
    }
}
