/* google fonts */

@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 {
  --main-color: #ff0000;
  --text-color: #000;
  --bg-color: #fff;
}
body {
    font-family: Arial, sans-serif;
    background-image: url('https://artitech.ro:85/assets/bgmain.png');
    margin: 0;
    padding: 0;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
  }


body::before,
body::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  filter: blur(10px);
}

body::before {
  top: 0;
  background-attachment: fixed;
}

body::after {
  bottom: 0;
  background-attachment: fixed;
}

h1 {
	font-size: 25px;
	text-align: center;
	color: #ffffff;
	margin-top: 50px;
}
table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 50px;
}
th, td {
	text-align: left;
	padding: 8px;
	border-bottom: 1px solid #ddd;
	font-size: 18px;
	color: #333;
}
tr:hover {
	background-color: #f5f5f5;
}
#orders {
	margin: 30px auto;
	max-width: 60%;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
#orders p {
	font-size: 20px;
	color: #333;
	text-align: center;
}
#pagination {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 20px;
}
.video-container video {
  background-color: transparent;
  width: 412px;
  height: 126px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  margin-right:20px;
  margin-bottom:3rem;
  cursor: pointer;
  border-radius: 10px 30px 10px 30px;
}


.video-container video::-webkit-media-controls {
  display:none !important;
}

.video-container video::-webkit-media-controls-enclosure {
  display:none !important;
}

.video-container video::-webkit-media-controls-panel {
  display:none !important;
}

.video-container video::-webkit-media-controls-play-button {
  display:none !important;
}

.video-container video::-webkit-media-controls-timeline {
  display:none !important;
}

.video-container video::-webkit-media-controls-volume-slider {
  display:none !important;
}

.video-container video::-webkit-media-controls-mute-button {
  display:none !important;
}
.page-button {
  background-color: #ff0000;
  border: none;
  color: white;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.page-button.active {
  background-color: #008CBA;
}

.page-button:hover:not(.active) {
  background-color: #ddd;
}


.banner {
  background-color: #ffd966;
  text-align: center;
  font-size: 18px; 
  font-weight: bold;
  white-space: nowrap;
  padding:7px;
  overflow: hidden;
}
.banner p {
  display: inline-block;
  padding-right: 100%;
  animation: banner-animation 20s linear infinite;
}
@keyframes banner-animation {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-30%);
  }
}
.container{
    max-width: 1068px;
    margin: auto;
    width: 100%;
  z-index: 9997;}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 25px;
    z-index:9998;
  }
.right-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-items{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#account-icon{
  margin-right: 10px;
}
.logo{
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
    white-space: nowrap;
}

#cart-icon{
  font-size: 1.8rem;
  cursor: pointer;
}
#account-icon{
  font-size: 1.8rem;
  cursor: pointer;
}
#delivery-icon{
  font-size: 1.5rem;
  cursor: pointer;
  
}
#week-icon{
  font-size: 1.5rem;
  cursor: pointer;
}
#card-icon{
  font-size: 1.5rem;
  cursor: pointer;
}
#all-icon{
  font-size: 1.5rem;
  cursor: pointer;
}
#contact-icon{
  font-size: 1.5rem;
  cursor: pointer;
}
/*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 */
  z-index: 9999;
}
.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;
}
/*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;
  }
.comenzilemele {
  margin: 40px auto;
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: center;
  background-color:  #ff0004;
  border-radius: 20px;
}

@media only screen and (max-width: 500px) {

.left-items{
  display:none;
}
.hidethis{
  display: none;
}
.meniu-categorii{
  display: none;
}


.banner {
	background-color: #ffd966;
	text-align: center;
	padding: 4px; 
	font-size: 18px; 
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
  }

  .banner p {
    display: inline-block;
    padding-right: 100%;
    animation: banner-animation 20s linear infinite;
  }

  @keyframes banner-animation {
    0% {
      transform: translateX(40%);
    }
    100% {
      transform: translateX(-80%);
    }
  }
  #orders{
    max-width: 100%;
  }
  th, td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    font-size: 7px;
    color: #333;
    font-style: bold ;
  }
}


@media only screen and (max-width: 1000px) {

  .left-items{
    display:none;
  }
  .hidethis{
    display: none;
  }
  .meniu-categorii{
    display: none;
  }
  
  
  .banner {
    background-color: #ffd966;
    text-align: center;
    padding: 4px; 
    font-size: 18px; 
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
    }
  
    .banner p {
      display: inline-block;
      padding-right: 100%;
      animation: banner-animation 20s linear infinite;
    }
  
    @keyframes banner-animation {
      0% {
        transform: translateX(40%);
      }
      100% {
        transform: translateX(-80%);
      }
    }
    #orders{
      max-width: 100%;
    }
    th, td {
      text-align: left;
      padding: 8px;
      border-bottom: 1px solid #ddd;
      font-size: 7px;
      color: #333;
    }
  }


  @media only screen and (max-width: 1500px) {

 

      #orders{
        max-width: 100%;
      }
      th, td {
        text-align: left;
        padding: 8px;
        border-bottom: 1px solid #ddd;
        font-size: 7px;
        color: #333;
        font-style: bold ;
      }
    }