.bbl-lp-slider-full {
  width: 100%;
  display: block;
  clear: both;
  margin: 40px 0;
}

.bbl-lp-slider-inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.bbl-lp-slider {
  position: relative;
  width: 100%;
}

.bbl-lp-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.bbl-lp-slider__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  color: #1f2430;
}

.bbl-lp-slider__nav {
  display: flex;
  gap: 10px;
}

.bbl-lp-slider__btn {
  width: 44px;
  height: 44px;
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.bbl-lp-slider__btn:hover {
  transform: translateY(-1px);
}

.bbl-lp-slider__btn[disabled] {
  opacity: .45;
  cursor: default;
  transform: none;
}

.bbl-lp-slider__btn::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  position: absolute;
  top: 50%;
  left: 50%;
}

.bbl-lp-slider__btn[data-next]::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.bbl-lp-slider__btn[data-prev]::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.bbl-lp-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.bbl-lp-slider__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  transition: transform .35s ease;
  will-change: transform;
}

.bbl-lp-slider__item {
  flex: 0 0 calc((100% - (20px * 3)) / 4);
  min-width: 0;
}

.bbl-lp-card {
  height: 100%;
  background: #fff;
}

.bbl-lp-card__img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
  text-decoration: none;
}

.bbl-lp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}

.bbl-lp-card:hover .bbl-lp-card__img img {
  transform: scale(1.03);
}

.bbl-lp-card__body {
  padding: 14px 4px 0;
}

.bbl-lp-card__cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #666;
  margin-bottom: 8px;
}

.bbl-lp-card__title {
  display: inline-block;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  min-height: 44px;
}

.bbl-lp-card__title:hover {
  text-decoration: underline;
}

.bbl-lp-card__price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.bbl-lp-card__price del,
.bbl-lp-card__price .amount + .amount {
  opacity: .65;
}

.bbl-lp-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.bbl-lp-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c8c8c8;
  padding: 0;
  cursor: pointer;
}

.bbl-lp-slider__dots button.is-active {
  background: #111;
}

.bbl-lp-slider__footer {
  text-align: center;
  margin-top: 22px;
}

.bbl-lp-slider__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #111;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.bbl-lp-slider__all:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 1024px) {
  .bbl-lp-slider__item {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .bbl-lp-slider-inner {
    width: min(100%, calc(100% - 20px));
  }

  .bbl-lp-slider__head {
    align-items: flex-end;
  }

  .bbl-lp-slider__title {
    font-size: 28px;
  }

  .bbl-lp-slider__track {
    gap: 14px;
  }

  .bbl-lp-slider__item {
    flex-basis: 100%;
  }

  .bbl-lp-card__title {
    min-height: 0;
  }
}
