.link-cart {
    position: fixed;
    right: 20px;
    bottom: 185px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ff8a00;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
}
.link-cart img{
    width: 30px;
    height: 30px;
}
.link-cart span {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.succes-cart {
    display: none;		
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1000;
}
.succes-cart.active {
    display: flex;
}
.succes-cart__content {
    width: fit-content;
    position: relative;
    background-color: white;
    padding:30px 20px 20px;
    border-radius: 10px;
    text-align: center;
    display: grid;
    gap: 2px;
}
.succes-cart__text {
    font-size: 18px;
    margin-bottom: 10px;

}
.succes-cart__btn-close {
    border: none;
    outline: none;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50%;
    font-weight: 600;
    transition: transform .3s ease-in;
}
.succes-cart__btn-close:hover {
    transform: rotate(180deg);
}
.succes-cart__link {
    color: inherit;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}