
#floating-cart {
    position: fixed;
    top: 50%;
    right: 0;
    background: #F2F2F2;
    border: 1px 0 1px 1px solid #F2F2F2;

    border-radius: 20px 0 0 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

#floating-cart .icon-car__counting {
    display: flex;
    position: relative;
}

#floating-cart:hover {
     background: #fee800;
}

#floating-cart:hover svg path {
    transition: 0.3s;
}

#floating-cart:hover svg path {
    fill: #2f2e2d;
}

#floating-cart svg {
    width: 30px;
    padding-top: 10px;
}

#floating-cart .cart-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;

    padding: 12px 20px;
}

#floating-cart .cart-count {
    background: #fff;
    color: #1A1A1A80;
    padding: 4px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    right: -13px;
    top: -4px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
        min-width: 10px;
    min-height: 10px;
}
