@charset "utf-8";
html {
	scroll-behavior: smooth;
	overflow-x: hidden; 
}

* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}


/*
Colour Theme
Red: #781C29
Orange: #DD723C
*/



/*Hero Section-------------------------------------------------------------------------------*/

.catalogueoverall {
	background-image: url("../IMG/CATEGORIES IMG/brands_bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.cataloguetitle {
	font-family: Quattrocento;
	font-size: 100px;
	font-weight: thin;
	background-image: url("../IMG/CONTACT IMG/title_mask2.png");
	background-size: auto;
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: left;
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 30vh;
	margin-top: 80px;
}

.cataloguecontainer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	width: 90%;
	gap: 30px;
	margin-bottom: 100px;
}




/*Filter Section-------------------------------------------------------------------------------*/

.cataloguefilter {
	display: flex;
	flex-direction: column;
	width: 20%;
}



.filtertitle {
	font-family: Quattrocento;
	font-size: 50px;
	font-weight: thin;
	background-image: url("../IMG/CONTACT IMG/title_mask2.png");
	background-size: auto;
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.filter_con {
	width: 100%;
	background-image: url("../IMG/CATALOGUE IMG/catconbg.jpg");
	background-size: cover;
	background-position: center;
	border-radius: 27px;
	box-sizing: border-box;
	padding: 30px;
	box-shadow: 0 0 10px 0 rgba(61,61,61,0.3);
	margin-top: -12px;
	z-index: 10;
}

.filter_con h4 {
	font-family: Quattrocento;
	font-size: 24px;
	font-weight: thin;
	margin: 20px 0;
}

.filter-box-group {
  display: flex;
  flex-direction: column;
	justify-content: center;
	a;align-items: center;
  gap: 10px;
}

.filter-box {
	display: flex;
	width: 200px;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	border: 2px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	cursor: pointer;
	background-color: rgba(255,255,255,0.3);
	transition: all 0.2s ease;
	user-select: none;
	font-family: Quattrocento Sans;
	font-size: 18px;
	font-weight: thin;
}

.filter-box:hover {
  border-color: rgba(120, 28, 41, 0.3);
  background-color: rgba(120, 28, 41, 0.2);
}

.filter-box.selected {
  border-color: rgba(221, 114, 60, 0.3);
  background-color: rgba(221, 114, 60, 0.2);
}


/*Products Catalogue Section-------------------------------------------------------------------*/

.catalogueproducts {
	padding: 20px; 
	display: grid; 
	justify-content: center;
	align-items: center;
	gap: 30px; 
	grid-template-columns: repeat(3, 1fr);
}

.productbox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 300px;
	height: 430px;
}

.productimage {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 10;
	width: 100%;
}

.productcaption {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	background-color: #fff;
	width: 100%;
	height: 300px;
	border-radius: 27px;
	margin-top: -150px;
	box-shadow: 0 0 5px 0px rgba(61,61,61,0.2);
	box-sizing: border-box;
}

.productcaption p {
	font-family: Quattrocento Sans;
	font-size: 20px;
	font-weight: bold;
		white-space: nowrap;        
  	overflow: hidden;            
  	text-overflow: ellipsis;
}


.productcaption p1 {
	font-family: Quattrocento Sans;
	font-size: 20px;
	font-weight: thin;
}


.productcaption p2 {
	font-family: Quattrocento Sans;
	font-size: 14px;
	font-weight: bold;
	color: rgba(159,159,159,1.00);
	margin-top: 4px;
}

.productbutton {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	padding: 10px 0 0 0;
}

.productbutton a {
	text-decoration: none;
	font-size: 18px;
	font-family: Quattrocento Sans;
	color: #fff;
	background-color: #3d3d3d;
	border-radius:10px;
	width: 120px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease;
}

.productbutton a:hover {
	background-color: #781C29;
	transition: all 0.4s ease;
}




