.shop-page-main {
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.shop-page-top-menu {
    display: none;
}
.shop-page-top-menu-burger-list {
    display: none;
}
.shop-page-products-list {
    width: 80%;
    min-height: 420px;
    border: 1px solid var(--border-color-first);
    border-radius: 0px 8px 8px 0px;
    border-left: 0px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    z-index: 1;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
    -ms-border-radius: 0px 8px 8px 0px;
    -o-border-radius: 0px 8px 8px 0px;
    box-shadow: var(--box-shadow-first);
    margin-bottom: 50px;
}
.shop-page-empty-list-text {
    text-align: center;
    width: 100%;
}
.shop-page-right-menu {
    width: 20%;
    height: 530px;
    overflow: hidden;
    z-index: 0;
}
.shop-page-right-menu-burger {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color-first);
    border-radius: 50%;
    display: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.shop-page-right-menu-burger-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color-first);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: var(--box-shadow-first);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-page-right-menu-burger-btn span {
    width: 20px;
    height: 1px;
    background-color: black;
    position: relative;
}
.shop-page-right-menu-burger-btn span::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: black;
    bottom: 5px;
    left: 2px;
}
.shop-page-right-menu-burger-btn span::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: black;
    top: 5px;
    left: 2px;
}
.shop-page-right-menu-user-cart {
    width: 60px;
    height: 140px;
    border: 1px solid var(--border-color-first);
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    margin-top: 20px;
    margin-left: -80px;
    animation: showRightMenuUserCartBtns .5s ease-in-out forwards;
    -webkit-animation: showRightMenuUserCartBtns .5s ease-in-out forwards;
    animation-delay: 1s;
}
.shop-page-right-menu-user-icon {
    width: 20px;
}
.shop-page-right-menu-cart-icon {
    width: 20px;
}
.shop-page-right-menu-user-btn, .shop-page-right-menu-cart-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color-first);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 5px auto;
    cursor: pointer;
    box-shadow: var(--box-shadow-first);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-page-right-menu-user-btn {
    margin-top: 28px;
}
.shop-page-right-menu-cart-btn {
    position: relative;
}
.shop-page-right-menu-cart-btn span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid var(--border-color-first);
    background: rgb(0,255,21);
    background: radial-gradient(circle, rgba(0,255,21,1) 0%, rgba(0,212,63,1) 100%);
}

.shop-page-right-menu-chapters {
    width: 200px;
    min-height: 50px;
    margin-top: 20px;
    border-radius: 0px 28px 28px 0px;
    -webkit-border-radius: 0px 28px 28px 0px;
    -moz-border-radius: 0px 28px 28px 0px;
    -ms-border-radius: 0px 28px 28px 0px;
    -o-border-radius: 0px 28px 28px 0px;
    padding: 5px;
    padding-left: 0px;
    padding-top: 0px;
    border: 1px solid var(--border-color-first);
    border-left: 0px;
    margin-left: -220px;
    animation: showRightMenuChapters .3s ease-in-out forwards;
    -webkit-animation: showRightMenuChapters .3s ease-in-out forwards;
    animation-delay: 1.6s;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}
