.novinki-section span.section-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
}
.novinki-section .grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
	max-width: 1500px;
	margin-top: 40px;
}   
.novinki-section .grid-column {
    flex: 1;
    min-width: 300px;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}  
.novinki-section .grid-item {
    background-color: #2F2A28;
    height: 100%;
	overflow: hidden;
}  
.novinki-section .grid-large {
    height: 840px;
    border-radius: 50px;
}
.novinki-section .grid-small {
    height: 446px;
	border-radius: 50px;
}
.novinki-section .wrap-elem {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background-position 0.4s ease-out;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    background: #2F2A28;
    cursor: pointer;
}
.novinki-section .small-row {
    display: flex;
    gap: 20px;
}  
.novinki-section .small-row .grid-item {
    flex: 1;
    min-width: calc(50% - 10px);
	overflow: hidden;
}
.novinki-section .grid-large .wrap-elem span.element-title {
    width: 100%;
    max-width: 340px;
    height: 40px;
    margin: 30px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-left: 30px;
    margin-right: auto;
}
.novinki-section .grid-large .wrap-elem .element-img-wrapper {
    width: 740px;
    height: 740px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.novinki-section .grid-large .wrap-elem .element-img-wrapper .element-product-img {
    width: 100%;
    height: 100%;
    min-width: 740px;
}
.novinki-section .grid-small .wrap-elem span.element-title {
    width: 100%;
    max-width: 313px;
    height: 40px;
    margin: 30px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}
.novinki-section .grid-small .wrap-elem .element-img-wrapper {
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.novinki-section .grid-small .wrap-elem .element-img-wrapper .element-product-img {
    width: 100%;
    height: 100%;
    min-width: 360px;
}

@media (max-width: 768px) {
    .novinki-section .grid-container {
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
        padding: 0 10px;
		margin-top: 25px;
    }
    .novinki-section .grid-column {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
	.novinki-section span.section-title {
		font-size: 18px;
		margin-left: 10px;
	}
    .novinki-section .grid-column:nth-child(1) {
        order: 1;
    }
    .novinki-section .grid-column:nth-child(1) .grid-large {
        order: 1;
    }
    .novinki-section .grid-column:nth-child(1) .small-row {
        order: 2;
    }
    .novinki-section .grid-column:nth-child(2) {
        order: 3;
    }
    .novinki-section .grid-column:nth-child(2) .small-row {
        order: 1;
    }
    .novinki-section .grid-column:nth-child(2) .grid-large {
        order: 2;
    }
    .novinki-section .grid-large {
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 15px;
        order: 1 !important;
    }
    .novinki-section .small-row {
        display: flex;
        gap: 10px;
        width: 100%;
        order: 2 !important;
    }
    .novinki-section .grid-small {
        flex: 1;
        min-width: calc(50% - 5px);
        height: auto;
        min-height: 150px;
        border-radius: 15px;
    }
    .novinki-section .wrap-elem {
        flex-direction: column;
        padding: 15px;
        box-sizing: border-box;
    }
    .novinki-section .element-title {
        font-size: 14px !important;
        margin: 10px 0 !important;
        max-width: 100% !important;
		line-height: 115% !important;
    }
	.novinki-section .grid-item.grid-small .element-title a.product-item-image-wrapper {
		width: 104%;
		display: flex;
	}
    .novinki-section .element-img-wrapper {
        width: 100% !important;
        height: auto !important;
    }
    .novinki-section .grid-large .element-img-wrapper {
        min-height: 250px;
    }
    .novinki-section .grid-small .element-img-wrapper {
        min-height: 120px;
    }
    .novinki-section .element-product-img {
        width: 100% !important;
        height: auto !important;
        min-width: auto !important;
        max-height: none !important;
        object-fit: contain;
    }
	
}