
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
:root{
	--bg-color: #ffffff;
	--text-color: #111111;
	--main-color: #ff0000;
	--big-font: 4.5rem;
	--h2-font: 3.3rem;
	--h3-font: 2rem;
	--normal-font: 1rem;
}
body{
	background: var(--bg-color);
	color: var(--text-color);
}
.shop-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, auto));
	gap: 1.5rem;
	border-radius:20px;
	padding-top:4rem;
  }
  .product-box{
	position: relative;
	border-radius:20px;} 
  .product-box:hover{
	padding: 10px;
	border:1px solid var(--text-color);
	border-radius:20px;
	transition: 0.4s;
  }
  .product-img{
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
	border-radius: 20px;
  }
  .product-title{
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
  }
  
  .price{
	font-weight: 500;
  }
  .add-cart{
	position:absolute;
	bottom: 0;
	right: 0;
	background: var(--text-color);
	color: var(--bg-color);
	padding: 10px;
	cursor:pointer;
  border-radius:15px;
  }
  .add-cart:hover{
	background: hsl(249, 32%, 17%);
  border-radius:15px;
  }
header{
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 20px 14%;
	transition: all .35s ease;
	
}
.logo1{
	font-size:20px;
	font-weight:bolder;
	color:#000;
	background-color:#fff6ed;
	padding: 10px;
	margin-right: 10%;
	border-radius: 30px;
}
.logo{
	font-size: 17px;
	font-weight: bolder;
	letter-spacing: 1px;
	color: #fff;
	background-color: #ff0000;
	border-radius:20px;
	padding:10px;
	transition: all .35s ease;
}
.logo:hover{
	font-size: 17px;
	font-weight: bolder;
	letter-spacing: 1px;
	color: #fff;
	background-color: #ff0000;
	border-radius:20px;
	padding:10px;
	transform: translateY(-5px);
}
.navlist{
	display: flex;
}
.navlist a{
	color: var(--text-color);
	font-weight: 600;
	padding: 10px 25px;
	font-size: var(--normal-font);
	transition: all .36s ease;
}
.navlist a:hover{
	color: var(--main-color);
}
.header-icons i{
	font-size: 32px;
	color: var(--text-color);
	margin-right: 20px;
	transition: all .36s ease;
}
.header-icons i:hover{
	color: var(--main-color);
}
.container{
	max-width: 1068px;
	margin: auto;
	width: 100%;
  }
  section{
	padding: 4rem 0 3rem;
  }
  
  header{
	position: fixed;
	top :0;
	left: 0;
	width: 100%;
	background: var(--bg-color);
	box-shadow: 0 1px 4px hsl(0 4% 15% / 10%);
	z-index: 100;
  }
  
  .nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: px 0;
  }
  
  #cart-icon{
	font-size: 1.8rem;
	cursor: pointer;
	font-weight:bolder;
	background-color:#000;
	color:#fff;
	border-radius: 20px;
	padding:10px;
	transition: all .36s ease;
  }
  #cart-icon:hover{
	font-size: 1.8rem;
	cursor: pointer;
	font-weight:bolder;
	background-color:#9B9B9B;
	color:#000;
	border-radius: 20px;
	padding:10px;
	transform: translateY(-5px);
  }
  /*cart*/
  .cart{
	position: fixed;
	top: 0;
	right: -100%;
	width: 360px;
	min-height: 100vh;
	padding:20px;
	background: var(--bg-color);
	box-shadow: -2px 0 4px hsl(0 4% 15% / 10%);
	transition: 0.3s;
	
	  max-height: 500px; /* Adjust this value according to your needs */
	  overflow-y: auto; /* This will add a vertical scrollbar when the content exceeds the max-height */
	
  }
.cart.active{
  right:0;
}
.cart-title{
  text-align: center;
  font-size:1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}
