body {
	background-color: white;
	margin: 0;
	font-family: var(--text-font);
}
header {
	background-color: #1a1a1a;
	color: white;
	/*display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--headerHeight);
	padding: 0 16px;
	position: fixed;
  width: calc(100% - 32px);
  top: 0;
  z-index: 3;*/
}
.mobileOptions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.logo {
	font-size: 28px;
	display: block;
}
.headerNav a {
	color: white;
	text-decoration: none;
	margin: 0 12px;
}
footer {
	background-color: green;
}
.zoom-container {
  display: inline-block;
  overflow: hidden;
}
.zoom-container img {
  display: block;
  transition: transform .6s;
}

.product {
	margin: 12px;
	border-radius: 10px;
	/*cursor: pointer;*/
}
.product h2 {
	margin: 10px 0;
}
p {
	opacity: 0.8;
}
.product-image img {
	width: 100%;
	/*border-radius: 20px;*/

}
.product-grid {
	display: grid;
	margin: 0 auto;
}
.product-grid a {
	color: inherit;
	text-decoration: none;
}
.standard-page-head {
	background-color: #fff;
	margin-top: var(--headerHeight);
}
.standard-page-head-inner {
	max-width: 1400px;
	margin: 0 auto;
	text-align: center;
}
.standard-page-head h1 {
	/*font-size: var(--page-heading-size);*/
	margin-bottom: 20px;
}
.standard-page-head p {
	/*font-size: var(--page-description-size);*/
	line-height: calc(var(--page-description-size) * 1.5);
}
p {
	font-size: var(--content-size);
	line-height: calc(var(--content-size) * 1.5);
}
.dark {
	background-color: var(--darkBgColour);
	color: var(--darkFgColour);
}
.light {
	background-color: var(--lightBgColour);
	color: var(--lightFgColour);
}
h1, h2, h3, .filterSubHeading, .filterHeading  {
	font-family: var(--heading-font);
	font-weight: 400;
	margin: 0;
}

.filters-products {
	display: flex;
}
.filters-products #filtersSection {
	/*background-color: red;*/
	width: var(--filterPanelWidth);
	margin: 16px 16px 16px 16px;
	/*position: fixed	;*/	
}
#filtersSection a {
	text-decoration: none;
	color: inherit;
	font-family: var(--heading-font);
}
.filterHeading {
	/*border-bottom: 1px solid #e8e8e8;*/
	padding: 12px 0;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.filterSubHeading {
	/*border-top: 1px solid #e8e8e8;*/
	padding: 12px 0;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	/*margin-top: 8px;*/
	/*background-color: green;*/
}

.filters-products .product-grid {
	/*background-color: yellow;*/
	/*width: 80%;*/
	 

	/*width: 100%;*/
	/*margin-left: calc(var(--filterPanelWidth) + 30px);*/
	z-index: -1;
}
.filter {
	padding: 6px 0 6px 20px;
	font-size: var(--h3-size);
	/*background-color: pink;*/
	display: block;
	color: black;
	text-decoration: none;
}
.filterDropdown {
	/*display: none;*/
}
.filterSection {
	display: none;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}
.hide {
	display: none;
}
.sortOptions {
	/*position: absolute;*/
	/*right: 20px;*/
	/*height: 50px;*/
	/*padding: 20px;*/
	/*width: 100%;*/
	display: block;
	margin: 20px 20px 0 0;
	text-align: right;
	/*background-color: yellow;*/
}
.sortOptions a:hover {
	text-decoration: underline;
}
.sortOption a, .sortOption span {
	margin: 0 6px;
}
.sortOption {
	margin-left: 15px;
}
.productRHS {
	position: relative;
	/*height: 50px;*/
}
.orderByLink {
	color: black;
	opacity: 0.7;
	text-decoration: none;
}
.fpContainer {
	display: flex;
}
.fContainer {
	width: 20%;
	background-color: red;
}
.pContainer {
	width: 80%;
	background-color: green;
}
#filtersMobileTrigger, .squareLink {
	width: calc(100% - 24px);
	max-width: 250px;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	margin: 0 auto;
	border: 1px solid #999;
	cursor: pointer;
}

header .basketLink {
  background-color: var(--colour3);
  padding: 30px 15px 30px 15px;
  /*height:  100%;*/
}

#wishListContainer {
	max-width: 1400px;
	margin: 30px auto;
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
}
#wishListContainer a {
	color: inherit;
}
#wishListContainer img {
	width: 300px;
}
#wishListContainer .product {
	/*border-bottom: 1px solid #ccc;*/
}
