.catalogue__product__wrapper {
    position: relative;
    display: block;
    max-width: 540px;
}


.catalogue__product {
    position: relative;
    display: block;
}
.catalogue__product .image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100%;
    overflow: hidden;
}
.catalogue__product .image img {
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(0px);
    transition: filter 0.3s ease-in-out;
}
.catalogue__product .image.blank img {
    filter: unset;
}


.catalogue__product .image img.loaded {
    filter: blur(0px);
}
.catalogue__product .info {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
    margin-top: 16px;
}
.catalogue__product .info > * {
    margin-top: 12px;
}
.catalogue__product .info ul.variants {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    visibility: visible;
}


.catalogue__product .info ul.variants li {
    position: relative;
    display: block;
    padding: 8px 16px;
    border: 2px solid whitesmoke;
    margin: 8px 4px 0px 4px;
}
.catalogue__product .info .brand {
    font-size: 14px;
    color: var(--clr-2);
}
.catalogue__product .info .name {
    font-weight: 500;
    height: 50px;
    text-align: center;
    margin-right: 0;
    max-width: calc(100% - 8px);
    overflow: hidden;
    font-size: var(--h5);
}
.catalogue__product .info .human {
    font-size: 14px;
    text-align: center;
    color: grey;
    height: 40px;
    overflow: hidden;
}
.catalogue__product .info .price {
    font-weight: 500;

}


.catalogue__product .buttons {
    position: relative;
    flex-grow: 1;
    margin-top: 16px;
    display: grid;
    width: 95%;
    grid-template-columns: 1fr 48px;
    grid-gap: 8px;
    height: 48px;
    visibility: visible;
    opacity: 1;
}


.catalogue__product .buttons .button {
    display: inline-block;
    padding: 2px 6px;
    border: 2px solid var(--clr-1);
    background-color: transparent;
    color: black;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.catalogue__product .buttons button {
    border: none;
    border-radius: 4px;
    background-color: var(--clr-2);
    color: white;
    cursor: pointer;
}
.catalogue__product .buttons span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    border-radius: 4px;
}
.catalogue__product .buttons span img {
    width: 20px;
    height: 20px;
}


.discount_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.discount_wrapper span:first-child {
    margin-right: 8px;
}
.discount_price {
    color: var(--clr-2);
    text-decoration: line-through;
    font-weight: 500;
}
@media only screen and (max-width: 740px) {
    .catalogue__product .buttons span {
        max-width: 40px; 
    }
}