:root{
	--color-1: #98C8D4;
	--color-2: #f69579;

	--border-radius-1: 5px;
	--border-radius-2: 10px;

	--background-0: #f5f5f5;
	--background-1: #ffffff;
	--background-2: #d7d7d7;

	--shadow-1: 0px 2px 2px rgba(0,0,0,0.08);
	--shadow-2: 0px 2px 10px rgba(0,0,0,0.15);

	--font-2: 'Roboto', sans-serif !important;

	--border-1: solid 1px #ebebeb;
}
*::selection{
	background-color: var(--color-1);
	color: white;
}
html{
	scroll-behavior: smooth;
}
body{
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	min-height: 100dvh;

	background-color: var(--background-0);
	color: var(--black);
}
.main-wrapper{
	position: relative;
	min-height: 100dvh;
}

#header-container{
	position: relative;
	z-index: 99;
	background-color: var(--background-1);
	box-shadow: 2px 0px 4px rgba(0,0,0,0.2);
}

.slider .picture{
	position: relative;
	background-color: var(--background-1);
	height: 270px;
	min-height: 270px;
	background-position: center;
	background-size: 150%;
	overflow: hidden;
	border-radius: var(--border-radius-1);
	box-shadow: var(--shadow-1);
}
.slider .picture:hover{
	box-shadow: var(--shadow-2);
}
.slider .picture:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	backdrop-filter: blur(10px);
	background-color: rgba(255 255 255 / 20%);
}
.slider .picture img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 1;
	transition: 0.06s ease;
}

.slider .picture:hover > img{
	transform: scale(1.1);
}


.card{
	border-radius: var(--border-radius-1);
	background-color: var(--background-1);

	box-shadow: var(--shadow-1);
}
.inline-card{
	border-radius: var(--border-radius-1);
	padding: 4px 6px;
	background-color: rgb(0 0 0 / 10%);
	font-size: 0.9em;

	transition: 0.1s ease;
}

.taxonomy-title{
	background-color: transparent;
	padding: 10px 20px;
	text-align: left;
	user-select: none;
}
.taxonomy-title:hover{
	background-color: rgb(0 0 0 / 3%);
}
.taxonomy-container{
	padding: 10px 20px;
	max-height: 300px;
	overflow-y: auto;
}
.taxonomy-container .inline-card{
	user-select: none;
	cursor: pointer;
}
.taxonomy-container .inline-card:hover{
	background-color: rgb(0 0 0 / 20%);
}


.taxonomy-container .inline-card.active{
	background-color: var(--color_accent);
	color: white;
}
.taxonomy-container .inline-card.active:hover{
	background-color: var(--color_accent_hover);
}


.product-grid{
	position: relative;
}
.product-grid::before{
	position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0);
    z-index: 9;
    backdrop-filter: blur(0px);

    transition: 0.1s ease;
}
.product-grid.loading::before{
    pointer-events: bounding-box;
    background-color: #ffffff75;
    backdrop-filter: blur(2px);
}

.product-card{
	background-color: var(--background-1);
	display: flex;
	flex-flow: column nowrap;
/*	box-shadow: var(--shadow-1);*/
	border-radius: var(--border-radius-1);
	overflow: hidden;
	border: var(--border-1);

	color: var(--black);
}
.product-card:hover{
	box-shadow: var(--shadow-1);
}
.product-card:hover > .picture img{
	transform: scale(1.1);
}

.product-card > .picture{
	position: relative;
	background-color: var(--background-1);
	height: 270px;
	min-height: 270px;
	background-position: center;
	background-size: 150%;
	overflow: hidden;
}
.product-card > .picture:before{
	position: absolute;
	pointer-events: none;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	backdrop-filter: blur(10px);
	background-color: rgba(255 255 255 / 20%);
}
.product-card > .picture img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 1;
	transition: 0.06s ease;
}
.product-card > .details{
	padding: 10px;
	min-height: 120px;
}

.product-card > .bottom{
	display: flex;
	flex-flow: column nowrap;
	padding: 10px;
}


.price{
	font-family: var(--font-2) !important;
	color: #545454;
}
.product-card .price{
	font-size: 1.4em;
	font-weight: 400;
}


.pagination{
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	width: fit-content;
	border: solid 1px #e9e9e9;
	border-radius: var(--border-radius-1);
	background-color: white;
	overflow: hidden;
}
.pagination > div{
	cursor: pointer;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 10px;
	min-width: 15px;
	transition: 0.05s ease;
}
.pagination > div:hover, .pagination > div:focus{
	background-color: #d9d9d9;
}
.pagination > div > span{
	font-size: 0.8em;
}
.pagination > .active{
	background-color: var(--color_accent);
	color: white;
	text-shadow: 0px 2px 3px rgba(0,0,0,0.3);
}
.pagination .noPointer, .pagination > .active{
	pointer-events: none;
}


.bg0{ background-color: var(--background-0);}
.bg1{ background-color: var(--background-1);}
.bg2{ background-color: var(--background-2);}

.bb0{ border-bottom: solid 1px var(--background-0);}
.bb1{ border-bottom: solid 1px var(--background-1);}
.bb2{ border-bottom: solid 1px var(--background-2);}


input.seamless{
	border: 0;
	padding: 0;
	outline: none;
	width: 30px;
	text-align: center;
}

.addToCart.bigbtn > *{
	z-index: 1;
}
.addToCart.bigbtn{
	position: relative;
	overflow: hidden;
}
.addToCart.bigbtn::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 100%;

	width: 0%;
	transition: 0.15s ease-in-out;
	z-index: 0;
}
.addToCart.bigbtn:hover::before{
	width: 100%;
}
.addToCart.bigbtn.black::before{
	background-color: var(--color_accent);
}

.product-card.mini > .picture{
	height: 170px;
	min-height: 170px;
}
.product-card.mini{
	font-size: 90%;
}

.product-info{
	border-left: solid 1px var(--background-0);;
}

#main-gallery{

}

#main-gallery img{
	max-width: 100%;
	object-fit: contain;
}






.bg0{ background: var(--background-0) }
.bg1{ background: var(--background-1) }
.bg2{ background: var(--background-2) }
.border1{ border: var(--border-1) }