/********************************Start Menu Style*****************************/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
.wrapper{
	width: 100%;
}
.nav-bar{
	width: 100%;
	height: 80px;
	padding: 10px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
}
.humburger{
	display: none;
}
.nav-bar-left a{
	font-family: Copperplate, "Copperplate Gothic Light", fantasy;
	font-size: 35px;
	color: #11c1f4;
}
.nav-bar-right ul li{
	display: inline-block;
	width: 90px;
	text-align: center;
}
.nav-bar-right ul li a{
	color: #11c1f4;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
	transition: all 0.5s ease;
}
.nav-bar-right ul li a:hover{
	color: #000;
}
@media screen and (max-width: 800px){
	.nav-bar{
		flex-direction: column; 
		height: auto;
		align-items: center;
	}
	.humburger{
		display: block;
		cursor: pointer;
		position: absolute;
		top: 20px;
		right: 20px;
	}
	.nav-bar-left a{
		font-size: 24px;
	}
	.nav-bar-right ul li{
		display: block;
		padding: 10px;
	}
	.nav-bar-right{
		display: none;
	}
}
.nav-bar-right.active{
	display: block;
}

/********************************End Menu Style*****************************/

/**************************Start image-slider Style*******888888************/
.image-slider{
	height: 500px;
	width: 100%;
}
#slider{
	overflow: hidden;
}
#slider figure{
	position: relative;
	width: 500%;
	margin: 0;
	left: 0;
	animation: 20s slider infinite;	
}
#slider figure img{
	width: 20%;
	float: left;
}
@keyframes slider{
	0%{
		left: 0;
	}
	20%{
		left: 0;
	}
	25%{
		left: -100%;
	}
	45%{
		left: -100%;
	}
	50%{
		left: -200%;
	}
	70%{
		left: -200%;
	}
	75%{
		left: -300%;
	}
	95%{
		left: -300%;
	}
	100%{
			left: -400%;
		}
	}

/********************************End Image-Slider Style************************/


/******************************Start Welcome Style****************************/
#welcome-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

#welcome-title h1 {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ff4d00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 🔸 Main Welcome Section */
#welcomme-text {
  margin-top: 20px;
  text-align: center;
}

/* Big Heading */
#welcomme-text h1 {
  font-size: 80px;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(90deg, #ff512f, #f09819);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* Subheading */
#welcomme-text h4 {
  color: #333;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/* Paragraph */
#welcomme-text p {
  font-family: "Open Sans", sans-serif;
  color: #444;
  padding-top: 10px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}







/***************************Start Footer Style*******************************/
#footer{
	text-align: center;
	background: #535153;
	font-family: Papyrus, fantasy;
	color: #fff;
	padding-top: 50px;
	letter-spacing: 2px;
}
#footer h1{
	text-align: center;
	color: #fff;
	font-family: Papyrus, fantasy;
	font-size: 50px;
}
#footer .row{
	margin: 0 20px;
	margin-top: 50px;
}
#footer-col-1 h3{
	font-size: 28px;
	font-family: fantasy;
}
#footer-col-2 h3{
	font-size: 28px;
	font-family: fantasy;
}
#footer-col-3 h3{
	font-size: 28px;
	font-family: fantasy;
}
#footer-col-4 h3{
	font-size: 28px;
	font-family: fantasy;
}
#footer-col-1 p{
	margin-top: 30px;
}
#footer-col-2 p{
	margin-top: 30px;
}
#footer-col-3 p{
	margin-top: 30px;
}
#footer-col-4 p{
	margin-top: 30px;
}
.pr a{
	color: #fff;
	margin-top: 10px;
}
.pr a:hover{
	color: #000;
}
/****************************End Footer Style*******************************/


