/* mulish-latin-wght-normal */
@font-face {
	font-family: "Mulish Variable";
	font-style: normal;
	font-display: swap;
	font-weight: 200 1000;
	src: url(https://cdn.jsdelivr.net/fontsource/fonts/mulish:vf@latest/latin-wght-normal.woff2)
		format("woff2-variations");
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
		U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* START ALL */
:root {
	--dark: #1d1d1b;
	--text-dark: var(--dark);
	--light: #f8f8f7;
	--text-light: var(--light);
	--red: #cd171a;
	--green: #159a39;
	--grey: #dbdbd7;
	--full-radius: 1000rem;
	--standard-radius: 0.5rem;
	--shadow: 0.05rem 0.1rem 0.15rem var(--dark);
}
html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Mulish Variable", sans-serif;
	color: var(--text-dark);
	background-color: var(--light);
}
* {
	box-sizing: border-box;
}
button {
	cursor: pointer;
}
header {
	height: 3.75rem;
	padding: 0.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0.5rem;
	border-bottom: var(--grey) solid 0.15rem;
}
@media (max-width: 768px) {
	header {
		padding: 0.35rem;
	}
}
header #menuButton {
	border: none;
	padding: 0;
	background-color: transparent;
}
@media (min-width: 769px) {
	header #menuButton {
		display: none;
	}
}
/* I REALLY do not like firefox */
@-moz-document url-prefix() {
	header > a {
		flex-shrink: 2;
	}
}
header #menuButton img {
	width: auto;
	height: 100%;
	padding: 0.25rem;
}
header #logo {
	height: 100%;
	width: auto;
}
header #mainNav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0.3rem 0;
	height: 100%;
}
@media (max-width: 768px) {
	header #mainNav ul {
		display: none;
	}
}
header #mainNav ul li {
	transition: transform 200ms;
}
header #mainNav ul li:hover {
	transform: scale(1.1);
}
header #mainNav ul li img {
	height: 100%;
}
header #mainNav ul li a {
	text-decoration: none;
	font-size: 1.5rem;
	color: inherit;
	text-box: trim-both text alphabetic;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
	gap: 0.25rem;
}
header #spacer {
	width: 100%;
}
header search {
	height: 100%;
	padding: 0.25rem 0;
	position: relative;
}
@media (max-width: 768px) {
	header search {
		display: none;
	}
}
/* For Firefox >:( */
@-moz-document url-prefix() {
	header search #searchIcon {
		height: 100%;
	}
}
header search #searchIcon {
	position: absolute;
	height: stretch;
	padding: 0.25rem;
	top: 0;
}
header search #search {
	height: 100%;
	border: none;
	padding: 0;
	background-color: var(--grey);
	width: 17rem;
	border-radius: var(--full-radius);
	padding-left: 2.5rem;
	font-size: 1.25rem;
}
header #searchButton {
	border: none;
	padding: 0;
	background-color: var(--grey);
	border-radius: var(--full-radius);
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (min-width: 769px) {
	header #searchButton {
		display: none;
	}
}
header #cart {
	height: 100%;
}
.red {
	color: var(--red);
}
.green {
	color: var(--green);
}
main {
	width: 100%;
	padding: 1rem;
}
@media (max-width: 768px) {
	main {
		padding: 0.5rem;
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
	}
}
main .hero {
	margin: 0;
	position: relative;
	user-select: none;
}
main .hero img {
	width: 100%;
	height: auto;
}
main figure {
	user-select: none;
}
main h2 {
	color: var(--red);
	font-size: 2.25rem;
	margin: 0;
	font-weight: 600;
}
@media (max-width: 768px) {
	main h2 {
		font-size: 1.5rem;
	}
}
/* END ALL */
/* START HOME */
main[data-page="home"] #saleHero .sale-light {
	color: var(--text-light);
	text-shadow: var(--shadow);
}
main[data-page="home"] #saleHero .sale-main {
	font-size: 3rem;
	position: absolute;
	top: 0;
	left: 1rem;
}
@media (max-width: 768px) {
	main[data-page="home"] #saleHero .sale-main {
		font-size: 2.15rem;
		left: 0.5rem;
		line-height: 2rem;
	}
}
main[data-page="home"] #saleHero .sale-main .sale-sale {
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.75rem;
	text-shadow: 0.05rem 0.1rem 0.15rem color-mix(in srgb, var(--red) 30%, var(--dark) 100%);
}
@media (max-width: 768px) {
	main[data-page="home"] #saleHero .sale-main .sale-sale {
		letter-spacing: 0.25rem;
	}
}
main[data-page="home"] #saleHero .sale-minor {
	font-size: 1.5rem;
	position: absolute;
	bottom: 0;
	left: 1rem;
	display: flex;
	align-items: center;
}
@media (max-width: 768px) {
	main[data-page="home"] #saleHero .sale-minor {
		font-size: 1rem;
		left: 0.75rem;
	}
}
main[data-page="home"] #saleHero .sale-minor .sale-percent {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	margin: 0.4rem 0.7rem;
	text-shadow: 0.05rem 0.1rem 0.15rem color-mix(in srgb, var(--green) 20%, var(--dark) 100%);
}
@media (max-width: 768px) {
	main[data-page="home"] #saleHero .sale-minor .sale-percent {
		font-size: 2rem;
	}
}
main[data-page="home"] #saleHero .sale-minor .sale-small {
	font-size: 1.1rem;
}
@media (max-width: 768px) {
	main[data-page="home"] #saleHero .sale-minor .sale-small {
		font-size: 0.65rem;
	}
}
@media (max-width: 768px) {
	main[data-page="home"] #bothline {
		line-height: 1rem;
		margin-top: 0.5rem;
	}
}
main[data-page="home"] #bothline #tagline {
	font-size: 2.25rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	main[data-page="home"] #bothline #tagline {
		display: inline-block;
		width: 100%;
		font-size: 1.35rem;
		text-align: center;
	}
}
main[data-page="home"] #bothline #tagline .red {
	font-weight: 800;
}
main[data-page="home"] #bothline #subline {
	font-size: 1.5rem;
}
@media (max-width: 768px) {
	main[data-page="home"] #bothline #subline {
		display: inline-block;
		width: 100%;
		font-size: 0.75rem;
		text-align: center;
	}
}
main[data-page="home"] #rooms,
main[data-page="home"] #categories {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 0.5rem;
}
@media (max-width: 768px) {
	main[data-page="home"] #rooms,
	main[data-page="home"] #categories {
		grid-template: repeat(3, 1fr) / 1fr;
		gap: 0.2rem;
	}
}
main[data-page="home"] #rooms:is(#categories),
main[data-page="home"] #categories:is(#categories) {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 1.5rem;
}
@media (max-width: 768px) {
	main[data-page="home"] #rooms:is(#categories),
	main[data-page="home"] #categories:is(#categories) {
		grid-template: repeat(2, 1fr) / repeat(2, 1fr);
		gap: 0.5rem;
		margin-top: 0.5rem;
	}
}
main[data-page="home"] #rooms figure,
main[data-page="home"] #categories figure {
	width: 100%;
	margin: 0;
	position: relative;
	cursor: pointer;
}
main[data-page="home"] #rooms figure img,
main[data-page="home"] #categories figure img {
	width: 100%;
	height: auto;
	border-radius: var(--standard-radius);
	vertical-align: middle;
}
main[data-page="home"] #rooms figure figcaption,
main[data-page="home"] #categories figure figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 90%;
	color: var(--text-light);
	text-shadow: var(--shadow);
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}
@media (max-width: 768px) {
	main[data-page="home"] #rooms figure figcaption,
	main[data-page="home"] #categories figure figcaption {
		font-size: 1.3rem;
	}
}
/* END HOME */
/* START ROOMS */
main[data-page="rooms"] {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
main[data-page="rooms"] hr {
	width: 100%;
	border: var(--green) solid 0.075rem;
	margin: 1rem 0 0.5rem 0;
}
main[data-page="rooms"] #roomsHero .rooms-main {
	font-size: 3rem;
	color: var(--text-light);
	text-shadow: var(--shadow);
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
}
@media (max-width: 768px) {
	main[data-page="rooms"] #roomsHero .rooms-main {
		font-size: 2.1rem;
	}
}
main[data-page="rooms"] .room .categories {
	display: flex;
	margin-top: 0.5rem;
	gap: 0.5rem;
	overflow-x: scroll;
	scrollbar-width: none;
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .categories {
		margin-top: 0.25rem;
		gap: 0.25rem;
	}
}
main[data-page="rooms"] .room .categories figure {
	margin: 0;
	position: relative;
	cursor: pointer;
}
main[data-page="rooms"] .room .categories figure img {
	width: 14.5rem;
	height: auto;
	border-radius: var(--standard-radius);
	vertical-align: middle;
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .categories figure img {
		width: 10rem;
	}
}
main[data-page="rooms"] .room .categories figure figcaption {
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-light);
	text-shadow: var(--shadow);
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .categories figure figcaption {
		font-size: 1.35rem;
	}
}
main[data-page="rooms"] .room .products {
	display: flex;
	margin-top: 1rem;
	gap: 0.5rem;
	width: 100%;
	overflow-x: scroll;
	scrollbar-width: none;
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .products {
		margin-top: 0.5rem;
		gap: 0.25rem;
	}
}
main[data-page="rooms"] .room .products figure {
	margin: 0;
	position: relative;
	cursor: pointer;
}
main[data-page="rooms"] .room .products figure img {
	width: 19.5rem;
	height: auto;
	border-radius: var(--standard-radius);
	vertical-align: middle;
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .products figure img {
		width: 13.5rem;
	}
}
main[data-page="rooms"] .room .products figure figcaption {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--text-light);
	text-shadow: var(--shadow);
	width: 80%;
	position: absolute;
	bottom: 0;
	left: 0;
}
@media (max-width: 768px) {
	main[data-page="rooms"] .room .products figure figcaption {
		font-size: 0.85rem;
	}
}
/* END ROOMS */
/* START PRODUCT */
main[data-page="product"] {
	display: flex;
	gap: 1.5rem;
}
main[data-page="product"] #variations {
	display: flex;
	flex-direction: column;
	min-width: 5.5rem;
	gap: 1rem;
}
@media (max-width: 768px) {
	main[data-page="product"] #variations {
		display: none;
	}
}
main[data-page="product"] #variations img {
	border-radius: var(--standard-radius);
	width: 100%;
	height: auto;
}
main[data-page="product"] #variations img:first-of-type {
	border: var(--red) solid 0.15rem;
}
main[data-page="product"] #mainProduct img {
	width: 100%;
}
main[data-page="product"] #mainProduct #crumbs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 0.25rem;
}
@media (min-width: 769px) {
	main[data-page="product"] #mainProduct #crumbs {
		display: none;
	}
}
main[data-page="product"] #mainProduct #crumbs .crumb {
	width: 0.75rem;
	height: 0.75rem;
	background-color: var(--grey);
	border-radius: var(--full-radius);
}
main[data-page="product"] #mainProduct #crumbs .crumb.filled {
	background-color: var(--red);
}
main[data-page="product"] #productInfo {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}
main[data-page="product"] #productInfo #productName {
	margin: 0;
	font-size: 2.25rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productName {
		order: 1;
		font-size: 2rem;
	}
}
main[data-page="product"] #productInfo #productPrice {
	font-size: 1.75rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productPrice {
		order: 2;
		font-size: 1.25rem;
	}
}
main[data-page="product"] #productInfo #productShort {
	font-size: 1.35rem;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productShort {
		order: 4;
	}
}
main[data-page="product"] #productInfo #reviewsContainer {
	display: flex;
	flex-direction: row;
	gap: 0.1rem;
}
main[data-page="product"] #productInfo #reviewsContainer .star {
	width: 1rem;
	height: 1rem;
	margin: 0;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #reviewsContainer {
		order: 3;
	}
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productColours {
		order: 0;
	}
}
main[data-page="product"] #productInfo #productColours #coloursLabel {
	display: block;
	font-size: 1.45rem;
	margin-top: 1rem;
}
main[data-page="product"] #productInfo #productColours #colourImages {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}
main[data-page="product"] #productInfo #productColours #colourImages img {
	border-radius: var(--standard-radius);
	height: auto;
	width: 4.5rem;
}
main[data-page="product"] #productInfo #productColours #colourImages img:nth-of-type(3) {
	border: var(--red) solid 0.15rem;
}
main[data-page="product"] #productInfo #productLong {
	display: block;
	margin-top: 1rem;
	font-size: 1.2rem;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productLong {
		order: 5;
	}
}
main[data-page="product"] #productInfo #productLong ul {
	margin: 0;
	padding: 0 1.5rem;
}
main[data-page="product"] #productInfo #productCart {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	margin-top: 1rem;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productCart {
		order: 6;
		flex-direction: column;
	}
}
main[data-page="product"] #productInfo #productCart button {
	font-size: 1.25rem;
	background-color: var(--grey);
	border: none;
	border-radius: var(--full-radius);
	padding: 0.3rem 0.75rem;
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productCart button:is(#quantity) {
		justify-content: space-between;
	}
}
main[data-page="product"] #productInfo #productCart button:is(#addToCart) {
	padding: 0.3rem 2rem;
	background-color: var(--green);
	color: var(--text-light);
}
@media (max-width: 768px) {
	main[data-page="product"] #productInfo #productCart button:is(#addToCart) {
		padding: 0.75rem 2rem;
	}
}
main[data-page="product"] #productInfo #productCart button .symbol {
	text-box-trim: trim-both;
	width: 2rem;
	align-items: center;
	font-size: 2rem;
}
/* END PRODUCT */
/* START CART */
main[data-page="cart"] {
	padding: 2rem 2.5rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] {
		padding: 0.5rem 0.25rem;
	}
}
main[data-page="cart"] h1 {
	margin: 0;
	font-size: 2.25rem;
	color: var(--red);
}
@media (max-width: 768px) {
	main[data-page="cart"] h1 {
		font-size: 1.75rem;
	}
}
main[data-page="cart"] #lower {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2.75rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower {
		grid-template-columns: 1fr;
		margin-top: 0;
	}
}
main[data-page="cart"] #lower #cartItems {
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
main[data-page="cart"] #lower #cartItems .cart-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}
main[data-page="cart"] #lower #cartItems .cart-item img {
	width: 7.25rem;
	height: auto;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item img {
		width: 5rem;
	}
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details {
	display: flex;
	flex-direction: column;
	width: 100%;
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details span {
	font-weight: 600;
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .productName {
	font-size: 2rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item .item-details .productName {
		font-size: 1.5rem;
	}
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .productDesc {
	font-size: 1.3rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item .item-details .productDesc {
		font-size: 1rem;
	}
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .productPrice {
	font-size: 1.1rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item .item-details .productPrice {
		font-size: 0.9rem;
	}
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	align-items: center;
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom button {
	font-size: 1.25rem;
	background-color: var(--grey);
	border: none;
	border-radius: var(--full-radius);
	padding: 0.25rem 1rem;
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom button {
		justify-content: space-between;
	}
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom button span {
	font-weight: normal;
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom button .symbol {
	text-box-trim: trim-both;
	width: 1rem;
	align-items: center;
	font-size: 1.5rem;
}
main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom .save {
	text-decoration: underline;
	font-weight: normal;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #cartItems .cart-item .item-details .bottom .save {
		font-size: 0.85rem;
	}
}
main[data-page="cart"] #lower #checkoutItems {
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 1.35rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems {
		font-size: 1.15rem;
		width: 90%;
		margin: 2rem auto;
		align-items: center;
	}
}
main[data-page="cart"] #lower #checkoutItems #summary {
	font-size: 1.9rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #summary {
		font-size: 1.5rem;
	}
}
main[data-page="cart"] #lower #checkoutItems hr {
	width: 100%;
	border: var(--dark) solid 0.075rem;
	margin: 0;
}
main[data-page="cart"] #lower #checkoutItems #total {
	font-size: 1.75rem;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #total {
		font-size: 1.25rem;
	}
}
main[data-page="cart"] #lower #checkoutItems #discount {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 0.5rem;
	justify-content: space-between;
	margin-top: 1.25rem;
}
main[data-page="cart"] #lower #checkoutItems #discount input {
	width: 100%;
	height: 2rem;
	border: var(--grey) solid 0.1rem;
	border-radius: var(--standard-radius);
	background-color: var(--light);
	padding: 1rem;
	font-size: 0.9rem;
	font-weight: 400;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #discount input {
		padding: 1.25rem;
		font-size: 1rem;
	}
}
main[data-page="cart"] #lower #checkoutItems #discount button {
	font-size: 0.9rem;
	font-weight: 400;
	background-color: var(--grey);
	border: none;
	border-radius: var(--standard-radius);
	padding: 0.5rem 1rem;
}
main[data-page="cart"] #lower #checkoutItems #checkout {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0.85rem 1.25rem;
	margin-top: 1.25rem;
	font-size: 1.65rem;
	font-weight: 500;
	background-color: var(--green);
	color: var(--text-light);
	border: none;
	border-radius: var(--standard-radius);
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #checkout {
		width: 100%;
		font-size: 1.25rem;
		padding: 1rem 1.5rem;
	}
}
main[data-page="cart"] #lower #checkoutItems #paymentMethods {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	margin-top: 1rem;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #paymentMethods {
		margin-top: 0.5rem;
	}
}
main[data-page="cart"] #lower #checkoutItems #paymentMethods img {
	max-width: 3rem;
	max-height: 2rem;
	width: auto;
	height: auto;
}
@media (max-width: 768px) {
	main[data-page="cart"] #lower #checkoutItems #paymentMethods img {
		max-width: 2rem;
		max-height: 1.5rem;
	}
}
/* END CART */