.cart-box{
  display: grid;
  grid-template-columns: 32% 50% 18%;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.cart-img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding:10px;
}
.detail-box{
  display: grid;
  row-gap: 0.5rem;
}
.cart-product-title{
  font-size:1rem;
  text-transform: uppercase;
}
.cart-price{
  font-weight: 500;
}
.cart-quantity{
  border:1px solid var(--text-color);
  outline-color:var(--main-color);
  width: 2.4rem;
  text-align: center;
  font-size:1rem;
  border-radius:5px;
}
.cart-remove{
  font-size:24px;
  color: var(--main-color);
  cursor: pointer;
}
.total{
  display:flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  border-top: 1px solid var(--text-color);
}
.total-title{
  font-size:1rem;
  font-weight: 600;
}
.total-price{
  margin-left: 0.5rem;
}
.btn-buy{
  display: flex;
  margin: 1.5rem auto 0 auto;
  padding: 12px 20px;
  border: none;
  background: #ff0000;
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: all .35s ease;
}
.btn-buy:hover{
  background: var(--text-color);
  transform: translateY(-5px);
}
  #close-cart{
	position: absolute;
	top: 1rem;
	right: 0.8rem;
	font-size: 2rem;
	color: var(--text-color);
	cursor: pointer;
  }
  .section-title{
	font-size: 1.5rem;
	font-weight: 600;
	text-align:center;
	margin-bottom: 1.5rem;
  }
  .shop{
	margin-top: 2rem;
  }
#menu-icon{
	font-size: 34px;
	color: var(--text-color);
	z-index: 10001;
	margin-right: 20px;
	display: none;
}


/*sugerate*/
.productsuggested {
	flex: 0 0 calc(25% - 15px); /* 4 products per row on PC */
	margin-right: 20px;
	background-color: #ffffff;
	padding: 20px;
	border-radius: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column; /* Changed from row to column */
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s; /* Added transition for smooth zooming */
  }
  .productsuggested {
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
  }
  .productsuggested:last-child {
	margin-right: 0;
  }
  
  .productsuggested:hover {
	transform: scale(1.01); /* Zooms in the product a little when hovered */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  
  
  
  h2.product-title{
	color:#000;
	size:2rem;
  }
  #suggested-text {
	font-size: 20px; /* Change the font size */
	font-weight: bold; /* Make the text bold */
	color: #333; /* Change the text color */
	text-align: center; /* Center the text */
	padding: 10px; /* Add some padding */
	background-color: #ffc526; /* Change the background color */
	border-radius: 5px; /* Add rounded corners */
	margin-bottom: 20px; /* Add some margin at the bottom */
  }
  
  
  
  .productsuggested h3 {
	font-size: 14px; /* Adjusted font size */
	margin-bottom: 5px; /* Adjusted margin */
	color: #ffffff;
  }
  
  .productsuggested img {
	width: 50%; /* Adjusted image width */
	height: auto;
	border-radius: 4px;
	margin-right: 5px; /* Added margin to the right of the image */
  }
  
  
  .productsuggested .add-to-cart{
	display: flex;
	margin: 1.5rem auto 0 auto;
	padding: 12px 20px;
	border: none;
	background: #ffbb00;
	color: var(--bg-color);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	border-radius: 20px;
	transition: all .35s ease;
  }
  .productsuggested .add-to-cart:hover{
	background: #ff0000;
	transform: translateY(-5px);
  }

  .cart-product-title{
	font-size:1rem;
	text-transform: uppercase;
  }
  .product-title{
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	background-color: #ffe5d9d0;
	  border-radius: 20px;
	padding: 7px;
  }
  .product-title{
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }  

  .price1{
	font-weight: 500;
	background-color: #ffffff;
	  border-radius: 20px;
	padding: 7px;
	z-index: 1;
  }
  .cart-price{
	font-weight: 500;
  }
  .total-price{
	margin-left: 0.5rem;
  }
  .price{
	font-weight: 500;
	background-color: #ffe5d9d0;
	  border-radius: 20px;
	padding: 7px;
  }
  .price{
    font-size: 16px;
    font-weight: 500;
  }
