@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
.custom-link,
.custom-link2 {
  background-size: 100% 100%;
  width: 12rem;
  height: 3rem;
  display: inline-block;
  text-decoration: none;
}
*,
.loading-screen {
  margin: 0;
  padding: 0;
}
.clear-icon,
.custom-link2:hover,
.custom-link:hover,
.popup {
  cursor: pointer;
}
.unique-category-item img,
.unique-category-item1 img {
  width: 200%;
  max-width: 300px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.608);
  height: auto;
}
#slider-value,
.banner p,
.custom-link,
.custom-link2 {
  display: inline-block;
}
*,
.custom-link,
.custom-link2,
.sidenav a:not(.closebtn) {
  text-decoration: none;
}
#timer2,
#timer3,
#timer4,
.banner,
.footer-center,
.highlighted-collection1,
.logo-container3,
.sidenav .maxnumber,
.sidenav .minnumber,
.trustpilot {
  text-align: center;
}
.product-name,
.sidebarLink h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
*,
nav ul {
  list-style: none;
}
#timer2,
#timer3,
#timer4,
.openbtn,
.products-per-page {
  font-family: Arial, sans-serif;
}
.banner,
.logo,
.menu-btn,
.nav-btn,
.product-name,
.sidebarLink h3 {
  white-space: nowrap;
}
* {
  font-family: Poppins, sans-serif;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
:root {
  --main-color: #fd4646;
  --text-color: #171427;
  --bg-color: #fff;
  --duration: 1.5s;
  --container-size: 250px;
  --box-size: 33px;
  --box-border-radius: 15%;
}
.📦,
.📦:after {
  border-radius: var(--box-border-radius);
}
.custom-link {
  background-image: url("../img/SAL_1.webp");
}
.custom-link2 {
  background-image: url("../img/SAL_2.webp");
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffe1a9;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.container3,
.📦,
body {
  position: relative;
}
.logo-container3 {
  animation: 2s infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.container3 {
  width: var(--container-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.📦 {
  width: var(--box-size);
  height: var(--box-size);
  display: block;
  transform-origin: -50% center;
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e6ddad;
  box-shadow: 0 0 10px 0 rgba(255, 62, 28, 0.4);
}
.product1:hover,
.product:hover,
.productsuggested:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.📦:first-child {
  animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:first-child: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;
  background-color: #ff641c;
}
.📦: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;
  background-color: #fd781f;
}
.📦: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;
  background-color: #fbaf22;
}
.📦: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;
  background-color: #fbe523;
}
@keyframes slide {
  0% {
    background-color: #ffd417;
    transform: translatex(0);
  }
  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);
  }
  100%,
  35% {
    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);
  }
  20%,
  25% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  55% {
    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);
  }
  100%,
  50% {
    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);
  }
  35%,
  40% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  70% {
    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);
  }
  100%,
  65% {
    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);
  }
  50%,
  55% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%,
  85% {
    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);
  }
  100%,
  80% {
    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);
  }
  65%,
  70% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  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;
  background-attachment: fixed;
}
.banner {
  background-color: #ffbf00;
  padding: 4px;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
}
.banner p {
  padding-right: 100%;
  animation: 20s linear infinite banner-animation;
}
@keyframes banner-animation {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-30%);
  }
}
.container {
  max-width: 1068px;
  margin: auto;
  width: 100%;
}
.thumbnail-small {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
}
.clear-icon {
  font-size: 35px;
  color: #000;
  margin-left: 5px;
}
@keyframes wobble {
  0%,
  100% {
    transform: translateY(-50%) rotate(0);
  }
  30% {
    transform: translateY(-50%) rotate(-5deg);
  }
  60% {
    transform: translateY(-50%) rotate(5deg);
  }
}
.popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #000;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  background-color: #ff6803;
  color: #fff;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 9999;
  transform: translateY(-50%);
}
.popup.show {
  opacity: 1;
  pointer-events: auto;
  animation: none;
}
#popup1.show {
  animation: 2s infinite wobble;
}
.popup-container {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 20px;
  z-index: 1000;
}
.unique-product-category {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-image: url("../img/banner.webp");
}
.unique-category-item,
.unique-category-item1 {
  margin: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  position: relative;
}
#timer2,
#timer3,
#timer4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 10px;
  z-index: 2;
  line-height: 1.2;
  width: 40%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.unique-category-item1:hover,
