.dodo-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(230, 91, 32, 0.15);
    z-index: 10;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    transform: translateX(-120%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    border: 1px solid rgba(230, 91, 32, 0.1);
}

.dodo-notification.show {
    transform: translateX(0);
}

.dodo-notification-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(230, 91, 32, 0.1);
    background: #f8f8f8;
    position: relative;
}

.dodo-notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dodo-notification-image:hover img {
    transform: scale(1.05);
}

.dodo-notification-content {
    flex-grow: 1;
    padding-top: 2px;
}

.dodo-notification-name {
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
    line-height: 1.3;
    font-size: 15px;
}

.dodo-notification-product {
    color: #666666;
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.dodo-notification-product a {
    color: #e65b20;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dodo-notification-product a:hover {
    color: #d14813;
}

.dodo-notification-time {
    color: #999999;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dodo-notification-time:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #e65b20;
    border-radius: 50%;
    opacity: 0.5;
}

/* Animation khi hiện thông báo */
@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.dodo-notification.show {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect */
.dodo-notification:hover {
    box-shadow: 0 6px 24px rgba(230, 91, 32, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dodo-notification {
        max-width: calc(100% - 120px);
        bottom: 15px;
        left: 20px;
        padding: 12px;
    }

    .dodo-notification-image {
        width: 50px;
        height: 50px;
    }

    .dodo-notification-name {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .dodo-notification-product {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .dodo-notification-time {
        font-size: 11px;
    }
} 