* {
	padding: 0;
	margin: 0;
	text-decoration: none;
}

@font-face {
	font-family: "kumbh";
	src: url(Kumbh_Sans/KumbhSans-VariableFont_YOPQ\wght.ttf);
}
@font-face {
	font-family: "kumbh-medium";
	src: url(Kumbh_Sans/static/KumbhSans-Medium.ttf);
}
@font-face {
	font-family: "kumbh-Bold";
	src: url(Kumbh_Sans/static/KumbhSans-Bold.ttf);
}
@font-face {
	font-family: "kumbh-regular";
	src: url(Kumbh_Sans/static/KumbhSans-Regular.ttf);
}

body {
	margin: auto;
	padding-top: 30px;
	width: 80%;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding-bottom: 2rem; */
	* {
		font-family: "kumbh";
	}
}
.left-nav {
	display: flex;
	justify-content: flex-start;
}
.links {
	display: flex;
	height: 65px;
	padding: 0 1.5rem;
	a {
		color: hsl(219, 9%, 45%);
		margin: 0 1rem;
	}
}
.link-hover {
	color: red;
	display: block;
	position: relative;
	p {
		height: 5%;
		margin: 1rem;
		margin-bottom: 0;
		padding-bottom: 0;
		position: absolute;
		top: 72%;
		width: 60%;
	}
	
}
.bg-orange{
	background-color: hsl(26, 100%, 55%);
}

.right-nav {
	display: flex;
	justify-content: space-between;
	height: 65px;
}
hr {
	opacity: 0.3;
	padding: 0;
	margin: 0;
}
.cart-icon {
	position: relative;
	img {
		padding-top: 15px;
		&:hover {
			cursor: pointer;
		}
	}
}
.bag-img {
	margin: 0 -120%;
}
.bag-count {
	background-color: hsl(26, 100%, 55%);
	border-radius: 40%;
	color: #ffffff;
	font-size: 0.7rem;
	left: -77%;
	padding: 0 6px;
	position: absolute;
	top: 15%;
}
.avatar img {
	height: 50px;
	width: 50px;
	border-radius: 100%;
	border: 3px solid hsla(26, 100%, 55%, 0);
	&:hover{
		border-radius: 100%;
		border: 3px solid hsl(26, 100%, 55%);
		cursor: pointer;
	}
}

/* MAIN */
main {
	display: flex;
	padding: 5rem 3.13rem;
}
#images {
	width: 60%;
}
.main-image {
	img {
		border-radius: 3%;
		height: 25rem;
		width: 25rem;
		&:hover {
			cursor: pointer;
		}
	}
}
.hidden {
	display: none;
}
.active {
	img {
		opacity: 0.4;
		padding: 0;
	}
	border: 2px solid hsl(26, 100%, 55%, 1);
	border-radius: 10%;
	padding: 0;
	height: 4.375rem;
	width: 4.375rem;
}
.un-opac {
	img {
		border-radius: 10%;
	}
	border-radius: 10%;
	height: 4.375rem;
	width: 4.375rem;
}
.image-thumbnail {
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
	width: 25rem;
	img {
		height: 4.5rem;
		width: 4.5rem;
		&:hover {
			cursor: pointer;
		}
	}
}

/* DESCRIPTION */
#description {
	padding: 3.13rem 0;
	padding-left: 2rem;

	.description-container {
		max-width: 63%;
	}
	p {
		font-family: "kumbh-medium";
		color: hsl(219, 9%, 45%);
	}
	.decrip {
		color: hsl(219, 9%, 45%);
		font-family: "kumbh-medium";
		font-size: 0.75rem;
		line-height: 1.2rem;
	}
	h1 {
		font-family: "kumbh-Bold";
		font-size: 2rem;
		padding: 1.5rem 0;
	}
	.price {
		font-size: 1.2rem;
		padding-bottom: 1rem;
		span {
			color: #ffffff;
			background-color: black;
			border-radius: 5px;
			font-size: 0.8rem;
			margin-left: 0.63rem;
			padding: 3px 8px;
		}
	}
	del {
		text-decoration: line-through;
	}
	.btn {
		display: flex;
		padding: 1rem 0;
		button {
			/* display: none; */
			align-items: center;
			background-color: hsl(26, 100%, 55%);
			border: none;
			border-radius: 0.44rem;
			padding: 0.9rem 2.9rem;
			text-align: center;
			&:hover {
				cursor: pointer;
			}
			img {
				padding: 0 0.5rem;
				height: 0.7rem;
			}
		}
		.buttons {
			margin-right: 10px;
			position: relative;
			* {
				font-size: 1rem;
			}
			button {
				background-color: rgba(245, 222, 179, 0.347);
				display: flex;
				align-items: center;
				&:hover {
					cursor: pointer;
				}
			}
			.increase {
				color: hsl(26, 100%, 55%);
				font-weight: 700;
				position: absolute;
				right: 10%;
			}
			.decrease {
				color: hsl(26, 100%, 55%);
				font-weight: 700;
				position: absolute;
				left: 10%;
			}
		}
	}
}