/***************************Login page Style*******************************/
.login_form{
	height: 600px;
	width: 100%;
	background: #cdd8e5;
}
#wrapper{
	/*margin-top: 50px;*/
	max-width: 350px;
	width: 100%;
	background: #fff;
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 0 0 3px rgba(15,181,216,0.6);
}
#wrapper .top{
	padding: 40px;
	text-align: center;
	position: relative;
}
#wrapper .top h1{
	margin-bottom: 20px;
	color:  #e62e2e;
	font-family: Papyrus, fantasy;
	font-weight: bold;
	font-size: 50px;
}
#wrapper .top .input_field{
	margin-bottom: 12px;
}
#wrapper .top .input_field input[type="text"],[type="password"]{
	width: 100%;
	background: #cdd8e5;
	border: 0;
	padding: 12px;
	padding-left: 20px;
	border-radius: 25px;
}
#wrapper .top .btn{
	background:  #e62e2e;
	margin-top: 20px;
	padding: 12px;
	width: 100%;
	border-radius: 25px;
	cursor: pointer;
}
#wrapper .top .btn input[type="submit"]{
	color: #fff;
	background:  #e62e2e;
	border: none;
	letter-spacing: 3px;
	font-size: 20px;
}
#wrapper .bottom{
	background: #e62e2e;
	padding: 30px;
}
#wrapper .bottom span a{
	color: white;
	letter-spacing: 1px;
}
/****************************End Login Style*********************/

/************************Sign Up Style**************************/
.signup_form{
	
	height: 800px;
	background: #cdd8e5;
}
#wrapper_sign{
	margin-top: 50px;
	max-width: 380px;
	width: 100%;
	background: #fff;
	position: absolute;
	top: 73%;
	left: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 0 0 3px rgba(15,181,216,0.6);
}
#wrapper_sign .top_sign{
	padding: 40px;
	text-align: center;
	position: relative;
}
#wrapper_sign .top_sign h1{
	margin-bottom: 20px;
	color:  #e62e2e;
	font-family: Papyrus, fantasy;
	font-weight: bold;
	font-size: 50px;
}
#wrapper_sign .top_sign .input_field{
	margin-bottom: 12px;
}
#wrapper_sign .top_sign .input_field input[type="text"],[type="password"]{
	width: 100%;
	background: #cdd8e5;
	border: 0;
	padding: 12px;
	padding-left: 20px;
	border-radius: 25px;
}
#wrapper_sign .top_sign .btn{
	background:  #e62e2e;
	margin-top: 20px;
	padding: 12px;
	width: 100%;
	border-radius: 25px;
	cursor: pointer;
}
#wrapper_sign .top_sign .btn input[type="submit"]{
	color: #fff;
	background:  #e62e2e;
	border: none;
	letter-spacing: 3px;
	font-size: 20px;
}
#wrapper_sign .bottom{
	background:  #e62e2e;
	padding: 30px;
}
#wrapper_sign .bottom span{
	color: #fff;
}
#wrapper_sign .bottom span a{
	color: rgb(250, 250, 254);
	letter-spacing: 1px;
}

/****************************End Sign up Style********************/

/***************************Contact Us Page Style*********************/
/* 🌿 Contact Section */
.contact_form {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* 🌿 Contact Form Box */
.contactus {
  background: #fff;
  width: 100%;
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-in-out;
  position: relative;
}

/* 🌿 Title */
.contactus h1 {
  color: #222;
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
}

.contactus h1::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #E62E2E;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* 🌿 Input Fields */
.con_input_field {
  width: 100%;
  margin-top: 20px;
}

.con_input_field input,
.con_input_field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #444;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: 0.3s ease;
}

.con_input_field input:focus,
.con_input_field textarea:focus {
  border-color: #E62E2E;
  background: #fff;
  box-shadow: 0 0 8px rgba(230, 46, 46, 0.2);
}

/* 🌿 Button */
.con_btn {
  display: inline-block;
  background: #E62E2E;
  color: #fff;
  padding: 14px 35px;
  border: none;
  outline: none;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  transition: 0.4s ease;
  margin-top: 25px;
  float: right;
  cursor: pointer;
}

