#shop {
    padding: 119px 0 36px;
    background-color: var(--secondary-initial);
}

#shop .section-description {
    max-width: 540px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

#shop .shop-block {
    max-width: fit-content;
    width: 100%;
    padding: 0 32px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

#shop .shop-block .shop-item.middle {
    max-width: 522px;
    min-width: 522px;
    width: 100%;
    position: relative;
    z-index: 2;
}

#shop .shop-block .shop-item.left,
#shop .shop-block .shop-item.right {
    max-width: 385px;
    min-width: 385px;
    width: 100%;
    position: relative;
    z-index: 1;
}

#shop .shop-block .shop-item.left {
    margin-right: -46px;
}

#shop .shop-block .shop-item.right {
    margin-left: -46px;
}

#shop .shop-block .shop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#shop .shop-button {
    margin: 40px auto 0;
    background: var(--button);
    color: var(--white);
}

#shop .shop-button:hover {
    background: var(--primary-hover);
}

@media (max-width: 1300px) {
    #shop .shop-block {
        flex-direction: column;
    }

    #shop .shop-block .shop-item.left {
        margin-right: 0;
        margin-bottom: -25px;
    }

    #shop .shop-block .shop-item.right {
        margin-left: 0;
        margin-top: -25px;
    }
}

@media (max-width: 768px) {
    #shop .section-header {
        max-width: 700px;
    }
}

@media (max-width: 650px) {
    #shop .section-header {
        max-width: 300px;
    }

    #shop .section-description {
        max-width: 100%;
        padding: 0 16px;
    }

    #shop .shop-block .shop-item.middle {
        max-width: 342px;
        min-width: 342px;
    }

    #shop .shop-block .shop-item.left,
    #shop .shop-block .shop-item.right {
        max-width: 252px;
        min-width: 252px;
    }

    #shop .shop-block .shop-item.left {
        margin-bottom: -20px;
    }

    #shop .shop-block .shop-item.right {
        margin-top: -20px;
    }

    #shop .shop-block {
        padding: 0 16px;
    }

    #shop .shop-button {
        width: calc(100% - 64px);
    }
}