:root {
    --titlefont: Rubik Mono One;
    --bodyfont: Bebas Neue;

    --fontsizeXXL: 40px;
    --fontsizeXL: 36px;
    --fontsizeL: 32px;
    --fontsizeM: 28px;
    --fontsizeS: 24px;
    --fontsizeXS: 20px;
    --fontsizeXXS: 16px;
    --fontsizeXXXS: 12px;

    --primCol: #7E47D1;
    --secCol: #63E9BA;
    --dmbgCol: #121212;
    --dmsurColOne: #232323;
    --dmsurColTwo: #343434;
    --dmsurColThr: #454545;
    --dmsurColFou: #565656;
    --dmerrorCol: #CF6679;

    --dmtextColHE: #ffffffe0;
    --dmtextColHME: #ffffffbb;
    --dmtextColME: #ffffff97;
    --dmtextColDIS: #ffffff55;


    --lmerrorCol: #B00020;
}

body {
    margin: 0;
    padding: 0;
}

.page {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--dmbgCol);
}

.pagecontent-container {
	display: flex;
	flex-direction: row;
	padding-top: 104px;
	padding-bottom: 48px;
	width: 100%;
}





/* -- Filter Section -- */
.filter-container {
	display: flex;
	flex-direction: column;
	align-items: end;
	width: 20%;
}

.filter-subcontainer {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.filtertitle {
	font-family: var(--bodyfont);
	font-size: 24px;
	letter-spacing: 0.05rem;
	color: var(--dmtextColHE);
}





.price-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0 .5rem;

	font-family: var(--bodyfont);
	font-size: 16px;
}

.price-box-container {
	width: 100%;
	display: flex;
	align-items: center;
	gap: .3rem;

	box-sizing: border-box;

	font-family: var(--bodyfont);
	font-size: 16px;
}

.price-filter-label {
	font-family: var(--bodyfont);
	font-size: 16px;
	color: var(--dmtextColME);
}

.price-box {
	font-size: 16px;
	font-family: var(--bodyfont);
	letter-spacing: 0.05rem;

	border: 1px solid var(--dmsurColThr);
	border-radius: 8px;

	width: 100%;
	max-width: 120px;
	display: flex;
	align-items: center;
	padding: 0 .3rem;
	height: 32px;

	background-color: var(--dmsurColFou);
}





.filter-section-title {
	margin-top: 16px;
	font-family: var(--bodyfont);
	font-size: 20px;
	letter-spacing: 0.05rem;
	color: var(--dmtextColHME);
}

.filter-label {
	font-family: var(--bodyfont);
	font-size: 16px;
	letter-spacing: 0.05rem;
	color: var(--dmtextColME);
}

.buttonroundgrey {
	margin-top: 16px;
}

.pagedividervertical {
	margin-left: 8px;
	width: 3px;
	border-radius: 3px;
}








.storepagecontainer {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 80%;
}

.producttypefiltercarousel {
    display: flex;
    flex-direction: row;
    margin: 24px 0px;
    padding-inline-start: 16px;
}

.producttypetilecontainer {
    display: flex;
    flex-direction: column;
    margin-right: 16px;
    height: 172px;
    width: 172px;
    transition: 0.2s ease;
}

.producttypetilecontainer:hover {
    scale: 110%;
}

.producttypetileimage {
    height: 100%;
    margin-bottom: -8px;
}

.producttypetiletitle {
    text-align: center;
    font-family: var(--bodyfont);
    font-size: var(--fontsizeXS);
    color: var(--dmtextColHE);
}





.streamerfiltercarousel {
    display: flex;
    flex-direction: row;
    padding-inline-start: 16px;
    margin: 24px 0px;
}

.streamerfiltertile {
    height: 240px;
    min-height: 240px;
    width: 240px;
    min-width: 200px;
    background-color: #CF6679;
    border-radius: 36px;
    margin-right: 16px;
    overflow: hidden;
    transition: 0.2s ease;
    box-shadow: 0px 5px 10px #000000c0;
}

.streamerfiltertile:hover {
    scale: 105%;
}

.streamername {
    text-align: center;
    font-family: var(--titlefont);
    color: var(--dmtextColHE);
}

.creatorimage {
    height: 100%;
}



.producttilecontainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 24px 0px;
}

.producttile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 560px;
    width: 340px;
    margin: 16px 12px;
    background-color: var(--dmsurColOne);
    border-radius: 36px;
    box-shadow: 0px 5px 10px #000000c0;
    transition: 0.2s ease;
}

.producttile:hover {
    scale: 102%;
}

.productimagecontainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 320px;
}

.newproductcontainer {
    position: absolute;
    z-index: 10;
    top: 8px;
    left: 0px;
    color: var(--dmbgCol);
    font-family: var(--bodyfont);
    font-size: var(--fontsizeXS);
    background-color: #63E9BA;
    padding: 4px 12px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px #000000c0;
}

.productimage {
    width: 90%;
}

.productinfocontainer {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 200px;
}

.productname {
    font-family: var(--titlefont);
    font-size: var(--fontsizeXS);
    color: var(--dmtextColHE);
    margin-top: 0.5rem;
}

.setname {
    font-family: var(--titlefont);
    font-size: var(--fontsizeXXS);
    color: var(--dmtextColHE);
    margin-top: -1rem;
}

.prodshortdesc {
    font-family: var(--bodyfont);
    font-size: var(--fontsizeXXXXS);
    color: var(--dmtextColME);
    margin-top: 1rem;
}

.storedetails {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--bodyfont);
    font-size: var(--fontsizeXS);
    color: var(--dmtextColHME);
}

.buybutton {
    font-family: var(--bodyfont);
    font-size: var(--fontsizeXS);
    color: var(--dmtextColHE);
  
    padding: 8px 20px;
    border-radius: 12px;
    border-style: none;
    background-color: #7E47D1;

    transition: 0.2s ease;
}

.buybutton:hover {
	cursor: pointer;
}









@media (max-width: 900px) {

  .pagecontent-container {
	display: flex;
	flex-direction: column;
	padding-top: 104px;
	padding-bottom: 48px;
	width: 100%;
	align-items: center;
	}

  .filter-container {
	width: auto;
	}

  .pagedividervertical {
	display: none;
	}

}





@media (max-width: 900px) {
    #filter-toggle {
        display: block;
    }

    #filter-form {
        display: none;
    }
}