/* 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: #fd4646;
  --text-color: #171427;
  --bg-color: #fff;
}



:root {
  --duration: 1.5s;
  --container-size: 250px;
  --box-size: 33px;
  --box-border-radius: 15%;
}

        .custom-link {
          display: inline-block;
          background-image: url('../img/SAL_1.png'); /* Replace 'your-image.png' with your actual image file */
          background-size: 100% 100%;
          width: 12rem; /* Set the width of the image */
          height: 3rem; /* Set the height of the image */
          text-decoration: none; /* Remove default underline */
      }

      /* Define the hover effect */
      .custom-link:hover {
          cursor: pointer; /* Change cursor to pointer on hover */
      }
      .custom-link2 {
        display: inline-block;
        background-image: url('../img/SAL_2.png'); /* Replace 'your-image.png' with your actual image file */
        background-size: 100% 100%;
        width: 12rem; /* Set the width of the image */
        height: 3rem; /* Set the height of the image */
        text-decoration: none; /* Remove default underline */
    }

    /* Define the hover effect */
    .custom-link2:hover {
        cursor: pointer; /* Change cursor to pointer on hover */
    }
.loading-screen {
  position: fixed; /* Set to fixed position */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffe1a9;
  z-index: 9999; /* Ensure it's on top of other content */
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.logo-container3 {
    text-align: center;
    animation: pulse 2s infinite; /* Apply the pulse animation */
}
/* Define the pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1); /* Start with normal size */
    }
    50% {
        transform: scale(1.2); /* Pulse to 120% size halfway through */
    }
    100% {
        transform: scale(1); /* Back to normal size */
    }
}
.container3 {
  width: var(--container-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgb(230, 221, 173);
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(255, 62, 28, 0.4);
}
.📦:nth-child(1) {
  animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #ff641c;
}
.📦:nth-child(3):after {
  background-color: rgb(253, 120, 31);
}
.📦:nth-child(4):after {
  background-color: #fbaf22;
}
.📦:nth-child(5):after {
  background-color: #fbe523;
}

@keyframes slide {
  0% {
    background-color: #ffd417;
    transform: translatex(0vw);
  }
  100% {
    background-color: #fbc923;
    transform: translatex(
      calc(var(--container-size) - (var(--box-size) * 1.25))
    );
  }
}

@keyframes color-change {
  0% {
    background-color: #ff4d17;
  }
  100% {
    background-color: #fbc123;
  }
}

@keyframes flip-1 {
  0%,
  15% {
    transform: rotate(0);
  }
  35%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%,
  20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-2 {
  0%,
  30% {
    transform: rotate(0);
  }
  50%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%,
  35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-3 {
  0%,
  45% {
    transform: rotate(0);
  }
  65%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%,
  50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

@keyframes flip-4 {
  0%,
  60% {
    transform: rotate(0);
  }
  80%,
  100% {
    transform: rotate(-180deg);
  }
}

@keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%,
  65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}






body{
  color: var(--text-color);
  background-image: url('https://artitech.ro:85/assets/bgmain.webp');
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
  .banner {
	background-color: #ffbf00;
	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(80%);
    }
    100% {
      transform: translateX(-30%);
    }
  }
.container{
  max-width: 1068px;
  margin: auto;
  width: 100%;
}
/* Your existing CSS styles */
/* Your existing CSS styles */

.thumbnail-small {
  width: 40px; /* Adjust the width as needed */
  height: 40px; /* Adjust the height as needed */
  object-fit: cover;
  margin-right: 10px;
}
.clear-icon {
  font-size: 35px;
  color: #000000;
  cursor: pointer;
  margin-left: 5px; /* Adjust the spacing as needed */
}

.product-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestions {
  position: absolute;
  width: 30%; /* Set the width to 50% */
  right: 4%; /* Align to the right side */
  top: calc(100% + 5px); /* Adjust the distance from the search bar */
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.page-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-navigation ul {
  display: flex;
  list-style-type: none;
  padding: 0;
}

.page-navigation ul li {
  margin: 0 5px;
}

.page-navigation .page-link {
  text-decoration: none;
  color: black;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.page-navigation .page-link.active {
  background-color: #ff8800;
  color: white;
  border-color: #ff8800;
}

.page-navigation .dots {
  padding: 5px 10px;
}

.pagination-input {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.pagination-input input[type="number"] {
  width: 100px;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.pagination-input button {
  padding: 8px 15px;
  border: 1px solid #ff8800;
  background-color: #ff8800;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
#openButton{
  font-size: 2rem !important;
}
.pagination-input button:hover {
  background-color: #ff5100;
}
.suggestion-item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  left: -30px; /* Adjust the left and right positioning for longer lines */
  right: -30px;
  border: 1px dashed #000000; /* Adjust the color and style of the line */
  
}

.suggestion-item:hover {
  background-color: #ff8800;
}


#products-per-page-slider {
  width: 200px;
}

#products-per-page-slider::-webkit-slider-thumb {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

#products-per-page-slider::-moz-range-thumb {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

#products-per-page-slider::-webkit-slider-runnable-track {
  background-color: #ccc;
  height: 6px;
  border-radius: 3px;
}

#products-per-page-slider::-moz-range-track {
  background-color: #ccc;
  height: 6px;
  border-radius: 3px;
}
#slider-value {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  color: #666;
}
.meniu-categorii{
	display: flex;
	justify-content: center;
    align-items: center;
	align-content: center;
    background-color: #333;
    color: #000;
    padding: 0.1rem;
    box-shadow: 0 1px 4px hsl(0 4% 15% / 10%);
    background-image: url('https://artitech.ro:85/assets/main-conainer.webp');
	
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
}

.sidenav a:not(.closebtn) {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #000000;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #b9b9b9;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #000000;
}
.sidenav .minnumber{
  text-align: center;
}
.sidenav .maxnumber{
  text-align: center;
}
.sidenav .closebtn:hover {
  color: #ff7300;
}
.sale-ribbon {
  position: absolute;
  top: 0;
  right: 0; /* Change from left to right */
  background-color: red;
  color: white;
  padding: 5px;
  transform: rotate(0deg); /* No rotation needed for right side */
  transform-origin: 0 0; /* Origin of the transformation */
  border-radius: 5px;
  animation: colorchange 2s infinite; /* Add animation */
}

/* Define the animation */
@keyframes colorchange {
  0%   {background: red;}
  50%  {background: rgb(255, 94, 0);}
  100% {background: red;}
}
.old-price, .new-price {
  display: inline-block;
  border-radius: 50%; /* Make the background round */
  padding: 5px; /* Add some space around the text */
  
}

.old-price {
  text-decoration: line-through;
  border-radius: 20px;
  padding: 7px;
  
  background-color: #f0f0f0; /* Add a light grey background */
}

.new-price {
  color: red;
  font-weight: 500;
  background-color: #ffe5d9d0;
  border-radius: 20px;
  padding: 7px;
}
.sidenav p:not(.minnumber):not(.maxnumber) {
  color: #000000;
  font-size: 20px;
  padding-left: 32px;
  font-weight: bold;
  border-bottom: 2px solid #ff7300;
  margin-top: 0.5rem;
  border-radius: 5px;
}

.sidenav input[type=range] {
  width: 80%;
  margin: 20px 10%;
  background-color: #d3d3d3;
}

.sidenav input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ff7300;
  cursor: pointer;
}

.sidenav input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff7300;
  cursor: pointer;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-container input[type=number] {
  width: 40%;
  margin: 10px 5%;
  padding: 5px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

.sidenav input[type=checkbox] {
  margin: 0 10px;
}
.openbtn {
  margin-right: 2rem;
  font-size: 30px; /* Change this to any font size you like */
  cursor: pointer;
  color: #ffffff; /* Change this to any color you like */
  text-decoration: none; /* Removes the underline */
  font-family: Arial, sans-serif; /* Change this to any font family you like */
}

.openbtn:hover {
  color: #f1f1f1; /* Change this to any color you like */
}
.sidenav a {
  font-size: 18px; /* Change this to any font size you like */
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  font-size: 36px; /* Change this to any font size you like */
  position: absolute;
  top: 0;
  right: 25px;
  margin-left: 50px;
  color: #818181;
}

.closebtn:hover {
  color: #f1f1f1;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ff7300;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
.search-container {
  padding-top: 7rem;
  display: flex;
  align-items: right;
  justify-content: flex-end;
  background-color: #ffa500;
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}
.containersearch {
  width: 90%; /* Adjust the container width as needed */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.search-input {
  border: none;
  background: none;
  font-size: 16px;
  padding: 8px;
  color: #333;
  outline: none;
}

.search-button {
  background-color: #ff8c00;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #ff751a;
}
.highlighted-collection1 {
  padding-top: 11.5rem;
  margin: 20px auto;
  max-width: 100%;
  text-align: center;
}

.highlighted-collection {
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
}
.highlighted-collection h2 {
  color: #ff8c00;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.products-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #252525;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Adjusted maximum width to fit the whole page */
  z-index:2;
}

.products-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.product {
  flex: 0 0 calc(25% - 15px); /* 4 products per row on PC */
  margin-right: 20px;
  background-color: #000000;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  z-index:2;
}

.product:last-child {
  margin-right: 0;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product h3 {
  font-size: 14px; /* Adjusted font size */
  margin-bottom: 5px; /* Adjusted margin */
  color: #ffffff;
}

.product img {
  width: 100%; /* Adjusted image width */
  height: auto;
  border-radius: 4px;
  margin-bottom: 5px; /* Adjusted margin */
}
/*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);
}





#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);
}
/*aleaaaa noiii*/
.price1{
  font-weight: 500;
  background-color: #ffffff;
	border-radius: 20px;
  padding: 7px;
  z-index: 1;
}
.products-wrapper1 {
  display: flex;
  transition: transform 0.3s ease;
  z-index: 1;
}
.products-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-width: 80%;
  margin: 0 auto; /* Center horizontally */
}


.products-container1::before,
.products-container1::after {
  content: '';
  position: absolute;
  left: -30px; /* Adjust the left and right positioning for longer lines */
  right: -30px;
  top: 0;
  bottom: 0;
  border: 2px dashed #000000; /* Adjust the color and style of the line */
  border-radius: 0px; /* Match the container's border radius */
  z-index: 3;
}

.products-container1::before {
  width: calc(100% + 40px); /* Make the line longer by adding 40px to the width */
  z-index: -1;
}

.products-container1::after {
  width: calc(100% + 40px); /* Make the line longer by adding 40px to the width */
  z-index: -1;
}
.feaured1.h2{
    background-color: #000;
    border-radius: 0px;
    z-index: -1;
}
.product1 {
  flex: 0 0 calc(12.5% - 15px); /* 8 products per row on PC */
  margin-right: 20px;
  background-color: #000000;
  padding: 10px; /* Adjusted padding */
  border-radius: 0px; /* Adjusted border radius */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
}

.product1:last-child {
  margin-right: 0;
  z-index: 9998;
}

.product1:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9998;
}

.product1 h3 {
  font-size: 14px; /* Adjusted font size */
  margin-bottom: 5px; /* Adjusted margin */
  color: #ffffff;
  z-index: 9998;
}

.product1 img {
  width: 90%; /* Adjusted image width */
  height: auto;
  border-radius: 100px;
  margin-bottom: 5px; /* Adjusted margin */
  z-index: 9998;
}

.product-name{
  color: #000000;
  position: relative;
  font-size: 20px;
  font-weight: 300;
  bottom: 7px;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.navigation1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ff8c00;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.feaured{
  background-color: #000;
  border-radius: 20px;
}
.highlighted-collection h2 {
  color: #ff9100;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.arrow:not(:last-child) {
  margin-right: 10px;
}

.arrow:hover {
  background-color: #ff6f00;
}
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav li {
    margin-right: 20px;
  }

  nav li:last-child {
    margin-right: 0;
  }

  nav a {
    color: #fff;
    text-decoration: none;
  }

  .page-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .page-navigation ul {
    list-style: none;
    display: flex;
  }
  
  .page-navigation li {
    margin: 0 10px;
  }
  
  .page-navigation li a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    background-color: #fff;
    color: #333;
    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-navigation li a:hover {
    background-color: #f1f1f1;
  }


  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #f9f9f9; /* This is the background color */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .nav-btn, .menu-btn {
    background-color: #ff0004;
    color: #fff;
	  white-space: nowrap;
	  overflow: hidden;
	  clear: both;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
	  border-radius: 20px;
    transition: background-color 0.2s;
	  font-weight: bolder;
	  
  }


  .products-per-page {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  label {
    margin-right: 10px;
  }
  
  select {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  select:hover {
    background-color: #ddd;
  }
  
  select:focus {
    outline: none;
    box-shadow: 0px 0px 5px #bbb;
  }

  

  
 .nav-btn:hover {
  background-color: #fff;
	border-radius: 20px;
	color:#000;
  }
.menu-btn:hover {
	background-color: #333;
	border-radius: 20px;
	color:#fff;
}
section{
  padding: 7rem 0 3rem;
	
}

ul.produse-aliniate{
  display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding: 20px;
}
header{
  position: fixed;
  top :0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.nav-wrapper {
  background: white;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin: 0 auto; /* This will center your .nav container */
}

#account-icon{
  margin-right:14px;
}
.logo{
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
	white-space: nowrap;
  margin-right:5px;
}

#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;
}
.modal {
  display: none;
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 10px;
  width: 70%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: animate 0.5s;
  z-index: 2;
}

.launch-image {
  width: 50vw;
  height: 50vw;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

button#okButton {
  padding: 10px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ff6600;
  color: white;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

button#okButton:hover {
  background-color: #ff3300;
}

@keyframes animate {
  0% {transform: translateY(-50px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

/*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: #ff5e00;
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: all .35s ease;
}
.btn-buy:hover{
  background: #ff0000;
  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;
  background-color:#ff3d02;
  border-radius:20px;
  color:#fff;
  margin-top:13rem;
}
.shop{
  margin-top: -6rem;
}
#uniqueSidebar {
  height: 100%;
  width: 250px; /* Adjusted width for visibility */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #991e1e, #ff8800); /* Gradient background */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Shadow for depth */
  overflow-x: hidden;
  transition: width 0.5s; /* Smooth transition for sidebar width */
  padding-top: 60px;
}

.sidebarLink h3 {
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide text that overflows the container */
  text-overflow: ellipsis; /* Add an ellipsis (...) when the text overflows */
}

#uniqueSidebar .sidebarLink {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  display: block;
  transition: color 0.3s, transform 0.3s; /* Added transform transition */
}

#uniqueSidebar .sidebarLink:hover {
  color: #f1f1f1;
  transform: translateX(10px); /* Slight right movement on hover */
}

#uniqueSidebar .closeButton {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #ffffff;
  cursor: pointer; /* Added cursor pointer */
}
.sidebarcat{
  background-color: #d87829;
  border-radius: 2rem;
}
#openButton {
  font-size: 20px;
  cursor: pointer;
  background-color: #ffffff;
  padding-right:20px;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px; /* Rounded corners for the button */

}
#openButton:hover {

  background-color: #ebebeb;

}
/* Shop Content */
.shop-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  gap: 1.5rem;
  border-radius:20px;
  padding-top:1rem;
  
}
.unique-product-category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-image: url('../img/banner.webp');
  
}