.shop-page-right-menu-chapters li {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
    border: 1px solid var(--border-color-first);
    border-left: 0px;
    border-radius: 0px 25px 25px 0px;
    -webkit-border-radius: 0px 25px 25px 0px;
    -moz-border-radius: 0px 25px 25px 0px;
    -ms-border-radius: 0px 25px 25px 0px;
    -o-border-radius: 0px 25px 25px 0px;
    margin-top: 5px;
    box-shadow: var(--box-shadow-first);
    cursor: pointer;
    text-transform: uppercase;
}
.shop-page-right-menu-burger-list {
    position: absolute;
    width: 250px;
    right: -300px;
    top: 100px;
    z-index: 1;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    background-color: white;
    border: 1px solid var(--border-color-first);
    border-right: 0px;
    border-radius: 8px 0px 0px 8px;
    -webkit-border-radius: 8px 0px 0px 8px;
    -moz-border-radius: 8px 0px 0px 8px;
    -ms-border-radius: 8px 0px 0px 8px;
    -o-border-radius: 8px 0px 0px 8px;
    box-shadow: var(--box-shadow-first);
}
.shop-page-right-menu-burger-list li {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
    cursor: pointer;
    text-transform: uppercase;
}
.shop-page-right-menu-burger-list.active {
    right: 0px;
}
@keyframes showRightMenuChapters {
    from {
        margin-left: -220px;
    }
    to {
        margin-left: 0px;
    }
}
@keyframes showRightMenuUserCartBtns {
    from {
        margin-left: -80px;
    }
    to {
        margin-left: 20px
    }
}
/* START SHOP PAGE PRODUCT ITEM */
.shop-page-product-item {
    max-width: 370px;
    width: 24%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.shop-page-product-item-main {
    padding: 5px;
    min-height: 320px;
    border: 1px solid var(--border-color-first);
    border-radius: 8px 8px 2px 2px;
    -webkit-border-radius: 8px 8px 2px 2px;
    -moz-border-radius: 8px 8px 2px 2px;
    -ms-border-radius: 8px 8px 2px 2px;
    -o-border-radius: 8px 8px 2px 2px;
}
.shop-page-product-item-main img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.shop-page-product-item button img {
    height: 25px;
}
.shop-page-product-item button {
    width: 100%;
    height: 40px;
    margin-top: 5px;
    border: 1px solid var(--border-color-first);
    border-radius: 2px 2px 8px 8px;
    -webkit-border-radius: 2px 2px 8px 8px;
    -moz-border-radius: 2px 2px 8px 8px;
    -ms-border-radius: 2px 2px 8px 8px;
    -o-border-radius: 2px 2px 8px 8px;
    background-color: white;
    cursor: pointer;
}
.shop-page-product-item h2 {
    width: 100%;
    min-height: 100px;
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
}
.shop-page-product-item span {
    display: block;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-page-product-item span bdi {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0);
}
/* END SHOP PAGE PRDUCT ITEM */
/* START PRODUCT PAGE */
.single-product-page-main {
    max-width: 1920px;
    margin: 0px auto;
    min-height: 700px;
    position: relative;
}
.single-product-page-images {
    width: 40%;
    position: absolute;
    top: 0px;
    left: 100px;
    z-index: 1;
}
.single-product-page-base-image {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color-first);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: white;
    box-shadow: var(--box-shadow-first);
}
.single-product-page-base-image img {
    width: 100%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.single-product-page-info {
    position: absolute;
    width: 52%;
    top: 50px;
    right: 100px;
    display: flex;
    flex-direction: column;
}
.single-product-page-info-add-to-cart-section {
    width: calc(100% - 15%);
    margin-left: 15%;
    min-height: 80px;
}
.single-product-page-info-add-to-cart-section form {
    display: flex;
    align-items: center;
    justify-content: end;
}
.single-product-page-counter {
    width: 60%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-page-counter input[type="number"] {
    display: block;
    height: 80px;
    width: 100px;
    border: 1px solid var(--border-color-first);
    outline: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-align: center;
    font-size: 50px;
}
.single-product-page-counter input[type="number"]::-webkit-outer-spin-button,
.single-product-page-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.single-product-page-counter input[type="number"]::-webkit-outer-spin-button,
.single-product-page-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.single-product-page-counter button {
    width: 80px;
    height: 100%;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}
.single-product-page-add-to-cart-btn {
    width: 40%;
    height: 80px;
    border: 1px solid var(--border-color-first);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: white;
    cursor: pointer;
}
.single-product-page-add-to-cart-btn img {
    height: 30px;
}
.single-product-page-info-title-content {
    width: 100%;
    min-height: 370px;
    border: 1px solid var(--border-color-first);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: var(--box-shadow-first);
    background-color: rgb(255, 255, 255);
    margin-top: 50px;
    position: relative;
    background-image: url('../images/background-image-fon-1.webp');
    background-position: start;
}
.single-product-page-info-title-content h1 {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    padding-left: 25px;
}
.single-product-page-product-content {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0px 125px;
    padding-top: 50px;
}
.single-product-page-info-title-content .price {
    width: 100%;
    text-align: end;
    height: 50px;
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 10px;
    font-size: 24px;
}
/* START PRODUCT PAGE RELEATED PRODUCTS */
.single-product-page-releated-products-section {
    width: 100%;
    padding: 0px 20px;
    margin-top: 5%;
}
.single-product-page-releated-products-section h2 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
    color: red;
}
.single-product-page-releated-products-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}
.single-product-page-releated-products-list li {
    width: 300px;
    min-width: 100px;
    border: 1px solid var(--border-color-first);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 5px;
    box-shadow: var(--box-shadow-first);
}
.single-product-page-releated-products-list li img {
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -ms-border-radius: 4px 4px 0px 0px;
    -o-border-radius: 4px 4px 0px 0px;
    max-height: 200px;
    object-fit: cover;
}
.single-product-page-releated-products-list li h3 {
    text-align: center;
    width: 100%;
    padding: 10px 0px;
    height: 100px;
}
.single-product-page-releated-products-list li p {
    text-align: end;
    font-size: 20px;
}
/* END PRODUCT PAGE RELEATED PRODUCTS */
/* END PRODUCT PAGE */
@media only screen and (width < 1200px) {
    .shop-page-top-menu {
        display: none;
    }
    .shop-page-top-menu-burger-list {
        display: none;
    }
    .shop-page-products-list {
        width: calc(100% - 124px);
    }
    .shop-page-right-menu {
        width: 124px;
    }
    .shop-page-right-menu-burger {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -80px;
        margin-top: 20px;
        animation: showRightMenuBurgerBtn .3s ease-in-out forwards;
        -webkit-animation: showRightMenuBurgerBtn .3s ease-in-out forwards;
        animation-delay: 1s;
    }
    .shop-page-right-menu-chapters {
        -webkit-animation: none;
        animation: none;
    }
    @keyframes showRightMenuBurgerBtn {
        from {
            margin-left: -80px;
        }
        to {
            margin-left: 20px;
        }
    }
/* START PRODUCT PAGE */
.single-product-page-images {
    left: 20px;
    width: 50%;
}
.single-product-page-info {
    right: 20px;
    width: 50%;
    top: 20px;
}
.single-product-page-info-add-to-cart-section {
    width: calc(100% - 10%);
    margin-left: 10%;
}
.single-product-page-counter {
    height: 60px;
}
.single-product-page-counter input[type="number"] {
    height: 60px;
    width: 100px;
    font-size: 40px;
}
.single-product-page-counter button {
    width: 60px;
}
.single-product-page-add-to-cart-btn {
    width: 30%;
    height: 60px;
}
.single-product-page-info-title-content {
    margin-top: 20px;
}
.single-product-page-info-title-content h1 {
    margin-left: 40px;
    width: calc(100% - 40px);
    text-align: center;
    padding: 0px 10px;
}
.single-product-page-product-content {
    width: calc(100% - 40px);
    margin-left: 40px;
    padding: 0px 10px;
    padding-top: 50px;
}
/* EMD PRODUCT PAGE */
}
@media only screen and (width < 1024px) {
    .shop-page-product-item {
        min-width: 32%;
    }
}
@media only screen and (width < 850px) {
    .shop-page-product-item {
        min-width: 48%;
    }
    /* START PRODUCT PAGE */
    .single-product-page-main {
        position: static;
        padding-bottom: 100px;
    }
    .single-product-page-images {
        width: calc(100% - 10px);
        max-width: 600px;
        position: static;
    }
    .single-product-page-base-image {
        border-left: 0px;
        border-radius: 0px 8px 8px 0px;
        -webkit-border-radius: 0px 8px 8px 0px;
        -moz-border-radius: 0px 8px 8px 0px;
        -ms-border-radius: 0px 8px 8px 0px;
        -o-border-radius: 0px 8px 8px 0px;
        padding: 5px;
        padding-left: 0px;
    }
    .single-product-page-base-image img {
        border-radius: 0px 6px 6px 0px;
        -webkit-border-radius: 0px 6px 6px 0px;
        -moz-border-radius: 0px 6px 6px 0px;
        -ms-border-radius: 0px 6px 6px 0px;
        -o-border-radius: 0px 6px 6px 0px;
        max-height: calc(450px - 5px);
    } 
    .single-product-page-info {
        flex-direction: column-reverse;
        align-items: end;
        width: 100%;
        position: static;
    }
    .single-product-page-info-add-to-cart-section {
        width: 100%;
    }
    .single-product-page-info-add-to-cart-section form {
        justify-content: space-evenly;
        width: 100%;
        margin-top: 10px;
        margin-left: 0px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .single-product-page-info h1 {
        margin-left: 0px;
        width: 100%;
    }
    .single-product-page-product-content {
        margin-left: 0px;
        width: 100%;
        padding: 30px 20px;
    }
    .single-product-page-info-title-content {
        border-right: 0px;
        border-radius: 8px 0px 0px 8px;
        -webkit-border-radius: 8px 0px 0px 8px;
        -moz-border-radius: 8px 0px 0px 8px;
        -ms-border-radius: 8px 0px 0px 8px;
        -o-border-radius: 8px 0px 0px 8px;
        max-width: 600px;
        margin-right: 0px;
        margin-left: 10px;
        width: calc(100% - 10px);
    }
    .single-product-page-counter {
        min-width: 200px;
    }
    .single-product-page-add-to-cart-btn {
        min-width: 200px;
    }
    /* END PRODUCT PAGE */
}
@media only screen and (width < 630px) {
    .shop-page-top-menu {
        position: absolute;
        display: block;
        width: calc(100% - 0px);
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 10px;
        overflow: hidden;
    }
.shop-page-top-menu-burger {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color-first);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    animation: showTopMenuBurgerBtn .3s ease-in-out forwards;
    animation-delay: 1s;
}

.shop-page-top-menu-burger-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color-first);
    border-radius: 50%;
    box-shadow: var(--box-shadow-first);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shop-page-top-menu-burger-btn span,
