.slider-drinks {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.slider-drinks .swiper {
  overflow: visible;
}

.slider-drinks .swiper-wrapper {
  align-items: center;
}


.slider-drinks .swiper-slide {
  width: 424px;
  height: 584px;
  transform: scale(0.901);
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.4s ease;
}

.slider-drinks .swiper-slide-active {
  transform: scale(1);
}

.slider-drinks .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


.sdp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
}

.sdp__arrow {
  background: none !important;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sdp__arrow img {
  width: 17px;
  height: 24px;
  display: block;
}

.sdp__arrow--next img {
  transform: scaleX(-1);
}


.sdp__numbers {
  position: static !important;
  width: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.sdp__numbers .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  margin: 0;
  padding: 0;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  color: #CA892D;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  margin: 0px !important;
}

.sdp__numbers .swiper-pagination-bullet-active {
  color: #0B102D;
  background: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .slider-drinks .swiper-slide {
    width: 72vw;
    height: calc(72vw * 1.377);
  }
}

.sdp__numbers .swiper-pagination-bullet-active:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 86px;
  height: 1px;
  background-color: #CA892D;
  vertical-align: middle;
  margin-left: 10px;
  flex-shrink: 0;
}

