* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;

}

body {
	background-color: #ffffff;
}


ul li:hover .material-symbols-outlined {
	opacity: 0;
}


ul {
	position: relative;
	display: flex;
	gap: 30px;
}

ul li {
	position: relative;
	list-style: none;
	width: 50px;
	height: 50px;
	border-radius: 72px;
	background: #bebebe;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 2px #fff;
	transition: 300ms;
}

.none {
	text-decoration: none;
	color: inherit;
}

ul li:hover {
	width: 160px;
	box-shadow: 0 0 0 2px var(--bg-color);
}

ul li::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 32px;
	background: var(--bg-color);
	opacity: 0;
	transition: 300ms;
}

ul li:hover::before {
	opacity: 1;
}

ul li span {
	position: absolute;
}

ul li i {
	color: #fff;
	font-size: 2em;
	transition: 300ms;
	transition-delay: 150ms;
}

ul li .text {
	color: #1e1e1e;
	font-size: 1.5em;
	z-index: 1;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.024em;
	opacity: 0;
	transition: 300ms;
	letter-spacing: -0.125px;
}

ul li:hover .text {
	opacity: 1;

}

h1 {
	font-size: 50px;
	line-height: 64px;
	color: #222;
}

h2 {
	font-size: 46px;
	line-height: 54px;
	color: #222;
}

h4 {
	font-size: 20px;
	color: #222;
}

h6 {
	font-weight: 700;
	font-size: 12px;
}

p {
	font-size: 16px;
	color: #465b52;
	margin: 15px 0 20px 0;
}

.section-p1 {
	padding: 40px 80px;
}

.section-ml {
	margin: 40px 0;
}

body {
	width: 100%;

}

#header {
	display: flex;
	background-color: rgb(44, 46, 45);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.30);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}

.nav {
	padding: 22px 0px;
	position: absolute;
	left: 67%;
}


/* search bar */


.search-container {
	display: flex;
	justify-content: center;
	justify-items: center;
	margin-top: 30px;
	margin-bottom: 30px;
	position: absolute;
	left: 25%;
}

.search-input {
	padding: 15px;
	width: 420px;
	border: 1px solid #ccc;
	border-radius: 30px;
	outline: none;
}

.search-button {
	padding: 10px 20px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	margin-left: 10px;
}

.search-button:hover {
	background-color: #64cb67;
}



/* hero  */
#hero {
	background-image: url(wepik-export-20231001123240ZAlA.png);
	width: 100%;
	height: 90vh;
	background-size: cover;
	background-position: top 25% right 0;
	padding: 0 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

#hero h4 {
	font-size: 30px;
	padding-bottom: 15px;
}

#hero h1 {
	color: #076b0a;
}

#hero button {
	padding: 12px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	background-color: #4CAF50;
	border: none;
	border-radius: 20px;

}


#hero button:hover {
	cursor: pointer;
	background-color: #55bb58;
	border: none;
}

#hero span {
	font-size: 35px;
	font-style: italic;
	color: transparent;
	-webkit-text-stroke: 2px rgb(0, 0, 0);
}

.categories h2 {
	display: flex;
	justify-content: center;
	padding-top: 25px;
}



/* products */

#product-container {
	margin-top: 8px;
	background-color: white;
	text-align: center;
	padding-top: 25px;
}

.product-container {

	justify-content: space-around;
	display: flex;
	padding-top: 25px;
}

.material-symbols-outlined {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

#empty_star {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

.product {
	width: 300px;
	height: 400px;
	object-fit: cover;
	border: 1px solid #ccc;
	border-radius: 20px;
	margin: 20px;
	padding: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	transition: 0.3s;
}

.product img {
	border-radius: 20px;
	width: 100%;
	height: 75%;
	object-fit: cover;
}

.product:hover {
	transform: scale(0.9);
}

.product-description {
	object-fit: cover;
	margin-top: 5px;
}

.product .price h5 {
	color: #555555;
	padding-top: 4px;
}

.product .price {
	display: flex;
	justify-content: center;
	gap: 5px;
}

.product:hover {
	box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
}

.product img:hover {
	cursor: pointer;
}

.product-cart {
	padding-top: 7px;
	width: 40px;
	height: 40px;
	line-height: 50px;
	border-radius: 50px;
	background-color: #bebebe;
	font-weight: 500;
	color: #076b0a;
	position: absolute;
	bottom: 7px;
	right: 10px;
}

#product-container button {
	margin-top: 25px;
	margin-bottom: 5px;
	border-radius: 25px;
	border: none;
	background-color: #c3bdbd;
	padding: 10px 10px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
}


#product-container .arrow {
	color: #464545;
	font-size: 50px;
	position: relative;
	top: 8px;
}

#product-container button:hover {
	background-color: #817e7e;
}




/* footer */
.footer {
	width: 100%;
	background-color: rgb(24, 23, 23);
}

#col {
	width: 100%;
	display: flex;
	line-height: 0.6em;
}

.footer .col h4 {
	color: #878787;
	font-size: 18px;

}

.col {
	margin-top: 5px;
	padding-top: 20px;
	padding-left: 10px;
	height: auto;
	width: 25%;
}

.footer .col p {
	color: #fff;
	font-weight: 100;
}

.footer .col p strong {
	color: #a9a9a9;
}

.social-media {
	margin-top: 8px;

}

#col-2,
#col-3,
#col-4 {
	text-align: center;
}

#col-1 {
	line-height: 1.2em;
	margin-left: 5%;
}

#col-2 {
	margin-left: 5%;
}

#col-2,
#col-3,
#col-4 {
	width: 15%;
	margin-right: 5%;
}

hr {
	color: white;
	width: 50%;
}

.footer-end {
	text-align: center;
	color: #ffffff;
}

.footer-end hr {
	margin-left: 25%;
}

.top h3 a{
	text-decoration: none;
}
.top h3 a:visited{
	color: #ffffff;
}
.top h3{
	background-color: #323232;
	color: #ffffff;
	text-align: center;
	
}



#pagination{
	background-color: #ffffff;
	text-align: center;
    margin-top: 20px;
    margin-bottom: 17px;
}

#pagination a{
	text-decoration: none;
	background-color: #076b0a;
	padding: 11px 20px;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
    display: inline;
}
#pagination a .next{
color: white;
font-size: 25px;
font-weight: 600;
}

/* sproduct */
#prodetails{
	display: flex;
	margin-top: 30px;
	margin-left: 20px;
}

#prodetails .single-pro-image{
    width: 40%;
    margin-right: 50px;
}
.small-img-group{
    display: flex;
    justify-content: space-between;
}
#prodetails .small-img-col{
	flex-basis: 24%;
	cursor: pointer;
}

#prodetails .single-pro-details{
	width: 50%;
	padding-top: 30px;
}
#prodetails .single-pro-details h4{
padding: 40px 0 20px 0;
}
#prodetails .single-pro-details h2{
font-size: 26px;
}
#prodetails .single-pro-details select{
	display: block;
	padding: 5px 10px;
	margin-bottom: 10px;
}
#prodetails .single-pro-details input{
	width: 50px;
	height: 47px;
	padding-left: 10px;
	font-size: 16px;
	margin-right: 10px;
}
#prodetails .single-pro-details input:focus{
	outline: none;
}
#prodetails .single-pro-details button{
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	font-family: 'Arial', sans-serif;
	display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #3498db;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;

}
#prodetails .single-pro-details button:hover{
	background-color: #2980b9;
}
#prodetails .single-pro-details span{
	line-height: 25px;
}