@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
}
/* ══════════════════════════════════════
   TOAST NOTIFICATION SYSTEM
   Add this to your shared CSS file or
   paste into each page's <style> block
══════════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 320px;
    width: calc(100% - 40px);
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    pointer-events: all;
    position: relative;
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
}

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

.toast.hide {
    transform: translateX(calc(100% + 30px));
    opacity: 0;
}

.toast.success {
    border-left-color: #38a169;
}

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

.toast.warning {
    border-left-color: #dd6b20;
}

.toast.info {
    border-left-color: #3182ce;
}

.toast-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon-wrap {
    background: #f0fff4;
}

.toast.error .toast-icon-wrap {
    background: #fff5f5;
}

.toast.warning .toast-icon-wrap {
    background: #fffaf0;
}

.toast.info .toast-icon-wrap {
    background: #ebf8ff;
}

.toast-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.toast.success .toast-icon-wrap svg {
    stroke: #38a169;
}

.toast.error .toast-icon-wrap svg {
    stroke: #e53e3e;
}

.toast.warning .toast-icon-wrap svg {
    stroke: #dd6b20;
}

.toast.info .toast-icon-wrap svg {
    stroke: #3182ce;
}

.toast-body {
    flex: 1;
    min-width: 0;
    padding-top: 1px;
}

.toast-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 2px;
    line-height: 1.3;
}

.toast-msg {
    font-size: 12px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #a0aec0;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-top: 1px;
    transition: background 0.15s, color 0.15s;
}

.toast-close:hover {
    background: #edf2f7;
    color: #4a5568;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    animation: toastShrink linear forwards;
}

.toast.success .toast-progress {
    background: #38a169;
}

.toast.error .toast-progress {
    background: #e53e3e;
}

.toast.warning .toast-progress {
    background: #dd6b20;
}

.toast.info .toast-progress {
    background: #3182ce;
}

@keyframes toastShrink {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: 100%;
        width: auto;
    }
}