.header_menu .container{
    width:100%;
}

.productItemHolder{
	margin: 0px auto;
	width:100%;
	min-height: calc(100dvh - 420px);
	--columns: 4;
	padding: 0;
	gap: 1.5rem;
	grid-template-rows: min-content;
}

.titleItem{
    grid-column: span var(--columns);
}
.titleItem h2{
	font-size:50px;
}

body .productItem{
    padding: 0 !important;
}
.productItem .imageHolder{
	width:100%;
	aspect-ratio: 1/1;
	border-radius: 0;
	padding: 10px 15px;
	position:Relative;
}
.productItem .imageHolder > img{
    min-width: 100%;
    min-height: 100%;
    height:auto;
    width:100%;
    position:absolute;
    z-index:0;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all .2s ease-in-out;
}
.productItem:hover .imageHolder > img{
	min-height: 101%;
	min-width: 101%;
	filter:grayscale(1);
}

.productItem .productContent{
	padding: 8px 0;
}
.productItem .productUtils{
	display:flex;
	justify-content: space-between;
	z-index: 2;
	position: relative;
}
.productItem .productUtils .score{
    display: inline-flex;
    padding: 4px 10px 4px 6px;
    align-items: center;
    gap: 5px;
    color: var(--themeText);
    background-color: white;
    border-radius: 5px;
    font-weight: bold;
    width: auto;
    height: 26px;
    justify-content: center;
}
.productItem .productUtils .score svg{
	height:14px;
	fill: var(--themeGreenDark);
}
.productItem .productUtils .like{
    height: 30px;
    padding: 3px 5px;
    cursor:pointer;
}
.productItem .productUtils .like svg{
	height:100%;
	width: auto;
	float:right;
}
.productItem .productUtils .like.liked svg path:first-of-type {
    fill: #fff;
    fill-opacity: 0.8;
}

.productItem .productTitlebar{
	display:flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	min-height: 4em;
}
.productItem .productTitlebar div{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
}
.productItem .productTitlebar .productTitle{
    margin: 0;
    font-size: 27px;
    line-height: 1.2em;
    font-weight: 500;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productItem:not(.categorieItem) .productTitlebar .productTitle{
    font-family: "Bebas Neue", Sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 0px;
}
.categorieItem .productTitlebar .productTitle{
	font-size:33px;
	text-align:center;
}
.categorieItem .productTitlebar{
	padding:5px 0;
}
a:hover > .categorieItem .productTitlebar h3{
    color:var(--themeTint);
}

.productItem .productTitlebar .productPrice{
    padding-top: 3px;
}

.productItem .productDescription{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0px 0 10px;
    line-height: 22px;
    height: calc(4 * 22px);
}

.productItem .productBottomBar{
    padding: 0;
    color: var(--themeTextGrey);
    font-weight: 400;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.productItem .productBottomBar .button{
	width:100%;
}



/* -- categorie overview -- */
.overviewRow{	
	--padding: 1.2rem;
}
.sideCol{
    border-right: 2px solid var(--themeWhite);
    min-width:300px;
    flex: none;
    text-align: right;
	padding: 0 var(--padding);
}
.sideCol h2{
    font-size:40px;
    margin: -0.1em 0 0 0;
}
.sideCol .category-list{
    list-style:none;
    margin-top: 1.3rem;
}
.sideCol .category-list li{
	position:relative;
}
.sideCol .category-list li a{
    position:relative;
	font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
	padding:0.2rem 0;
	display:inline-block;
}
.sideCol .category-list li + li a{
	margin-top:0.57rem;
}
.sideCol .category-list li:hover a,
.sideCol .category-list li.active a{	
	color:var(--themeTint);
}
.sideCol .category-list li::after{
	content:'';
	position:absolute;
	top:100%;
	right:0;
	width:0px;
	height:2px;
	background-color: currentcolor;
	transition: all .2s ease-in-out;
}
.sideCol .category-list li:hover::after,
.sideCol .category-list li.active::after{
	width:100%;
}

.sideCol .sideColContent{
    position:sticky;
    top: 23px;
}

.overviewCol{
	--padding: 1.2rem;
	position:relative;
	padding: 0 var(--padding);
	flex: 1;
}
.overviewCol .breadcrumb-nav{
	position:absolute;
	right: var(--padding);
	top: 0;
	width: auto;
	margin: 0;
}

@media screen and (min-width:1920px){
    .productItemHolder{
        --columns:5;
    }
}

@media screen and (max-width:1024px){
	.productItemHolder {
	    --columns: 3;
	}
}

@media screen and (max-width:850px){
	.sideCol{
		min-width:210px;
	}
	.sideCol .category-list li a{
		font-size:15px;
	}
	.productItemHolder {
	    --columns:2;
	}
	.sideCol .category-list{
		padding-left:0;
	}
}

@media screen and (max-width:769px){

	.sideCol .category-list li{
	}
	.sideCol .category-list li a{
		color:var(--themeDark);
		display:block;
		border:1px solid var(--themeWhite);
		padding:7px 10px;
		color: white;
	}
	.sideCol .category-list li:hover a, 
	.sideCol .category-list li.active a{
		color:var(--themeWhite);
		background-color:var(--themeTint);
	}
	.sideCol .category-list li::after{
		display:none;
	}
}

@media screen and (max-width:610px){
	.overviewCol .breadcrumb-nav{
		position:relative;
		padding: 0 var(--padding) 2rem;
		width: 100%;
		max-width: 100%;
	}
    .sideCol .sideColContent{
        position: inherit;
        top: 0;
    }
}

@media screen and (max-width:430px){
	.productItemHolder {
	    --columns:1;
	}
}