
#nvf-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #333;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    z-index: 9999;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease-in-out;
}
.nvf-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.nvf-content {
    display: flex;
    flex-direction: column;
}
.nvf-content .nvf-top {
    font-size: 13px;
    color: #6b7280;
}
.nvf-content .nvf-top strong {
    color: #111827;
}
.nvf-content .nvf-product {
    font-weight: bold;
    color: #111827;
}
.nvf-content .nvf-link {
    margin-top: 4px;
    font-size: 12px;
    color: #2563eb;
    text-decoration: none;
}
@media(max-width: 480px) {
    #nvf-box {
        bottom: 10px;
        left: 10px;
        max-width: 90%;
    }
}