.fuxion-premium-cards{
    display:flex;
    gap:10px;
    margin:18px 0 24px;
}
.fuxion-variation-card{
    position:relative;
    overflow:hidden;
    flex:1;
    background:#fff;
    border:2px solid #E3EDF5;
    border-radius:16px;
    padding:10px 12px;
    cursor:pointer;
    transition:all .25s ease;
}
.fuxion-variation-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,114,188,.12);
    border-color:#009FDB;
}
.fuxion-variation-card.active{
    border-color:#009FDB;
    background:#F4FBFF;
    box-shadow:0 10px 24px rgba(0,114,188,.15);
}
.f7c-card-name{
    font-size:14px;
    font-weight:700;
    color:#0D1B2A;
    margin-bottom:6px;
}
.f7c-card-prices{
    display:flex;
    flex-direction:column;
    gap:0;
}
.f7c-regular{
    color:#98A6B5;
    text-decoration:line-through;
    font-size:15px;
    font-weight:500;
}
.f7c-sale{
    color:#009FDB;
    font-size:16px;
    line-height:1;
    font-weight:700;
}
.f7c-badge{
    display:none !important;
}
.fuxion-variation-card::after{
    content:"";
    position:absolute;
    top:12px;
    right:12px;
    width:14px;
    height:14px;
    border-radius:50%;
    border:2px solid #C9D6E2;
    background:#fff;
    transition:all .25s ease;
}
.fuxion-variation-card.active::after{
    background:#22C55E;
    border-color:#22C55E;
    box-shadow:0 0 0 3px rgba(34,197,94,.15);
}