﻿/* Container của thông báo */
#cart-notification {
    position: fixed;
    top: 90px; /* Cách mép trên (tránh Header) */
    right: -400px; /* Mặc định ẩn bên phải màn hình */
    width: 360px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px 0 0 8px;
    border-left: 5px solid #198754; /* Viền xanh báo thành công */
    z-index: 9999;
    padding: 15px;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Hiệu ứng nảy nhẹ */
    visibility: hidden;
}

    /* Class kích hoạt hiển thị */
    #cart-notification.show {
        right: 0; /* Trượt vào màn hình */
        visibility: visible;
    }

/* Bố cục bên trong */
.notif-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notif-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.notif-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.notif-info p {
    margin: 2px 0;
    font-size: 13px;
    color: #666;
}

.notif-price {
    color: #0d6efd;
    font-weight: bold;
}

.notif-actions {
    margin-top: 15px;
    display: grid;
    gap: 10px;
}