@media screen and (max-width: 1395px) {
	
	/*Hero Section-------------------------------------------------------------------------------*/

	.catalogueoverall {
		background-image: url("../IMG/CATEGORIES IMG/brands_bg.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.cataloguetitle {
		font-family: Quattrocento;
		font-size: 100px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: left;
		width: 90%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		height: 30vh;
	}

	.cataloguecontainer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 90%;
		gap: 30px;
		margin-bottom: 100px;
	}




	/*Filter Section-------------------------------------------------------------------------------*/

	.cataloguefilter {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.filtertitle {
		font-family: Quattrocento;
		font-size: 80px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: left;
		width: 80%;
	}

	.filter_con {
		width: 90%;
		background-image: url("../IMG/CATALOGUE IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		border-radius: 27px;
		box-sizing: border-box;
		padding: 30px;
		box-shadow: 0 0 10px 0 rgba(61,61,61,0.3);
		margin-top: -20px;
		z-index: 10;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.filter_con h4 {
		font-family: Quattrocento;
		font-size: 24px;
		font-weight: thin;
		margin: 20px 0;
	}

	.filter-box-group {
		display: grid; 
		gap: 10px; 
		grid-template-columns: repeat(4, 1fr);
	}

	.filter-box {
		display: flex;
		width: 180px;
		justify-content: center;
		align-items: center;
		padding: 10px 15px;
		border: 2px solid #ccc;
		border-radius: 8px;
		box-sizing: border-box;
		cursor: pointer;
		background-color: rgba(255,255,255,0.3);
		transition: all 0.2s ease;
		user-select: none;
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
	}

	.filter-box:hover {
	  border-color: rgba(120, 28, 41, 0.3);
	  background-color: rgba(120, 28, 41, 0.2);
	}

	.filter-box.selected {
	  border-color: rgba(221, 114, 60, 0.3);
	  background-color: rgba(221, 114, 60, 0.2);
	}
}



@media screen and (max-width: 1000px) {
	/*Hero Section-------------------------------------------------------------------------------*/

	.catalogueoverall {
		background-image: url("../IMG/CATEGORIES IMG/brands_bg.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.cataloguetitle {
		font-family: Quattrocento;
		font-size: 100px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: left;
		width: 90%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		height: 30vh;
	}

	.cataloguecontainer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 90%;
		gap: 30px;
		margin-bottom: 100px;
	}




	/*Filter Section-------------------------------------------------------------------------------*/

	.cataloguefilter {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.filtertitle {
		font-family: Quattrocento;
		font-size: 80px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: left;
		width: 80%;
	}

	.filter_con {
		width: 90%;
		background-image: url("../IMG/CATALOGUE IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		border-radius: 27px;
		box-sizing: border-box;
		padding: 30px;
		box-shadow: 0 0 10px 0 rgba(61,61,61,0.3);
		margin-top: -20px;
		z-index: 10;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.filter_con h4 {
		font-family: Quattrocento;
		font-size: 24px;
		font-weight: thin;
		margin: 20px 0;
	}

	.filter-box-group {
		display: grid; 
		gap: 10px; 
		grid-template-columns: repeat(3, 1fr);
	}

	.filter-box {
		display: flex;
		width: 180px;
		justify-content: center;
		align-items: center;
		padding: 10px 15px;
		border: 2px solid #ccc;
		border-radius: 8px;
		box-sizing: border-box;
		cursor: pointer;
		background-color: rgba(255,255,255,0.3);
		transition: all 0.2s ease;
		user-select: none;
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
	}

	.filter-box:hover {
	  border-color: rgba(120, 28, 41, 0.3);
	  background-color: rgba(120, 28, 41, 0.2);
	}

	.filter-box.selected {
	  border-color: rgba(221, 114, 60, 0.3);
	  background-color: rgba(221, 114, 60, 0.2);
	}
	
	/*Products Catalogue Section-------------------------------------------------------------------*/

	.catalogueproducts {
		padding: 20px; 
		display: grid; 
		justify-content: center;
		align-items: center;
		gap: 30px; 
		grid-template-columns: repeat(2, 1fr);
	}

	.productbox {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 300px;
		height: 430px;
	}

	.productimage {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		z-index: 10;
		width: 100%;
	}

	.productcaption {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 20px;
		background-color: #fff;
		width: 100%;
		height: 300px;
		border-radius: 27px;
		margin-top: -150px;
		box-shadow: 0 0 5px 0px rgba(61,61,61,0.2);
		box-sizing: border-box;
	}

	.productcaption p {
		font-family: Quattrocento Sans;
		font-size: 20px;
		font-weight: bold;
			white-space: nowrap;        
		overflow: hidden;            
		text-overflow: ellipsis;
	}


	.productcaption p1 {
		font-family: Quattrocento Sans;
		font-size: 20px;
		font-weight: thin;
	}


	.productcaption p2 {
		font-family: Quattrocento Sans;
		font-size: 14px;
		font-weight: bold;
		color: rgba(159,159,159,1.00);
		margin-top: 4px;
	}

	.productbutton {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		padding: 10px 0 0 0;
	}

	.productbutton a {
		text-decoration: none;
		font-size: 18px;
		font-family: Quattrocento Sans;
		color: #fff;
		background-color: #3d3d3d;
		border-radius:10px;
		width: 120px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.4s ease;
	}

	.productbutton a:hover {
		background-color: #781C29;
		transition: all 0.4s ease;
	}

}




@media screen and (max-width: 800px) {
	
	/*Hero Section-------------------------------------------------------------------------------*/

	.catalogueoverall {
		background-image: url("../IMG/CATEGORIES IMG/brands_bg.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.cataloguetitle {
		font-family: Quattrocento;
		font-size: 50px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: center;
		width: auto;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		height: 30vh;
	}

	.cataloguecontainer {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 90%;
		gap: 30px;
		margin-bottom: 100px;
	}
	
	
	/*Filter Section-------------------------------------------------------------------------------*/

	.cataloguefilter {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.filtertitle {
		font-family: Quattrocento;
		font-size: 40px;
		font-weight: thin;
		background-image: url("../IMG/CONTACT IMG/title_mask2.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: left;
		width: 80%;
	}

	.filter_con {
		width: 90%;
		background-image: url("../IMG/CATALOGUE IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		border-radius: 27px;
		box-sizing: border-box;
		padding: 20px;
		box-shadow: 0 0 10px 0 rgba(61,61,61,0.3);
		margin-top: 0;
		z-index: 10;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}

	.filter_con h4 {
		font-family: Quattrocento;
		font-size: 24px;
		font-weight: thin;
		margin: 20px 0;
	}

	.filter-box-group {
		display: grid; 
		gap: 10px; 
		grid-template-columns: repeat(2, 1fr);
	}

	.filter-box {
		display: flex;
		width: 110px;
		height: 50px;
		justify-content: center;
		align-items: center;
		padding: 10px 10px;
		border: 2px solid #ccc;
		border-radius: 8px;
		box-sizing: border-box;
		cursor: pointer;
		background-color: rgba(255,255,255,0.3);
		transition: all 0.2s ease;
		user-select: none;
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
	}

	.filter-box:hover {
	  border-color: rgba(120, 28, 41, 0.3);
	  background-color: rgba(120, 28, 41, 0.2);
	}

	.filter-box.selected {
	  border-color: rgba(221, 114, 60, 0.3);
	  background-color: rgba(221, 114, 60, 0.2);
	}
	
	/*Products Catalogue Section-------------------------------------------------------------------*/

	.catalogueproducts {
		padding: 10px; 
		display: grid; 
		justify-content: center;
		align-items: center;
		gap: 0; 
		grid-template-columns: repeat(1, 1fr);
	}

	.productbox {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 300px;
		height: 430px;
		transform: scale(0.9);
	}

	.productimage {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		z-index: 10;
		width: 100%;
	}

	.productcaption {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 20px;
		background-color: #fff;
		width: 100%;
		height: 300px;
		border-radius: 27px;
		margin-top: -150px;
		box-shadow: 0 0 5px 0px rgba(61,61,61,0.2);
		box-sizing: border-box;
	}

	.productcaption p {
		font-family: Quattrocento Sans;
		font-size: 20px;
		font-weight: bold;
			white-space: nowrap;        
		overflow: hidden;            
		text-overflow: ellipsis;
	}


	.productcaption p1 {
		font-family: Quattrocento Sans;
		font-size: 20px;
		font-weight: thin;
	}


	.productcaption p2 {
		font-family: Quattrocento Sans;
		font-size: 14px;
		font-weight: bold;
		color: rgba(159,159,159,1.00);
		margin-top: 4px;
	}

	.productbutton {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		padding: 10px 0 0 0;
	}

	.productbutton a {
		text-decoration: none;
		font-size: 18px;
		font-family: Quattrocento Sans;
		color: #fff;
		background-color: #3d3d3d;
		border-radius:10px;
		width: 120px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.4s ease;
	}

	.productbutton a:hover {
		background-color: #781C29;
		transition: all 0.4s ease;
	}

}