.unique-category-item:hover {
  transform: scale(1.1);
  filter: brightness(160%);
}
.unique-category-item img {
  transition: filter 0.5s ease-in-out;
  border: 0 solid #000;
  border-radius: 15px;
  filter: brightness(50%);
}
.unique-category-item1 img {
  transition: 0.3s ease-in-out;
  border: 0 solid #000;
  border-radius: 15px;
}
.unique-category-item img:hover,
.unique-category-item1 img:hover {
  transform: scale(1.005);
  filter: brightness(170%);
}
.product-name {
  flex: 1;
}
.suggestions {
  position: absolute;
  width: 30%;
  right: 4%;
  top: calc(100% + 5px);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.search-icon.disabled {
  color: gray;
  cursor: not-allowed;
}
.suggestion-item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  left: -30px;
  right: -30px;
  border: 1px dashed #000;
}
.suggestion-item:hover {
  background-color: #f80;
}
#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 {
  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");
}
#uniqueSidebar,
.sidenav {
  height: 100%;
  left: 0;
  overflow-x: hidden;
  padding-top: 60px;
  top: 0;
  position: fixed;
}
.sidenav {
  width: 0;
  z-index: 1;
  background-color: #fff;
  transition: 0.5s;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);
}
.sidenav a:not(.closebtn) {
  padding: 8px 8px 8px 32px;
  font-size: 20px;
  color: #000;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #b9b9b9;
}
.page-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-navigation ul {
  display: flex;
  padding: 0;
}
.page-navigation ul li {
  margin: 0 5px;
}
.page-navigation .page-link {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.page-navigation .page-link.active {
  background-color: #f80;
  color: #fff;
  border-color: #f80;
}
.page-navigation .dots {
  padding: 5px 10px;
}
.pagination-input {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
#bell-icon-container,
.new-price,
.old-price {
  display: inline-block;
}
.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 #f80;
  background-color: #f80;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
#uniqueSidebar .sidebarLink,
.sidenav a {
  padding: 8px 8px 8px 32px;
  display: block;
}
.pagination-input button:hover {
  background-color: #ff6004;
}
.sidenav .closebtn:hover {
  color: #ff7300;
}
.sale-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: #fff;
  padding: 5px;
  transform: rotate(0);
  transform-origin: 0 0;
  border-radius: 5px;
  animation: 2s infinite colorchange;
}
.new-price,
.old-price {
  border-radius: 20px;
  padding: 7px;
}
@keyframes colorchange {
  0%,
  100% {
    background: red;
  }
  50% {
    background: #ff5e00;
  }
}
.old-price {
  text-decoration: line-through;
  background-color: #f0f0f0;
}
.dropdown-content a,
.footer-left a,
.openbtn,
.page-navigation li a,
.sidenav a,
nav a {
  text-decoration: none;
}
.new-price {
  color: red;
  font-weight: 500;
  background-color: #ffe5d9d0;
}
.sidenav p:not(.minnumber):not(.maxnumber) {
  color: #000;
  font-size: 20px;
  padding-left: 32px;
  font-weight: 700;
  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 #000;
  background-color: #fff;
  color: #000;
}
.page-navigation li,
.sidenav input[type="checkbox"] {
  margin: 0 10px;
}
.openbtn {
  margin-right: 2rem;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}
.closebtn:hover,
.openbtn:hover,
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav a {
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}
.trustpilot {
  padding-top: 0.5rem;
}
.trustpilot img {
  border-radius: 2px;
  width: 100px;
  height: auto;
  vertical-align: middle;
  background-color: #ad896b;
  animation: 5s linear infinite rainbow-background;
}
@keyframes rainbow-background {
  0% {
    background-color: #005c31;
  }
  16% {
    background-color: #494949;
  }
  33% {
    background-color: #0051ff;
  }
  50% {
    background-color: #009400;
  }
  66% {
    background-color: #aca000;
  }
  83% {
    background-color: #363636;
  }
  100% {
    background-color: #09005c;
  }
}
.sidenav .closebtn {
  font-size: 36px;
  position: absolute;
  top: 0;
  right: 25px;
  margin-left: 50px;
  color: #818181;
}
#uniqueSidebar {
  width: 250px;
  z-index: 9999;
  background: linear-gradient(145deg, #991e1e, #f80);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: width 0.5s;
}
#uniqueSidebar .sidebarLink {
  text-decoration: none;
  font-size: 17px;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}