.con_btn:hover {
  background: #fff;
  color: #E62E2E;
  border: 2px solid #E62E2E;
  box-shadow: 0 8px 20px rgba(230, 46, 46, 0.2);
}

/* 🌿 Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🌿 Responsive Design */
@media (max-width: 768px) {
  .contactus {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .contactus h1 {
    font-size: 22px;
  }

  .con_btn {
    width: 100%;
    text-align: center;
    float: none;
  }
}

@media (max-width: 480px) {
  .contactus {
    padding: 30px 20px;
  }

  .contactus h1 {
    font-size: 20px;
  }

  .con_input_field input,
  .con_input_field textarea {
    font-size: 15px;
    padding: 12px;
  }
}

/***********************EndContact Us Page Style*********************/

/************************About us PAge STyle***********************/
.aboutus{
	background: #81c644;
}
.aboutus .about{
	height: 300px;
	width: 100%;
}
.aboutus h1{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 100px;
	font-family: initial;
}
.team{
	display: flex;
	text-align: center;
	justify-content: center;
}
.team .team_member{
	background: #fff;
	margin: 5px;
	margin-bottom: 50px;
	width: 300px;
	padding: 25px;
	line-height: 25px;
	color: gray;
	position: relative;
}
.team .team_member h3{
	color: #81c644;
	font-size: 26px;
	margin-top: 50px;
}
.team .team_member p.role{
	color: #ccc;
	font-size: 14px;
	text-transform: uppercase;
	margin: 12px 0;
}
.team .team_member .team_img{
	border-radius: 50%;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translate(-50%);
	background: #fff;
}
.team .team_member .team_img img{
	width: 100px;
	height: 100px;
	padding: 5px;
}

/************************End About us PAge STyle***********************/


/**************************Review style page*********************/
.review{
	background: #ccc;
	height: 100%;
	width: 100%;
	padding-bottom: 50px;
	padding-top: 50px;
}
#review_page{
	background: #f9f9f9;	
}
#review_page .review_table{
	background: #fff;
	border-bottom: 3px solid gray;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
}
#review_page .review_table tr,th,td
{
	padding: 15px;
	border: 1px solid lightgray;
}
/*************************End Review style page************************/


/**************************SHow Cartt********************/
.cart_container_fluid{
	background: #8f8f8f;
	width: 100%;
	height: 100%;
}
#add_cart_container{
	
}
#add_cart_col{
	width: 100%;
	background: #fff;
	border-radius: 10px;
	margin: 20px 0;
	padding: 20px;
}
.add_cart_table td p{
	float: right;
}
.add_cart_table td p a{
	margin: 20px;
	text-decoration: none;
	background: green;
	color: #fff;
	padding: 15px;
	border-radius: 3px;
}
/**************************End SHow Cartt********************/

/**********************buy_cart_all************************/

.buy_all_fluid{
	background: #8f8f8f;
	width: 100%;
	height: 100%;
	padding: 30px;
}

.buy_cart_all{
	background: #fff;
}
.buy_all_col{
	width: 100%;
	background: #fff;
	display: flex;
	padding: 20px;
}
.buy_user_details{
	width: 50%;
	padding: 20px;
	border: 1px solid lightgray;
}
.buy_user_details .edit_details_div{
	text-align: center;
	padding-top: 50px;
}

.buy_product_details{
	width: 50%;
	padding: 20px;
	border: 1px solid lightgray;
}
.checkout_a{
	padding: 20px 0px;
	padding-left: 38%;
}
.checkout_a a{
	margin-left: 30px;
}

/*******************End buy_cart_all************************/

/*********CHECK OUT STYLE************************/

.checkout_main_div{
	background: #f8f8f8;
	height: 100%;
	width: 100%;
	padding: 50px;
}
.check_out_col{
	background: #fff;
	border-bottom: 5px solid purple;
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}

/*********************VIEW MORE STYLE**********************/

