@media not all and (min-width: 1024px) {
    .btn-catalog {
        font-size: 15px !important;
        width: 110px !important;
    }
}

.btn-catalog {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 40px;
    right: 40px;
    font-family: League Spartan;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.8px;
    padding: 10px;
    width: 136px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    background: var(--red);
    color: var(--white);
    transition: background 0.3s ease-out
}

.btn-catalog:hover {
    background: var(--black);
}