#uniqueSidebar .sidebarLink:hover {
  color: #f1f1f1;
  transform: translateX(10px);
}
#uniqueSidebar .closeButton {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #fff;
  cursor: pointer;
}
.sidebarcat {
  background-color: #d87829;
  border-radius: 2rem;
}
#openButton {
  font-size: 20px;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
}
#openButton:hover {
  background-color: #ebebeb;
}
#mainContent {
  transition: margin-left 0.5s;
  padding: 16px;
}
.slider {
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.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 {
  display: flex;
  align-items: right;
  justify-content: flex-end;
  background-color: orange;
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.containersearch {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.search-input {
  border: none;
  background: 0 0;
  font-size: 16px;
  padding: 8px;
  color: #333;
  outline: 0;
}
.search-button {
  background-color: #ff8c00;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search-button:hover {
  background-color: #ff751a;
}
.highlighted-collection1 {
  padding-top: 11.5rem;
  margin: 20px auto;
  max-width: 100%;
}
.highlighted-collection {
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
}
.product,
.productsuggested {
  margin-right: 20px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.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%;
  z-index: 2;
}
.products-wrapper {
  display: flex;
  transition: transform 0.3s;
}
.product {
  flex: 0 0 calc(25% - 15px);
  background-color: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.product:last-child,
.productsuggested:last-child,
nav li:last-child {
  margin-right: 0;
}
.product:hover {
  transform: translateY(-5px);
}
.product h3,
.productsuggested h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
}
.sidebarLink h3 {
  font-size: 17px;
  margin: 0;
}
.product img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 5px;
}
.productsuggested {
  flex: 0 0 calc(25% - 15px);
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.productsuggested:hover {
  transform: scale(1.01);
}
#suggested-text {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding: 10px;
  background-color: #ffc526;
  border-radius: 5px;
  margin-bottom: 20px;
}
.productsuggested img {
  width: 50%;
  height: auto;
  border-radius: 4px;
  margin-right: 5px;
}
.productsuggested .add-to-cart {
  display: flex;
  margin: 1.5rem auto 0;
  padding: 12px 20px;
  border: none;
  background: #fb0;
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.35s;
}
.btn-buy:hover,
.productsuggested .add-to-cart:hover {
  background: red;
  transform: translateY(-5px);
}
.price1 {
  font-weight: 500;
  background-color: #fff;
  border-radius: 20px;
  padding: 7px;
  z-index: 1;
}
.products-wrapper1 {
  display: flex;
  transition: transform 0.3s;
  z-index: 1;
}
.arrow,
button#okButton {
  transition: background-color 0.3s;
  cursor: pointer;
}
.products-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}
.products-container1::after,
.products-container1::before {
  content: "";
  position: absolute;
  left: -30px;
  right: -30px;
  top: 0;
  bottom: 0;
  border: 2px dashed #000;
  border-radius: 0;
  width: calc(100% + 40px);
  z-index: -1;
}
.feaured1.h2,
.product1 {
  background-color: #000;
  border-radius: 0;
}
.feaured1.h2 {
  z-index: -1;
}
.product1 {
  flex: 0 0 calc(12.5% - 15px);
  margin-right: 20px;
  padding: 10px;
  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);
  z-index: 9998;
}
.product1 h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
  z-index: 9998;
}
.product1 img {
  width: 90%;
  height: auto;
  border-radius: 100px;
  margin-bottom: 5px;
  z-index: 9998;
}
.product-name {
  color: #000;
  position: relative;
  font-size: 20px;
  font-weight: 300;
  bottom: 7px;
}
.navigation,
.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: #fff;
  border-radius: 50%;
}
.feaured {
  background-color: #000;
  border-radius: 20px;
}
.highlighted-collection h2 {
  color: #ff9100;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.arrow:not(:last-child),
label {
  margin-right: 10px;
}
.arrow:hover {
  background-color: #ff6f00;
}
nav ul {
  display: flex;
  margin: 0;
  padding: 0;
}
nav li {
  margin-right: 20px;
}
nav a {
  color: #fff;
}
.page-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.page-navigation ul {
  list-style: none;
  display: flex;
}
.page-navigation li a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  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;
}
.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;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.modal,
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  display: block;
}
.dropdown:hover .dropdown-content {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-btn,
.nav-btn {
  background-color: #ff0004;
  color: #fff;
  overflow: hidden;
  clear: both;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.2s;
  font-weight: bolder;
}
footer,
h2,
select {
  color: #333;
}
.products-per-page {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
#close-cart,
.logo {
  color: var(--text-color);
}
select {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
select:hover {
  background-color: #ddd;
}
select:focus {
  outline: 0;
  box-shadow: 0 0 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 {
  z-index: 100;
}
.nav-wrapper {
  background: #fff;
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
#account-icon {
  margin-right: 2px;
}
.logo {
  margin-right: 5px;
}
#account-icon,
#cart-icon {
  font-size: 1.8rem;
  cursor: pointer;
}
#all-icon,
#card-icon,
#contact-icon,
#delivery-icon,
#week-icon {
  font-size: 1.5rem;
  cursor: pointer;
}
.modal {
  display: none;
  z-index: 0;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
#bell-icon-container {
  position: relative;
}
#bell-icon {
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}
#notification-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: red;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  display: none;
  z-index: 1002;
}
.product-notification {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.product-notification img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.product-notification h3 {
  margin: 0;
  font-size: 16px;
}
.product-notification p {
  margin: 5px 0 0;
  font-size: 14px;
}
.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: 0.5s animate;
  z-index: 2;
}
#notification-popup {
  position: absolute;
  right: 0;
  top: 50px;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  padding: 10px;
  border-radius: 5px;
}
.notification-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.notification-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}
.notification-content {
  flex-grow: 1;
}
.notification-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.notification-description {
  margin: 5px 0 0;
  font-size: 12px;
  color: #666;
}
.launch-image,
h2 {
  margin-bottom: 20px;
}
.launch-image {
  width: 50vw;
  height: 50vw;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
}
button#okButton {
  padding: 10px 20px;
  border: none;
  outline: 0;
  background-color: #f60;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