section{
	padding: 100px 14%;
}
.home{
	min-height: 100vh;
	width: 100%;
	background: url('https://artitech.ro:85/assets/bgmain.png');
	background-size: cover;
	background-position: center top;
	position: relative;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	align-items: center;
	border-radius: 30px;
}

.home-text h1{
	font-size: var(--big-font);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .6rem;
	margin-bottom: 1.4rem;
}
.home-text span{
	font-size: var(--h2-font);
}
.home-text p{
	font-size: var(--normal-font);
	font-weight: 500;
	margin-bottom: 3rem;
	letter-spacing: .2rem;
}
.btn{
	display: inline-block;
	padding: 13px 25px;
	background: rgb(255, 0, 0);
	color: var(--bg-color);
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 600;
	border-radius: 5px;
	transition: all .35s ease;
}
.btn:hover{
	transform: translateY(-5px);
	background: var(--text-color);
}

header.sticky{
	background: #1B1B1B;
	padding: 14px 14%;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.center-text1{
	text-align: center;
	margin-top:20px;
}
.center-text{
	text-align: center;
	background-color:#D4D4D4;
	border-radius:20px;
}
.center-text h2{
	font-size: var(--h3-font);
}
.featured-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, auto));
	gap: 1.3rem;
	align-items: center;
	margin-top: 4rem;
}
.row{
	position: relative;
	transition: all .35s ease;
}
.row img{
	width: 100%;
	height: auto;
}
.fea-text{
	position: absolute;
	top: 40px;
	left: 50px;
}
.fea-text h5{
	font-size: 19px;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}
