@charset "utf-8";
html {
	scroll-behavior: smooth;
	overflow-x: hidden; 
}

* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}


/*
Colour Theme
Red: #781C29
Orange: #DD723C
*/





.infooverall {
	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%;
}

.detailtitle {
	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;
}

.product-title {
    text-align: left;
    
}

.breadcrumb { 
	width: 70%;
	height: 10vh;
	font-family: Quattrocento Sans;
	font-size: 18px;
	font-weight: thin;
	color: rgba(61,61,61,1);
	display: flex;
	align-items: center;
	margin-top: 80px;
}

.breadcrumb a { 
	text-decoration: none; 
	color: #DD723C;
	transition: all 0.8s ease;
}

.breadcrumb a:hover { 
	color: #781C29; 
	transition: all 0.8s ease;
}




/*Product Info Section-------------------------------------------------------------------------------*/

.container { 
	display: flex; 
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 30px; 
	width: 70%;
	height: 50vh;
}

.product-image { 
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,1);
	border-radius: 27px;
	box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
	overflow: hidden;
	width: 40%;
	height: 100%;
}

.zoom-container {
	position: relative;
	overflow: hidden;
	width: 40%;
	max-height: 100%;
}

#zoom-img {
	width: 60%;
	transition: transform 0.1s ease;
	transform-origin: center center;
	display: block;
	object-fit: contain;
}

.product-details { 
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 60%;
	height: 100%;
}

.product-details h1 {
	font-family: Quattrocento;
	font-size: 36px;
	font-weight: bold;
	color: rgba(61,61,61,1);
}

.product-details h2 {
	font-family: Quattrocento;
	font-size: 24px;
	font-weight: thin;
	color: rgba(61,61,61,1);
}

.product-details h3 {
	font-family: Quattrocento;
	font-size: 18px;
	font-weight: bold;
	color: rgba(61,61,61,0.5);
	margin-top: 2px;
}

.product-details p {
	font-family: Quattrocento Sans;
	font-size: 18px;
	font-weight: thin;
	color: rgba(61,61,61,1);
	margin-top: 30px;
	text-align: justify;
}

.product-buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.btn-share, .btn-copy { 
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px ;
	height: 50px;
	box-sizing: border-box; 
	color: white; 
	text-decoration: none; 
	border-radius: 8px; 
	font-family: Quattrocento Sans;
	font-size: 18px;
	transition: all 0.4s ease;
}

.btn-share {
	width: 88%;
	background-color: rgba(120, 28, 41, 1);
}

.btn-copy {
	width: 9%;
	background-color: #3d3d3d;
}

.btn-share:hover, .btn-copy:hover {
	background-color: rgba(221, 114, 60, 1);
	transition: all 0.4s ease;
}




/*Product Details Section-------------------------------------------------------------------------------*/

.product-specification {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 90vh;
	margin: 30px 0 50px;
}

