/* header cart icon add start */
.voye-cart-count-badge {
    position: absolute;
    top: 34px;
    right: -28px;
    background: var(--btn-brand);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    padding: 0 5px;
    line-height: 1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.voye-cart-count-badge.show {
    opacity: 1;
    transform: scale(1);
    animation: badgePop 0.3s ease;
}
.voye-cart-count-badge.show {
    opacity: 1;
    transform: scale(1);
}
/* header cart icon add end */