.fea-text p{
	color: #555;
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 400;
}
.row .arrow{
	position: absolute;
	bottom: 40px;
	left: 50px;
}
.row .arrow i{
	height: 35px;
	width: 35px;
	background: var(--bg-color);
	border-radius: 50%;
	font-size: 20px;
	color: var(--text-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .35s ease;
}
.row:hover{
	transform: scale(0.9) translateY(-5px);
	cursor: pointer;
}
.row:hover i{
	background: var(--main-color);
	color: var(--bg-color);
}

.cta{
	height: 60vh;
	width: 100%;
	background: url('https://artitech.ro:85/assets/banner.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}
.cta-text h6{
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .6px;
	margin-bottom: 14px;
}
.cta-text h4{
	font-size: 3.3rem;
	line-height: 1.2;
	letter-spacing: .6rem;
	margin-bottom: 30px;
}

.new-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 1.3rem;
	align-items: center;
	margin-top: 0rem;
	text-align: center;
}
.box{
	position: relative;
	transition: all .40s ease;
}
.box img{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 20px;
}
.box h5{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.box h6{
	font-size: 16px;
	font-weight: 700;
}
.sale{
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 30px;
	background: var(--main-color);
	color: var(--bg-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}
.box:hover{
	transform: scale(0.9) translateY(-5px);
	cursor: pointer;
}

.brand{
	padding: 50px 14%;
}
.brand-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
	gap: 2rem;
	align-items: center;
	justify-content: center;
}
.main img{
	width: 100%;
	height: auto;
	opacity: 0.6;
	transition: all .35s ease;
	cursor: pointer;
}
.main img:hover{
	opacity: 1;
}

.contact{
	background: var(--text-color);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
}
.main-contact h3{
	font-size: 23px;
	margin-bottom: 1.6rem;
	color: var(--bg-color);
	
}
.main-contact h5{
	font-size: 15px;
	font-weight: 600;
	color: #555;
}
.right-items{
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
  }
.icons{
	display: flex;
	margin-top: 2rem;
}
#account-icon{
	font-size: 1.8rem;
	cursor: pointer;
	display: flex;
	background-color: #fff;
	padding: 10px;
	border-radius: 50%;
  }
.icons i{
	font-size: 25px;
	margin-right: 1rem;
	color: #555;
	transition: all .35s ease;
}
.icons i:hover{
	color: var(--bg-color);
	transform: scale(1.1) translateY(-5px);
}
.main-contact li{
	margin-bottom: 15px;
}
.main-contact li a{
	display: block;
	color: #555;
	font-size: var(--normal-font);
	font-weight: 600;
	transition: all .35s ease;
}
.main-contact li a:hover{
	transform: translateX(-8px);
	color: var(--bg-color);
}

.last-text{
	text-align: center;
	padding: 20px;
	background: var(--text-color);
}
.last-text p{
	color: #555;
	font-size: 14px;
	letter-spacing: 1px;
}

.top{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
}
.top i{
	font-size: 22px;
	color: var(--bg-color);
	padding: 14px;
	background: var(--main-color);
	border-radius: 2rem;
}


@media (max-width: 1000px){
	header{
		padding: 7px 4%;
		transition: .2s;
	}
	header.sticky{
		padding: 14px 4%;
		transition: .2s;
	}
	section{
		padding: 80px 4%;
		transition: .1s;
	}
}

@media (max-width: 670px){
	#menu-icon{
		display: block;
		cursor: pointer;
	}
	.header-icons{
		display: inline-flex;
	}
	.navlist{
		position: absolute;
		top: 100%;
		left: -100%;
		width: 280px;
		height: 120vh;
		background: var(--bg-color);
		display: flex;
		align-items: center;
		flex-direction: column;
		padding: 150px 30px;
		transition: all .45s ease;
	}
	.navlist a{
		display: block;
		margin: 1.2rem 0;
	}
	.navlist.open{
		left: 0;
	}
}

@media only screen and (max-width: 700px) {



	.featured-content{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(130px, auto));
		gap: 1.3rem;
		align-items: center;
		margin-top: 4rem;
		margin-right:4rem;
	}
	.row{
		position: relative;
		transition: all .35s ease;
	}
	.row img{
		width: 100%;
		height: auto;
	}
	.fea-text{
		position: absolute;
		top: 40px;
		left: 50px;
	}
	.fea-text h5{
		font-size: 13px;
		letter-spacing: 2px;
		margin-bottom: 1rem;
		background-color: #fff;
		border-radius: 20px;
	}
	.fea-text p{
		background-color: #ff0202;
		padding:6px;
		color: #fff;
		border-radius: 20px;
		font-size: 15px;
		letter-spacing: 1px;
		font-weight: 400;

	}
	.row .arrow{
		position: absolute;
		bottom: 40px;
		left: 50px;
	}
	.row .arrow i{
    display: none;
	}






	.shop-content{
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(130px, auto));
	  gap: 1.5rem;
	  border-radius:20px;
	  
	}
	.product-box{
	  position: relative;
	  border-radius:20px;} 
	.product-box:hover{
	  padding: 10px;
	  border:1px solid var(--text-color);
	  border-radius:20px;
	  transition: 0.4s;
	}
	.product-img{
	  width: 100%;
	  height: auto;
	  margin-bottom: 0.5rem;
	  border-radius: 20px;
	}
	.product-title{
	  font-size: 0.9rem;
	  font-weight: 600;
	  text-transform: uppercase;
	  margin-bottom: 0.5rem;
	}
	
	.price{
	  font-size: 16px;
	  font-weight: 500;
	}
	.logo{
		display: none;
	}
	.cta{
		
		height: 60vh;
		width: 100%;
		background: url('https://artitech.ro:85/assets/banner.png');
		background-size: cover;
		background-position: right;
		display: flex;
		align-items: center;
	}
	.cta-text h6{
		font-size: 17px;
		font-weight: 500;
		letter-spacing: .6px;
		margin-bottom: 14px;
	}
	.cta-text h4{
		background-color: #ffffff69;
		border-radius: 20px;
		font-size: 3.3rem;
		line-height: 1.2;
		letter-spacing: .6rem;
		margin-bottom: 30px;
	}
	
}