.new-just-dropped {
  font-family: 'SP Pro text', sans-serif;
  background-color: black;
}

.new-just-dropped .section-title {
  display: flex;
  align-items: center;
}

.new-just-dropped .section-title .section-title-text {
  margin-left: 5px;
  padding-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.new-just-dropped-item {
  position: relative;
  height: 500px;
  background: linear-gradient(to bottom, white 60%, black);
  color: white;
  border-radius: 16px;
  overflow: hidden;
}

.new-just-dropped-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.new-just-dropped-item .dropped-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.new-just-dropped-item .dropped-item-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.new-just-dropped-item .dropped-item-content .dropped-item-label {
  display: flex;
  justify-content: end;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.new-just-dropped-item .dropped-item-label-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropped-item-content .dropped-item-label .dropped-item-label-top img {
  width: 23px;
  height: 23px;
  margin-right: 5px;
}

.dropped-item-content .dropped-item-label .dropped-item-label-top .label-name {
  line-height: 2.1;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 0px 10px;
  text-transform: uppercase;
}

.dropped-item-content .dropped-item-label .dropped-item-label-top .label-name.bg-label-black {
  background-color: black;
}

.dropped-item-content .dropped-item-label .dropped-item-label-top .label-name.bg-label-yellow {
  color: #000;
  background-color: #FFC40F;
}

.dropped-item-content .dropped-item-middle {
  text-align: center;
}

.dropped-item-content .dropped-item-middle .item-middle-title {
  color: #fff;
  font-size: 18px;
  padding: 0;
  font-weight: 400;
}

.dropped-item-content .dropped-item-middle .item-middle-content {
  padding: 5px 0 20px;
  color: #fff;
  font-size: 14px;
}

.dropped-item-content .dropped-item-middle .btn-pay-ponts {
  display: inline-block;
  border: 2px solid white;
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.dropped-item-content .dropped-item-middle .btn-pay-ponts:hover {
  background-color: #000;
}

.dropped-item-content .dropped-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: black;
  padding: 10px 16px;
  border-radius: 10px;
}

.dropped-item-bottom-left,
.dropped-item-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropped-item-bottom-left span {
  font-size: 12px;
  font-weight: 400;
}

.dropped-item-bottom .dropped-item-bottom-left img,
.dropped-item-bottom .dropped-item-bottom-right img {
  width: 20px;
  height: 20px;
}

.dropped-item-bottom-right .essential-earn-point span {
  background-color: #008D75;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 400;
}

.dropped-item-bottom-right .btn-next {
  background: #000;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropped-item-bottom-right .btn-next img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.new-just-dropped-slider {
  position: relative;
}

.new-just-dropped-slider .custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 1));
  padding: 8px 20px;
  cursor: pointer;
  z-index: 99;
  height: 100%;
  display: flex;
  align-items: center;
}

.new-just-dropped-slider .custom-swiper-button-prev img {
  transform: rotate(180deg);
  width: 30px;
}

.new-just-dropped-slider .custom-swiper-button-next {
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 1));
  padding: 8px 20px;
  cursor: pointer;
  z-index: 99;
  height: 100%;
  display: flex;
  align-items: center;
}

.new-just-dropped-slider .custom-swiper-button-next img {
  width: 30px;
}

@media (max-width: 992px) {
  .dropped-item-content .dropped-item-middle .item-middle-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .dropped-item-content .dropped-item-middle .item-middle-title {
    font-size: 20px;
  }

  .new-just-dropped-slider .custom-swiper-button-prev,
  .new-just-dropped-slider .custom-swiper-button-next {
    padding: 4px;
  }

  .new-just-dropped-slider .custom-swiper-button-prev img,
  .new-just-dropped-slider .custom-swiper-button-next img {
    width: 15px;
  }
}