/* =========================================
   NOTIFICATION & MODAL SYSTEM (FLIPKART STYLE)
   ========================================= */
.notif-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    color: #000;
    padding: 14px 24px;
    border-radius: 4px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 13px;
    color: #dbdbdb;
}

.toast-success {
    border-left: 4px solid #26a541;
}

.toast-error {
    border-left: 4px solid #ff4d4d;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #212121;
}

.modal-msg {
    color: #878787;
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-btn {
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #212121;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
}

.modal-btn-confirm {
    background: #2874f0;
    color: #000;
    border-color: #2874f0;
}