.spec-title {
	font-family: Quattrocento;
	font-size: 100px;
	font-weight: thin;
	background-image: url("../IMG/HOME IMG/title_mask.png");
	background-size: auto;
	background-position: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.spec-bg {
	background-image: url("../IMG/CATEGORIES IMG/catconbg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 27px;
	width: 80%;
	padding: 30px 40px;
	box-sizing: border-box;
	box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
	margin-top: -27px;
	z-index: 10;
}

.spec-table { 
	width: 100%;
	border-collapse: collapse; 
	border-spacing: 0;
}

.spec-table th, .spec-table td { 
	text-align: left; 
	padding: 10px 20px; 
	border: 1px solid rgba(61,61,61,0.3);
}

.spec-table th {
	width: 20%;
	font-family: Quattrocento;
	font-size: 18px;
} 

.spec-table td {
	font-family: Quattrocento Sans;
	font-size: 18px;
	font-weight: thin;
} 


.spec-table tr:first-child th, .spec-table tr:first-child td {
  border-top: none;
}

.spec-table tr:last-child th, .spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr td:first-child, .spec-table tr th:first-child {
  border-left: none;
}

.spec-table tr td:last-child, .spec-table tr th:last-child {
  border-right: none;
}


@media screen and (max-width: 1395px) {
	
	.infooverall {
		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%;
	}

	.detailtitle {
		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: 300px;
	}

	.breadcrumb { 
		width: 70%;
		height: 100px;
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
		color: rgba(61,61,61,1);
		display: flex;
		align-items: center;
	}

	.breadcrumb a { 
		text-decoration: none; 
		color: #DD723C;
		transition: all 0.8s ease;
	}

	.breadcrumb a:hover { 
		color: #781C29; 
		transition: all 0.8s ease;
	}




	/*Product Info Section-------------------------------------------------------------------------------*/

	.container { 
		display: flex; 
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 30px; 
		width: 80%;
		height: 500px;
	}

	.product-image { 
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(255,255,255,1);
		border-radius: 27px;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		overflow: hidden;
		width: 40%;
		height: 100%;
	}

	.zoom-container {
		position: relative;
		overflow: hidden;
		width: 40%;
		max-height: 100%;
	}

	#zoom-img {
		width: 60%;
		transition: transform 0.1s ease;
		transform-origin: center center;
		display: block;
		object-fit: contain;
	}

	.product-details { 
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 60%;
		height: 100%;
	}

	.product-details h1 {
		font-family: Quattrocento;
		font-size: 36px;
		font-weight: bold;
		color: rgba(61,61,61,1);
	}

	.product-details h2 {
		font-family: Quattrocento;
		font-size: 24px;
		font-weight: thin;
		color: rgba(61,61,61,1);
	}

	.product-details h3 {
		font-family: Quattrocento;
		font-size: 18px;
		font-weight: bold;
		color: rgba(61,61,61,0.5);
		margin-top: 2px;
	}

	.product-details p {
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
		color: rgba(61,61,61,1);
		margin-top: 30px;
		text-align: justify;
	}

	.product-buttons {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.btn-share, .btn-copy { 
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px ;
		height: 50px;
		box-sizing: border-box; 
		color: white; 
		text-decoration: none; 
		border-radius: 8px; 
		font-family: Quattrocento Sans;
		font-size: 18px;
		transition: all 0.4s ease;
	}

	.btn-share {
		width: 88%;
		background-color: rgba(120, 28, 41, 1);
	}

	.btn-copy {
		width: 9%;
		background-color: #3d3d3d;
	}

	.btn-share:hover, .btn-copy:hover {
		background-color: rgba(221, 114, 60, 1);
		transition: all 0.4s ease;
	}




	/*Product Details Section-------------------------------------------------------------------------------*/

	.product-specification {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		margin: 100px 0 50px;
	}

	.spec-title {
		font-family: Quattrocento;
		font-size: 80px;
		font-weight: thin;
		background-image: url("../IMG/HOME IMG/title_mask.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: center;
	}

	.spec-bg {
		background-image: url("../IMG/CATEGORIES IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: 27px;
		width: 80%;
		padding: 30px 40px;
		box-sizing: border-box;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		margin-top: -27px;
		z-index: 10;
	}

	.spec-table { 
		width: 100%;
		border-collapse: collapse; 
		border-spacing: 0;
	}

	.spec-table th, .spec-table td { 
		text-align: left; 
		padding: 10px 20px; 
		border: 1px solid rgba(61,61,61,0.3);
	}

	.spec-table th {
		width: 20%;
		font-family: Quattrocento;
		font-size: 18px;
	} 

	.spec-table td {
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
	} 


	.spec-table tr:first-child th, .spec-table tr:first-child td {
	  border-top: none;
	}

	.spec-table tr:last-child th, .spec-table tr:last-child td {
	  border-bottom: none;
	}

	.spec-table tr td:first-child, .spec-table tr th:first-child {
	  border-left: none;
	}

	.spec-table tr td:last-child, .spec-table tr th:last-child {
	  border-right: none;
	}
}
	
@media screen and (max-width: 900px) {
	
	.infooverall {
		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%;
	}

	.detailtitle {
		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: 300px;
	}

	.breadcrumb { 
		width: 90%;
		height: 100px;
		font-family: Quattrocento Sans;
		font-size: 16px;
		font-weight: thin;
		color: rgba(61,61,61,1);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.breadcrumb a { 
		text-decoration: none; 
		color: #DD723C;
		transition: all 0.8s ease;
	}

	.breadcrumb a:hover { 
		color: #781C29; 
		transition: all 0.8s ease;
	}




	/*Product Info Section-------------------------------------------------------------------------------*/

	.container { 
		display: flex; 
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px; 
		width: 80%;
		height: 900px;
		margin: 0;
	}

	.product-image { 
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(255,255,255,1);
		border-radius: 27px;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		overflow: hidden;
		width: 100%;
		min-height: 550px;
	}

	.zoom-container {
		position: relative;
		overflow: hidden;
		width: 100%;
		max-height: 400px;
	}

	#zoom-img {
		width: 60%;
		transition: transform 0.1s ease;
		transform-origin: center center;
		display: block;
		object-fit: contain;
	}

	.product-details { 
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		height: 800px;
	}

	.product-details h1 {
		font-family: Quattrocento;
		font-size: 36px;
		font-weight: bold;
		color: rgba(61,61,61,1);
	}

	.product-details h2 {
		font-family: Quattrocento;
		font-size: 24px;
		font-weight: thin;
		color: rgba(61,61,61,1);
	}

	.product-details h3 {
		font-family: Quattrocento;
		font-size: 18px;
		font-weight: bold;
		color: rgba(61,61,61,0.5);
		margin-top: 2px;
	}

	.product-details p {
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
		color: rgba(61,61,61,1);
		margin-top: 30px;
		text-align: justify;
	}

	.product-buttons {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.btn-share, .btn-copy { 
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px ;
		height: 50px;
		box-sizing: border-box; 
		color: white; 
		text-decoration: none; 
		border-radius: 8px; 
		font-family: Quattrocento Sans;
		font-size: 18px;
		transition: all 0.4s ease;
	}

	.btn-share {
		width: 88%;
		background-color: rgba(120, 28, 41, 1);
	}

	.btn-copy {
		width: 9%;
		background-color: #3d3d3d;
	}

	.btn-share:hover, .btn-copy:hover {
		background-color: rgba(221, 114, 60, 1);
		transition: all 0.4s ease;
	}




	/*Product Details Section-------------------------------------------------------------------------------*/

	.product-specification {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		margin: 100px 0 50px;
	}

	.spec-title {
		font-family: Quattrocento;
		font-size: 80px;
		font-weight: thin;
		background-image: url("../IMG/HOME IMG/title_mask.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: center;
	}

	.spec-bg {
		background-image: url("../IMG/CATEGORIES IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: 27px;
		width: 80%;
		padding: 30px 40px;
		box-sizing: border-box;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		margin-top: -27px;
		z-index: 10;
	}

	.spec-table { 
		width: 100%;
		border-collapse: collapse; 
		border-spacing: 0;
	}

	.spec-table th, .spec-table td { 
		text-align: left; 
		padding: 10px 20px; 
		border: 1px solid rgba(61,61,61,0.3);
	}

	.spec-table th {
		width: 20%;
		font-family: Quattrocento;
		font-size: 18px;
	} 

	.spec-table td {
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
	} 


	.spec-table tr:first-child th, .spec-table tr:first-child td {
	  border-top: none;
	}

	.spec-table tr:last-child th, .spec-table tr:last-child td {
	  border-bottom: none;
	}

	.spec-table tr td:first-child, .spec-table tr th:first-child {
	  border-left: none;
	}

	.spec-table tr td:last-child, .spec-table tr th:last-child {
	  border-right: none;
	}
}




@media screen and (max-width: 600px) {
	
	/*Product Info Section-------------------------------------------------------------------------------*/

	.container { 
		display: flex; 
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 30px; 
		width: 80%;
		height: 900px;
		margin: 0;
	}

	.product-image { 
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(255,255,255,1);
		border-radius: 27px;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		overflow: hidden;
		width: 100%;
		min-height: 400px;
	}

	.zoom-container {
		position: relative;
		overflow: hidden;
		width: 100%;
		max-height: 400px;
	}

	#zoom-img {
		width: 60%;
		transition: transform 0.1s ease;
		transform-origin: center center;
		display: block;
		object-fit: contain;
	}

	.product-details { 
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		height: 500px;
	}

	.product-details h1 {
		font-family: Quattrocento;
		font-size: 26px;
		font-weight: bold;
		color: rgba(61,61,61,1);
		margin: 10px 0;
	}

	.product-details h2 {
		font-family: Quattrocento;
		font-size: 20px;
		font-weight: thin;
		color: rgba(61,61,61,1);
	}

	.product-details h3 {
		font-family: Quattrocento;
		font-size: 18px;
		font-weight: bold;
		color: rgba(61,61,61,0.5);
		margin-top: 2px;
	}

	.product-details p {
		font-family: Quattrocento Sans;
		font-size: 18px;
		font-weight: thin;
		color: rgba(61,61,61,1);
		margin-top: 30px;
		text-align: justify;
	}

	.product-buttons {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.btn-share, .btn-copy { 
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px ;
		height: 50px;
		box-sizing: border-box; 
		color: white; 
		text-decoration: none; 
		border-radius: 8px; 
		font-family: Quattrocento Sans;
		font-size: 18px;
		transition: all 0.4s ease;
	}

	.btn-share {
		width: 85%;
		background-color: rgba(120, 28, 41, 1);
	}

	.btn-copy {
		width: 12%;
		background-color: #3d3d3d;
	}

	.btn-share:hover, .btn-copy:hover {
		background-color: rgba(221, 114, 60, 1);
		transition: all 0.4s ease;
	}
	
		/*Product Details Section-------------------------------------------------------------------------------*/

	.product-specification {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto;
		margin: 100px 0 50px;
	}

	.spec-title {
		font-family: Quattrocento;
		font-size: 70px;
		font-weight: thin;
		background-image: url("../IMG/HOME IMG/title_mask.png");
		background-size: auto;
		background-position: center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-align: center;
	}

	.spec-bg {
		background-image: url("../IMG/CATEGORIES IMG/catconbg.jpg");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: 27px;
		width: 90%;
		padding: 20px 20px;
		box-sizing: border-box;
		box-shadow: 0 0 5px 0 rgba(61,61,61,0.3);
		margin-top: -20px;
		z-index: 10;
	}

	.spec-table { 
		width: 100%;
		border-collapse: collapse; 
		border-spacing: 0;
	}

	.spec-table th, .spec-table td { 
		text-align: left; 
		padding: 10px 20px; 
		border: 1px solid rgba(61,61,61,0.3);
	}

	.spec-table th {
		width: 20%;
		font-family: Quattrocento;
		font-size: 14px;
	} 

	.spec-table td {
		font-family: Quattrocento Sans;
		font-size: 14px;
		font-weight: thin;
	} 


	.spec-table tr:first-child th, .spec-table tr:first-child td {
	  border-top: none;
	}

	.spec-table tr:last-child th, .spec-table tr:last-child td {
	  border-bottom: none;
	}

	.spec-table tr td:first-child, .spec-table tr th:first-child {
	  border-left: none;
	}

	.spec-table tr td:last-child, .spec-table tr th:last-child {
	  border-right: none;
	}
}
