.hide-scroll {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

.carousel-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .carousel-wrapper {
    transform: translateY(-75px);
  }
}

#menu-top-bar {
  opacity: 0;
  transform: translateY(-100%);
}

#menu-top-bar.animate-in {
  animation: menu-top-bar-slide-in 700ms ease-out forwards;
}

@keyframes menu-top-bar-slide-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  #menu-top-bar {
    display: hidden;
    transform: translateY(-100%);
  }
}

#hidden-menu2 {
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 450ms ease;
}

.carousel {
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  padding: 5px;
  padding-top: 7px;
  overflow-y: clip;
}

.arrow {
  cursor: pointer;
  transition: scale 300ms cubic-bezier(0.075, 0.82, 0.165, 1),
    background-color 200ms cubic-bezier(0.075, 0.82, 0.165, 1),
    opacity 700ms cubic-bezier(0.075, 0.82, 0.165, 1);
  background-color: hsl(0, 0%, 12%);
}

.arrow.hide {
  scale: 2;
  opacity: 0;
}

.arrow:hover {
  background-color: rgb(68, 68, 68);
}

.prod-container {
  position: relative;
  display: inline-block;
  min-width: 250px;
  white-space: normal;
  transition: transform 100ms ease-in;
  height: 360px;
  box-sizing: content-box;
}

.prod-container:hover {
  transition: transform 150ms ease;
  transform: scale(1.025);
}

.prod-container:hover .prod-img-container {
  transition: transform 150ms ease 50ms;
  transform: scale(1.025);
}

.prod-img-group {
  pointer-events: none;
  display: grid;
  grid-auto-flow: column;
}

.prod-img-container {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 50ms ease-in;
}

.prod-img,
.prod-img-contain {
  pointer-events: none;
  width: 100%;
  transition: transform 100ms ease;
  height: 225px;
}

.prod-img-container {
  background-color: #292929;
}

.prod-img {
  object-fit: cover;
  width: 400px;
  height: 225px;
}

.prod-img-contain {
  object-fit: contain;
}

.prod-texts {
  position: relative;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 6px;
  min-height: 120px;
}

.prod-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

.prod-desc {
  font-size: 9px;
}

.prod-price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.prod-price-liters {
  display: flex;
  justify-content: start;
  gap: 24px;
  align-items: center;
  margin-top: auto;
}

.prod-price {
  font-weight: 400;
  font-size: 15px;
}

.prod-info {
  white-space: nowrap;
  padding: 4px;
  transition-delay: 200ms;
}

.prod-info-vege {
  background-color: #78a75a;
  text-shadow: #000000 -2px 2px 2px;
}

.prod-info-spicy {
  background-color: #c24848;
  text-shadow: #000000 -2px 2px 2px;
}

.prod-info-alkfree {
  background-color: #4883c2;
  text-shadow: #000000 -2px 2px 2px;
}

.prod-info-new {
  background-color: rgb(0, 0, 0);
  color: #ffa826;
  animation: pulse 2s ease-in-out infinite 500ms;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.highlighted {
  position: relative;
  z-index: 1;
}

.highlighted::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 500ms ease forwards, eraseLine 500ms ease 1750ms forwards;
  box-shadow: #ffffff 0px 0px 10px;
}

@keyframes drawLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes eraseLine {
  from {
    left: 100%;
    transform: scaleX(-1);
  }
  to {
    left: 100%;
    transform: scaleX(0);
  }
}

/* @keyframes eraseLine {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
} */

@media (min-width: 768px) {
  .carousel-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .prod-container {
    min-width: 290px;
    max-width: 290px;
    padding-bottom: 8px;
  }

  .prod-img,
  .prod-img-contain {
    height: 225px;
  }

  .prod-texts {
    gap: 4px;
  }

  .prod-title {
    font-size: 20px;
  }

  .prod-desc {
    font-weight: 300;
    font-size: 11px;
  }

  .prod-price {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .carousel-wrapper {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.selected-header > div {
  transition: transform 200ms cubic-bezier(0.1, 0.77, 0.82, 0.88) 100ms;
  transform: translateX(50px);
  font-weight: 500;
}

.selected-header > img {
  opacity: 1;
  transition: opacity 300ms linear;
}

.gray_bg {
  background-color: #292929;
}

.prod1-custom {
  transform: translateY(50px) translateX(20px) scale(1.5);
}

.prod2-custom {
  transform: scale(1.3);
}

/* .prod3-custom {

} */

.prod4-custom {
  transform: translateY(20px) scale(1.4);
}

.prod5-custom {
  transform: scale(1.15);
}

/* .prod6-custom {
  
} */

.prod7-custom {
  transform: scale(1.25);
}

.prod8-custom {
  transform: translateX(-30px) scale(1.75);
}

.prod9-custom {
  transform: translateX(-20px) scale(1.8);
}

.prod10-custom {
  transform: translateX(-40px) translateY(-20px) scale(1.75);
}

.prod11-custom {
  transform: translateY(10px) scale(1.1);
}

.prod12-custom {
  transform: translateY(20px) scale(1.25);
}
