.fvs-footer-wrapper {
    width: 100%;
    background: #111827;
    color: white;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.fvs-item {
    background: rgba(255,255,255,0.05);
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fvs-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.fvs-total {
    background: linear-gradient(135deg,#2563eb,#7c3aed);
    font-weight: bold;
}

@media(max-width:768px){

    .fvs-footer-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .fvs-item {
        width: 90%;
        text-align: center;
    }
}
