html {
	scroll-behavior: smooth;
}

body {
	font-family: "Lato", sans-serif;
	padding: o;
	margin: 0;
}

/* NavBar starts here */

nav {
	background-color: #111;
	color: #fff;
	padding: 20px 50px;
}

.navTop {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search {
	display: flex;
	align-items: center;
	background-color: gray;
	padding: 10px 20px;
	border-radius: 15px;
	margin-bottom: 20px;
}

.searchInput {
	border: none;
	background-color: transparent;
}

.searchInput::placeholder {
	color: lightgray;
}

.limitedOffer {
	font-size: 20px;
	border-bottom: 2px solid #339966;
	cursor: pointer;
}

.navBottom {
	display: flex;
	justify-content: center;
}

.menuItem {
	margin-right: 50px;
	cursor: pointer;
	color: lightgray;
	font-weight: 400;
}

/*  NavBar Ends Here */
.slider {
	background: url("https://cdn.pixabay.com/photo/2016/10/22/01/54/wood-1759566__340.jpg");
	-webkit-box-shadow: inset 0px 25px 25px -14px rgba(46, 45, 46, 1);
	-moz-box-shadow: inset 0px 25px 25px -14px rgba(46, 45, 46, 1);
	box-shadow: inset 0px 25px 25px -14px rgba(46, 45, 46, 1);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
	overflow: hidden;
}

.sliderWrapper {
	display: flex;
	width: 500vw;
	transition: all 0.5s ease-in-out;
}

.sliderItem {
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sliderTitle {
	position: absolute;
	top: 10%;
	right: 10%;
	font-size: 60px;
	font-weight: 900;
	text-align: center;
	color: white;
	z-index: 1;
}

.sliderBg {
	width: 750px;
	height: 750px;
	border-radius: 50%;
	position: absolute;
}

.sliderImage {
	z-index: 1;
}

.sliderPrice {
	position: absolute;
	top: 10%;
	left: 10%;
	font-size: 60px;
	font-weight: 500;
	text-align: center;
	color: white;
	border: 1px solid gray;
	z-index: 1;
}

.buyButton {
	position: absolute;
	top: 50%;
	right: 10%;
	font-size: 30px;
	font-weight: 900;
	color: white;
	background-color: black;
	border: 1px solid gray;
	cursor: pointer;
	z-index: 1;
}

.buyButton:hover {
	background-color: white;
	color: black;
}

.sliderItem:nth-child(1) .sliderBg {
	background-color: rgb(51, 153, 102);
}
.sliderItem:nth-child(2) .sliderBg {
	background-color: rebeccapurple;
}
.sliderItem:nth-child(3) .sliderBg {
	background-color: teal;
}
.sliderItem:nth-child(4) .sliderBg {
	background-color: cornflowerblue;
}
.sliderItem:nth-child(5) .sliderBg {
	background-color: rgb(129, 81, 81);
}

.sliderItem:nth-child(1) .sliderPrice {
	color: rgb(87, 194, 141);
}
.sliderItem:nth-child(2) .sliderPrice {
	color: white;
}
.sliderItem:nth-child(3) .sliderPrice {
	color: rgb(0, 172, 172);
}
.sliderItem:nth-child(4) .sliderPrice {
	color: rgb(180, 196, 226);
}
.sliderItem:nth-child(5) .sliderPrice {
	color: white;
}

.features {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px;
}

/* Features section stats here */

.feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.featureIcon {
	width: 50px;
	height: 50px;
}

.featureTitle {
	font-size: 20;
	font-weight: 600;
	margin: 20px;
}

.featureDescription {
	color: gray;
	width: 50%;
	height: 100px;
}
/* Features section ends here */

/* Products section starts here */
.product {
	height: 100vh;
	background-color: whitesmoke;
	position: relative;
	clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}
/* Payment sextion starts here */
.payment {
	width: 500px;
	height: 500px;
	background-color: white;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 10px 50px;
	display: none;
	flex-direction: column;
	-webkit-box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.64);
	box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.64);
}

.payTitle {
	font-size: 20px;
	color: rgb(158, 157, 157);
}

label {
	font-size: 15px;
	font-weight: 300;
}

.payInput {
	padding: 10px;
	margin: 10px 0px;
	border: none;
	border-bottom: 1px gray solid;
}

.payInput::placeholder {
	color: rgb(192, 192, 192);
}

.cardIcons {
	display: flex;
}
.cardIcon {
	margin: 0px 10px;
}

.cardInfo {
	display: flex;
	justify-content: space-between;
}

.sml {
	width: 30%;
}

.payButton {
	position: absolute;
	height: 40px;
	bottom: -40;
	width: 100%;
	left: 0;
	border: none;
	background-color: #339966;
	color: white;
	-webkit-box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.64);
	box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.64);
	cursor: pointer;
}

.close {
	width: 20px;
	height: 20px;
	position: absolute;
	background-color: rgb(184, 184, 184);
	color: white;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px;
}

.close:hover {
	background-color: gray;
}

.payButton:hover {
	background-color: #1d8b54;
}
/* Payment sextion ends here */

.productImage {
	width: 50%;
}