.shop-page-top-menu-burger-btn span::before,
.shop-page-top-menu-burger-btn span::after {
    display: block;
    background-color: black;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    content: "";
}

.shop-page-top-menu-burger-btn span {
    position: relative;
}

.shop-page-top-menu-burger-btn span::before {
    position: absolute;
    width: 16px;
    left: 2px;
    top: -6px;       /* больше расстояние для iOS */
}

.shop-page-top-menu-burger-btn span::after {
    position: absolute;
    width: 16px;
    left: 2px;
    bottom: -6px;
}
    .shop-page-top-menu-right-section-user-cart {
        width: 106px;
        height: 51px;
        border: 1px solid var(--border-color-first);
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px;
    }
    .shop-page-top-menu-right-section-user-btn, .shop-page-top-menu-right-section-cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border-color-first);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        box-shadow: var(--box-shadow-first);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .shop-page-top-menu-right-section-user-icon, .shop-page-top-menu-right-section-cart-icon {
        width: 20px;
    }
    .shop-page-top-menu-right-section-cart-btn {
        position: relative;
    }
    #shop-page-top-menu-section-cart-count {
        display: block;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 255, 21, 1) 0%, rgba(0, 212, 63, 1) 100%);
        position: absolute;
        color: black;
        bottom: 20px;
        left: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    .shop-page-top-menu-burger-list {
        display: block;
        position: absolute;
        top: 60px;
        left: -100%;
        max-width: 200px;
        width: 60%;
        min-width: 150px;
        background-color: rgb(255, 255, 255);
        z-index: 2;
        border-radius: 0px 8px 8px 0px;
        -webkit-border-radius: 0px 8px 8px 0px;
        -moz-border-radius: 0px 8px 8px 0px;
        -ms-border-radius: 0px 8px 8px 0px;
        -o-border-radius: 0px 8px 8px 0px;
        border: 1px solid var(--border-color-first);
        border-left: 0px;
        box-shadow: var(--box-shadow-first);
        transition: all ease-in-out .3s;
        -webkit-transition: all ease-in-out .3s;
        -moz-transition: all ease-in-out .3s;
        -ms-transition: all ease-in-out .3s;
        -o-transition: all ease-in-out .3s;
    }
    .shop-page-top-menu-burger-list.active {
        left: 0px;
    }
    .shop-page-top-menu-burger-list li {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: start;
        padding-left: 20px;
        cursor: pointer;
        text-transform: uppercase;
    }
    .shop-page-products-list {
        width: calc(100% - 10px);
        margin-top: 60px;
    } 
    .shop-page-right-menu {
        display: none;
    }
    @keyframes showTopMenuBurgerBtn {
        from {
            margin-top: 120px;
        }
        to {
            margin-top: 0px;
        }
    }
}
@media only screen and (width < 500px) {
    .shop-page-product-item {
        min-width: 100%;
    }
    .shop-page-product-item-main img {
        height: 320px;
    }
    /* START PRODUCT PAGE RELATED PRODUCT */
    .single-product-page-releated-products-section h2 {
        font-size: 35px;
    }
    /* END PRODUCT PAGE RELATED PRODUCT */
}