:root {
  --gold-tint: #83725380;
  --theme-gray: #727272;
}
@font-face {
  font-family: "Futura";
  src: url("../font/FuturaMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPt";
  src: url("../font/FuturaPt.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MontserratLight";
  src: url("../font/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body a {
  font-family: "Futura", sans-serif !important;
  font-weight: 500;
}
html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: #000; 
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background-color: #333; 
  border-radius: 10px;
  border: 1px solid #000;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #000;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
  border: 1px solid #000;
}

h1 h2 h3 h4 {
  letter-spacing: 2px !important;
}

.glass {
  backdrop-filter: blur(8px);
  background: linear-gradient(
    to right,
    #211c1ccc 0%,
    #161313fc 96%
  );
}
.glass-slide {
  transition: all 300ms ease-in-out;
}
.futuraPt-font-fam {
  font-family: "FuturaPt", sans-serif !important;
}
.Futura-font-fam {
  font-family: "Futura", sans-serif !important;
}
.MontserratLight-font-fam {
  font-family: "MontserratLight", sans-serif !important;
}
.slide-left {
  animation: slideLeft 0.5s ease;
}
.navStyle {
  color: var(--theme-gray);
  transition: color 0.3s ease;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}

.navStyle.active {
  color: var(--gold-tint) !important;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}

.truncate-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mix */
.drink-slide {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 8px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: flex;
  justify-content: center;
}

.drink-slide img {
  width: 100%;
  height: 350px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.inactive img {
  opacity: 0.3;
  filter: grayscale(1);
  transform: scale(0.9);
}

.active img {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 639px) {
  .drink-slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }

  .drink-slide.active {
    display: flex !important;
  }

  .arrow-btn.left {
    translate: -130px -50%;
  }

  .arrow-btn.right {
    translate: 130px -50%;
  }

  #cockTail-track {
    transform: translateX(0%) !important;
  }

  .inactive img,
  .active img {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1) !important;
    height: auto;
  }
}

.top-b-img {
  left: 36%;
  top: 0;
  z-index: 0;
  position: absolute;
}

@media (max-width: 500px) {
  .top-b-img {
    left: 19%;
    top: 18px;
    z-index: 0;
    position: absolute;
  }
  .drink-slide img {
    width: 68%;
    height: 350px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  }
}


/* NEWS */

.goldBg {
  background-color: var(--gold-tint);
}
.goldColor {
  color: var(--gold-tint);
}
.theme-gray-text {
  color: var(--theme-gray);
}

.slide-right {
  animation: slideRight 0.5s ease;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none; 
  scrollbar-width: none;
}

@keyframes slideLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.img-h-w {
  width: 1940px !important;
  height: 211px !important;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.ingrdients {
  width: auto;
  height: 167px;
}

.bottle-img {
  width: 360px;
}
.dirStyle {
  direction: rtl;
}

.slider-image {
  transition: all 1s ease-in-out;
  transform: translateX(0);
  opacity: 1;
}

.slide-out-left {
  transform: translateX(-120%);
  opacity: 0;
}

.slide-out-right {
  transform: translateX(120%);
  opacity: 0;
}

.slide-in {
  transform: translateX(0%);
  opacity: 1;
}
@media screen and (max-width: 500px) {
  .bottle-img {
    width: 315px;
  }
  .ingrdients {
    width: auto;
    height: 145px;
  }
}
@media screen and (max-width: 370px) {
  .bottle-img {
    width: 288px;
  }
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.line-clamp-3 {
  @apply overflow-hidden text-ellipsis line-clamp-3;
}