.productDetails {
	position: absolute;
	top: 10%;
	right: 0;
	width: 40%;
	padding: 50px;
}

.productTitle {
	font-size: 70px;
	font-weight: 900;
}

.productDescription {
	font-size: 21px;
	color: gray;
}

.colors,
.sizes {
	display: flex;
	margin-bottom: 20px;
}

.color {
	width: 32px;
	height: 32px;
	border-radius: 5px;
	background-color: black;
	margin: 10px;
	cursor: pointer;
}

.color:last-child {
	background-color: darkblue;
}

.size {
	padding: 5px 20px;
	border: 1px solid black;
	margin-right: 10px;
	font-size: 20px;
	cursor: pointer;
}

.productButton {
	float: right;
	padding: 10px 20px;
	background-color: black;
	color: white;
	font-weight: 600;
	cursor: pointer;
}

.productButton:hover {
	background-color: white;
	color: black;
}
/* Products section ends here */

/* Gallery section starts here */
.gallery {
	padding: 50px;
	display: flex;
}

.galleryItem {
	flex: 1;
	padding: 50px;
}

.galleryImage {
	width: 100%;
}
/* Gallery section ends here */

/* New season section start */
.newSeason {
	display: flex;
}

.newSeasonItem {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	background-color: black;
	color: white;
}

.nsImage {
	width: 100%;
	height: 650px;
}

.newSeasonTitle {
	font-size: 40px;
}

.newSeasonButton {
	padding: 15px;
	font-weight: 600;
	cursor: pointer;
}

.newSeasonButton:hover {
	background-color: #339966;
}
/* New season section ends */

/* Footer Section starts */
footer {
	display: flex;
}

.footerLeft {
	flex: 2;
	display: flex;
	justify-content: space-between;
	padding: 50px;
}

.footerMenuTitle {
	font-size: 16px;
}

.fMenuList {
	padding: 0;
	list-style: none;
}

.fListItem {
	margin-bottom: 10px;
	color: gray;
	cursor: pointer;
}

.footerRight {
	flex: 1;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.fInput {
	padding: 5px;
}

.fButton {
	padding: 5px;
	background-color: black;
	color: white;
	cursor: pointer;
}

.fButton:hover {
	background-color: white;
	color: black;
}

.fIcons {
	display: flex;
}

.fIcon {
	width: 20px;
	height: 20px;
	margin-right: 15px;
}

.copyright {
	font-size: 14px;
	font-weight: 300;
}
/* Footer Section ends */

@media screen and (max-width: 480px) {
	nav {
		padding: 20px;
	}

	.search {
		display: none;
	}

	.navBottom {
		flex-wrap: wrap;
	}

	.menuItem {
		margin: 20px;
		font-weight: 700;
		font-size: 20px;
	}

	.slider {
		clip-path: none;
	}

	.sliderImage {
		width: 90%;
	}

	.sliderBg {
		width: 100%;
		height: 100%;
	}

	.sliderTitle {
		display: none;
	}

	.sliderPrice {
		top: unset;
		bottom: -40;
		left: 5;
		background-color: rgb(94, 94, 94);
		font-weight: 300;
	}

	.buyButton {
		top: 5;
		right: 5;
	}

	.features {
		flex-direction: column;
	}

	.product {
		clip-path: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		overflow: auto;
	}

	.productImage {
		width: 80%;
	}

	.productDetails {
		width: 100%;
		padding: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
	}

	.productTitle {
		font-size: 50px;
		margin: 0;
	}

	.productDescription {
		padding-left: 10px;
		padding-right: 10px;
	}

	.productButton {
		margin-bottom: 10px;
	}

	.gallery {
		display: none;
	}

	.newSeason {
		flex-direction: column;
	}

	.newSeasonItem:nth-child(2) {
		padding: 50px;
	}

	footer {
		flex-direction: column;
		align-items: center;
	}

	.footerLeft {
		padding: 20px;
		width: 90%;
	}

	.footerRight {
		padding: 20px;
		width: 90%;
		align-items: center;
		background-color: whitesmoke;
	}

	.fIcons {
		margin-bottom: 10px;
	}

	.copyright {
		font-size: 15px;
	}

	.payment {
		width: 85%;
		padding: 20px;
	}
}

@media screen and (max-width: 920px) {
	.product {
		/* clip-path: none; */
		display: flex;
		/* flex-direction: column; */
		align-items: center;
		overflow: auto;
	}

	.productImage {
		width: 70%;
	}

	.productDetails {
		width: 100%;
		padding: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
	}

	.productTitle {
		font-size: 50px;
		margin: 0;
	}

	.productDescription {
		padding-left: 10px;
		padding-right: 10px;
	}

	.productButton {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 1024px) {
	.product {
		clip-path: none;
		display: flex;
		/* flex-direction: column; */
		align-items: center;
		overflow: auto;
	}

	.productImage {
		width: 55%;
	}

	.productDetails {
		width: 100%;
		padding: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		position: relative;
	}

	.productTitle {
		font-size: 50px;
		margin: 0;
	}

	.productDescription {
		padding-left: 10px;
		padding-right: 10px;
	}

	.productButton {
		margin-bottom: 10px;
	}
}