button#okButton:hover {
  background-color: #f30;
}
@keyframes animate {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.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;
  overflow-y: auto;
}
.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;
  padding: 12px 20px;
  border: none;
  background: #ff5e00;
  color: var(--bg-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.35s;
}
.section-title,
.section-title2 {
  font-size: 1.5rem;
  text-align: center;
  background-color: #ff3d02;
  color: #fff;
  border-radius: 20px;
}
#close-cart {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}
.section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.section-title2 {
  display: flex;
  font-weight: 600;
  max-width: 50%;
  justify-content: center;
  align-self: center;
  margin: 1rem auto 0;
}
.price,
.product-title {
  background-color: #ffe5d9d0;
  padding: 7px;
}
.shop {
  margin-top: -6rem;
}
.shop-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, auto));
  gap: 1.5rem;
  border-radius: 20px;
}
.product-box {
  position: relative;
  z-index: 2;
}
.product-box:hover {
  padding: 10px;
  border: 1px solid var(--text-color);
  border-radius: 20px;
  transition: 0.4s;
}
.price,
.product-img,
.product-title {
  border-radius: 20px;
}
.product-img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.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: #ff5e00;
  color: var(--bg-color);
  padding: 10px;
  cursor: pointer;
  margin-top: 2rem;
  border-radius: 30px;
  border: none;
}
.add-cart:hover {
  background: red;
  border-radius: 30px;
}
footer {
  background: linear-gradient(135deg, #f2f2f2 0, #e0e0e0 100%);
  padding: 30px 20px;
  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-center,
.footer-left,
.footer-right {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}
.footer-left {
  text-align: left;
}
.footer-left p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.footer-left a {
  color: #08c;
  display: inline;
  margin-right: 10px;
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-left a:hover {
  color: #0056a0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.anpc-logo {
  width: 100px;
  margin: 0 15px;
  transition: transform 0.3s;
}
.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: 700;
}
.footer-right p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-left,
  .footer-right {
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-left {
    margin-bottom: 20px;
  }
  .footer-left a {
    display: block;
    margin: 5px 0;
  }
}
@media (max-width: 1596px) {
  .products-container,
  .suggestions {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    max-width: 100%;
  }
  .suggestions {
    position: absolute;
    width: 100%;
    top: calc(100% + 5px);
    background-color: #ffc23e;
    border-radius: 4px;
    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: 700;
  }
}
@media (max-width: 360px) {
  .products-container,
  .suggestions {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .suggestions {
    position: absolute;
    width: 100%;
    top: calc(100% + 5px);
    background-color: #ffc23e;
    border-radius: 4px;
    z-index: 1;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    max-width: 100%;
  }
  .add-cart .text {
    display: none;
  }
  .shop {
    margin-top: 1rem !important;
  }
  .cart {
    width: 280px;
  }
  .logo {
    font-size: 0.2rem;
    color: var(--text-color);
    font-weight: 700;
  }
}
@media (max-width: 1000px) {
  .products-container,
  .suggestions {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  header,
  header.sticky {
    transition: 0.2s;
  }
  .suggestions {
    position: absolute;
    width: 100%;
    top: calc(100% + 5px);
    background-color: #ffc23e;
    border-radius: 4px;
    z-index: 1;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background-color: #252525;
    border-radius: 30px;
    max-width: 100%;
  }
  header.sticky {
    padding: 14px 4%;
  }
  section {
    padding: 80px 4%;
    transition: 0.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: 0.45s;
  }
  .navlist a {
    display: block;
    margin: 1.2rem 0;
  }
  .navlist.open {
    left: 0;
  }
  .menu-btn,
  .nav-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: 700;
  }
}
.logo {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 700;
}
.left-items,
.right-items {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 700px) {
  .product,
  .products-container,
  .search-container,
  .suggestions {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .unique-product-category {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url("../img/banner_phone.webp");
  }
  .section-title2 {
    display: flex;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    background-color: #ff3d02;
    border-radius: 20px;
    color: #fff;
    max-width: 80%;
    justify-content: center;
    align-self: center;
    margin: 1rem auto 0;
  }
  section {
    padding: 1.5rem 0 3rem;
  }
  .products-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 30px;
    max-width: 100%;
  }
  .highlighted-collection1 {
    padding-top: 7.5rem;
    margin: 20px auto;
    max-width: 100%;
    text-align: center;
  }
  .product,
  .video-container video {
    margin-right: 20px;
    cursor: pointer;
  }
  .products-container1::after,
  .products-container1::before {
    content: "";
    position: absolute;
    left: -30px;
    right: -30px;
    top: 0;
    bottom: 0;
    border: 2px dashed #000;
    border-radius: 30px;
    width: calc(100% + 40px);
    z-index: -1;
  }
  .suggestions {
    position: absolute;
    width: 100%;
    left: 7px;
    top: calc(100% + 5px);
    background-color: #fff;
    border-radius: 30px;
    z-index: 1;
  }
  .products-container {
    background-color: #000;
    z-index: 2;
  }
  .feaured {
    background-color: #f60;
    border-radius: 20px;
  }
  .product {
    flex: 0 0 calc(50% - 10px);
    background-color: #3b3b3b;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
  }
  .highlighted-collection h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .product h3 {
    font-size: smaller;
    color: #fcfcfc;
  }
  .add-cart .text,
  .feaured1,
  .hidethis,
  .left-items,
  .meniu-categorii,
  .navigation1,
  .products-container1 {
    display: none;
  }
  .shop {
    margin-top: -1rem !important;
  }
  .shop-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    gap: 1.5rem;
    border-radius: 20px;
  }
  .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;
  }
  .sale-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: #fff;
    padding: 2px;
    transform: rotate(0);
    transform-origin: 0 0;
    border-radius: 5px;
    animation: 2s infinite colorchange;
    font-size: 12px;
  }
  .unique-category-item img,
  .unique-category-item1 img {
    width: 200%;
    max-width: 170px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.608);
    transition: 0.3s ease-in-out;
    border: 0 solid #000;
    border-radius: 15px;
  }
  #timer2,
  #timer3,
  #timer4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    width: 40%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  .containersearch {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .search-container {
    display: flex;
    align-items: right;
    justify-content: flex-end;
    background-color: orange;
    border-radius: 20px;
    padding: 2px 5px;
  }
  .nav {
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    max-width: 100%;
  }
  .video-container video {
    background-color: transparent;
    width: 206px;
    height: 63px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    margin-bottom: 3rem;
    border-radius: 10px 30px;
  }
  #cart-icon {
    font-size: 1.8rem;
    cursor: pointer;
    margin-right: 1rem;
  }
  .banner {
    background-color: #ffbf00;
    text-align: center;
    padding: 4px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
  }
  .banner p {
    display: inline-block;
    padding-right: 100%;
    animation: 20s linear infinite banner-animation;
  }
  @keyframes banner-animation {
    0% {
      transform: translateX(40%);
    }
    100% {
      transform: translateX(-80%);
    }
  }
}