.unique-category-item {
  margin: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.unique-category-item:hover {
  transform: scale(1.1);
}
/* Container for the button */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-button {
  display: inline-block;
  font-size: 1.2rem;
  padding: 10px 20px;
  color: #fff;
  background-color: #ff3d02;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  margin-bottom: 2rem;
  margin-top:1rem;
}

.animated-button:hover {
  background-color: #ff6e40;
  transform: scale(1.1);
}
.unique-category-item img {
  width: 200%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  /* Add a border */
  border: 2px solid #000;
  /* Add round corners */
  border-radius: 15px;
}

.unique-category-item img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.section-title2{
  display:flex;
  font-size: 1.5rem;
  font-weight: 600;
  text-align:center;
  margin-bottom: 1.5rem;
  background-color:#ff3d02;
  border-radius:20px;
  color:#fff;
  max-width: 50%; 
  justify-content: center;
  align-self: center;
  margin: 0 auto; /* Add this to center the element */
  margin-top: 1rem;
  margin-bottom:1.5rem;
}

.product-box{
  position: relative;
  z-index:2;} 
.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;
  z-index:2;
}
.product-title{
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background-color: #ffe5d9d0;
	border-radius: 20px;
  padding: 7px;
}

.price{
  font-weight: 500;
  background-color: #ffe5d9d0;
	border-radius: 20px;
  padding: 7px;
}