/* LIGHTBOX */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 100;
}
.lightbox img {
	max-width: 66%;
	max-height: 65%;
	border-radius: 10px;
}

.close,
.prev,
.next {
	position: absolute;
	color: white;
	font-size: 30px;
	cursor: pointer;
	/* user-select: none; */
}
.thumbnails {
	display: flex;
	justify-content: space-between;
	gap: 35px;
	margin-top: 30px;
	img:hover {
		opacity: 0.9;
	}
}
.thumbnails img {
	height: 6.5rem;
	width: 4.5rem;
	cursor: pointer;
	border-radius: 5px;
}
.close {
	font-size: 2rem;
	font-weight: 900;
	top: 20px;
	right: 34.3%;
	&:hover {
		color: hsl(26, 100%, 55%);
	}
}
.prev {
	align-content: center;
	background-color: #ffffff;
	border-radius: 100%;
	color: black;
	font-size: 1.5rem;
	left: 33%;
	height: 50px;
	text-align: center;
	width: 50px;
	bottom: 58%;
	&:hover {
		color: hsl(26, 100%, 55%);
	}
}
.next {
	align-content: center;
	background-color: #ffffff;
	border-radius: 100%;
	bottom: 58%;
	color: black;
	font-size: 1.5rem;
	height: 50px;
	right: 33%;
	text-align: center;
	width: 50px;
	&:hover {
		color: hsl(26, 100%, 55%);
	}
}

.activeThumb {
	img {
		opacity: 0.4;
		padding: 0;
	}
	border: 2px solid hsl(26, 100%, 55%, 1);
	border-radius: 10%;
	padding: 0;
	height: 70px;
	width: 70px;
	opacity: 0.3;
}

/* *********SHOPPING CART********* */
.cart {
	* {
		font-family: "kumbh-regular";
	}
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: -5px 5px 10px 5px rgba(0, 0, 0, 0.1);
	position: absolute;
	right: -100%;
	top: 100%;
	width: 18rem;
	/* z-index: 100; */
	hr {
		width: 100%;
	}
	button {
		align-items: center;
		background-color: hsl(26, 100%, 55%);
		border: none;
		border-radius: 7px;
		padding: 0.9rem 2.9rem;
		text-align: center;
		width: 100%;
	}
}
.cart-header {
	padding: 1rem;
	h3 {
		font-size: 1rem;
		/* padding: 1rem 0 1.5rem 0; */
	}
}
#cart-items {
	display: flex;
	justify-content: space-between;
	padding: 16px;
}
.cart-item-icon img {
	border-radius: 5px;
	height: 2.5rem;
	padding: 0;
	width: 2.5rem;
}
.checkout {
	padding: 0 1rem 1.5rem 1rem;
}
.descrip-price p {
	color: hsl(219, 9%, 45%);
	font-size: 14px;
	line-height: 1.3rem;
	span {
		color: black;
	}
}
.cart-empty {
	display: flex;
	align-items: center;
	height: 144.8px;
	justify-content: center;
	margin: auto auto;
	text-align: center;
	width: 90%;
}
.clo0se {
	&:hover {
		cursor: pointer;
	}
}
.hidden, .mob-btns, .mobile-main-image{
	display: none;
}

.attribution {
	font-family: "kumbh-medium";
	font-size: 0.8rem;
	padding: 1.5rem;
	text-align: center;
}