.add-cart{
  position:absolute;
  bottom: 0;
  right: 0;
  background: #ff5e00;
  color: var(--bg-color);
  padding: 10px;
  cursor:pointer;
  margin-top: 2rem;
border-radius:30px;
border: none;
}
.add-cart:hover{
  background: hsl(0, 100%, 50%);
border-radius:30px;
}
.trustpilot {
  padding-top: 0.5rem;
  text-align: center;
}
.trustpilot img {
  border-radius: 2px;
  width: 100px;
  height: auto;
  vertical-align: middle;
  background-color: #ad896b; /* Fallback color */
  animation: rainbow-background 5s linear infinite; /* Apply the animation */
}
@keyframes rainbow-background {
  0% { background-color: #005c31; } /* Red */
  16% { background-color: #494949; } /* Orange */
  33% { background-color: #0051ff; } /* Yellow */
  50% { background-color: #009400; } /* Green */
  66% { background-color: #aca000; } /* Blue */
  83% { background-color: #363636; } /* Indigo */
  100% { background-color: #09005c; } /* Violet */
}

/* General Footer Styling */
footer {
  background: linear-gradient(135deg, #f2f2f2 0%, #e0e0e0 100%);
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

/* Default styling for desktop */
.footer-left {
  text-align: left; /* Default alignment for larger screens */
}

.footer-left p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.footer-left a {
  color: #0088cc;
  text-decoration: none;
  display: inline; /* Display links inline on desktop */
  margin-right: 10px; /* Horizontal spacing */
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-left a:hover {
  color: #0056a0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-center {
  text-align: center;
}

.anpc-logo {
  width: 100px;
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.anpc-logo:hover {
  transform: scale(1.1);
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.footer-right p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center; /* Center all items on mobile */
  }

  .footer-left {
    text-align: center; /* Center text in left section on mobile */
    margin-bottom: 20px; /* Space between sections */
  }

  .footer-left a {
    display: block; /* Stack links vertically on mobile */
    margin: 5px 0; /* Vertical spacing */
  }

  .footer-right {
    text-align: center; /* Center text in right section on mobile */
  }
}
/*breakpoints*/
@media (max-width : 1596px ){
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Adjusted maximum width to fit the whole page */
    
  }
  .suggestions {
    position: absolute;
    width: 100%; /* Set the width to 50% */
    top: calc(100% + 5px); /* Adjust the distance from the search bar */
    background-color: #ffc23e;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .nav {
    padding:15px;
  }
  section{
    padding: 3rem 0 2rem;
  }
  .container{
    margin:0 auto;
    width: 90%;
  }
  .shop{
    margin-top: 2rem !important;
  }
	  .logo{
  font-size: 0.4rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
}

}
@media (max-width:360px){
  .suggestions {
    position: absolute;
    width: 100%; /* Set the width to 50% */
    top: calc(100% + 5px); /* Adjust the distance from the search bar */
    background-color: #ffc23e;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Adjusted maximum width to fit the whole page */
    
  }
  .add-cart .text {
    display: none;
  }
  .shop{
  margin-top: 1rem !important;
}
  .cart{
    width:280px;
  }
  .logo{
  font-size: 0.2rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
}
}
@media (max-width: 1000px){
  .suggestions {
    position: absolute;
    width: 100%; /* Set the width to 50% */
    top: calc(100% + 5px); /* Adjust the distance from the search bar */
    background-color: #ffc23e;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Adjusted maximum width to fit the whole page */
    
  }
	header{
		padding: 7px 4%;
		transition: .2s;
	}
	header.sticky{
		padding: 14px 4%;
		transition: .2s;
	}
	section{
		padding: 80px 4%;
		transition: .1s;
	}

		.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;
	}


  .nav-btn, .menu-btn {
    border: none;
    background-color: #ff0004;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 20px;
	border-radius: 20px;
    transition: background-color 0.2s;
	font-weight: bolder;
	  
  }

 .nav-btn:hover {
    background-color: #fff;
	border-radius: 20px;
	color:#000;
  }
.menu-btn:hover {
	background-color: #333;
	border-radius: 20px;
	color:#fff;
}
	.logo{
  font-size: 0.6rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
}
}
.logo{
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 400;
  font-weight: bold;
}


.left-items{
  display: flex;
  justify-content: space-between;
}
.right-items{
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 700px) {
section{
    padding: 0rem 0 3rem;
    
  }
  .unique-product-category {
    margin-top:1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url('../img/banner_phone.webp');
  }
  .unique-category-item img {
    width: 100%;
    max-width: 170px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.608);
    transition: all 0.3s ease-in-out;
    /* Add a border */
    border: 0px solid #000;
    
    /* Add round corners */
    border-radius: 15px;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Adjusted maximum width to fit the whole page */
    
  }
  .products-container1::before,
.products-container1::after {
  content: '';
  position: absolute;
  left: -30px; /* Adjust the left and right positioning for longer lines */
  right: -30px;
  top: 0;
  bottom: 0;
  border: 2px dashed #000000; /* Adjust the color and style of the line */
  border-radius: 30px; /* Match the container's border radius */
  z-index: 3;
}

.products-container1::before {
  width: calc(100% + 40px); /* Make the line longer by adding 40px to the width */
  z-index: -1;
}

.products-container1::after {
  width: calc(100% + 40px); /* Make the line longer by adding 40px to the width */
  z-index: -1;
}
  .suggestions {
    position: absolute;
    width: 100%; /* Set the width to 50% */
    left: 7px;
    top: calc(100% + 5px); /* Adjust the distance from the search bar */
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 30px;
  }
  .products-container{
    background-color: #000000;
    z-index:2;
  }
  .feaured{
    background-color: #ff6600;
    border-radius: 20px;
    
  }
  .product {
    flex: 0 0 calc(50% - 10px); /* 2 products per row on phone */
    margin-right: 20px;
    background-color: #3b3b3b;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    z-index:2;
  }
  .highlighted-collection h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .product h3 {
    font-size: smaller;
    color: #fcfcfc;
  }
  .add-cart .text {
    display: none;
  }


  .shop-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, auto));
    gap: 1.5rem;
    border-radius:20px;
    padding-top:1rem;
    
  }
  .product-box{
    position: relative;
    z-index:2;} 
  .product-box:hover{
    padding: 10px;
    border:1px solid var(--text-color);
    border-radius:20px;
    transition: 0.4s;
    z-index:2;
  }
  .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;
  }
  .products-container1{
    display: none;
  }
  .feaured1{
    display: none;
}
.highlighted-collection1{
  display: none;
}
.navigation1{
  display: none;
}
.containersearch {
  width: 100%; /* Adjust the container width as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav{
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 100%;
  
}
.left-items{
  display:none;
}
.hidethis{
  display: none;
}
.meniu-categorii{
  display: none;
}
.video-container video {
  background-color: transparent;
  width: 206px;
  height: 63px;
  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;
}
#cart-icon{
  font-size: 1.8rem;
  cursor: pointer;
  margin-right:3rem;
}
.banner {
	background-color: #ffbf00;
	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%);
    }
  }
  
}
