/* BÜROMOTTO PREMIUM PRODUCTS SLIDER */

.bmp-products-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 88px;
  font-family: inherit;
}

.bmp-products-section *,
.bmp-products-section *::before,
.bmp-products-section *::after {
  box-sizing: border-box;
}

.bmp-products-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bmp-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.bmp-products-label {
  display: block;
  color: #e92828;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .9px;
  margin-bottom: 12px;
}

.bmp-products-head h2 {
  color: #101820;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1px;
  margin: 0;
}

.bmp-products-all {
  color: #e92828;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.bmp-products-slider {
  position: relative;
}

.bmp-products-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 14px 2px 30px;
  scroll-behavior: smooth;
}

.bmp-products-track::-webkit-scrollbar {
  display: none;
}

.bmp-product-card {
  min-width: calc((100% - 84px) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(16,24,32,.06);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(16,24,32,.075);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.bmp-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233,40,40,.20);
  box-shadow: 0 30px 75px rgba(16,24,32,.14);
}

.bmp-product-image {
  height: 285px;
  margin: 18px 18px 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bmp-product-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
  transition: transform .36s ease, filter .36s ease;
}

.bmp-product-card:hover .bmp-product-image img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.bmp-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e92828;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(233,40,40,.25);
}

.bmp-product-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bmp-product-cat {
  color: #8a93a2;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 10px;
}

.bmp-product-title {
  color: #101820;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -.25px;
  min-height: 48px;
  margin-bottom: 18px;
}

.bmp-product-title:hover {
  color: #e92828;
}

.bmp-product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bmp-product-price {
  color: #e92828;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.bmp-product-go {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 16px;
  background: #f4f5f7;
  color: #101820;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.bmp-product-go svg {
  width: 19px;
  height: 19px;
}

.bmp-product-go:hover {
  background: #e92828;
  color: #fff;
  transform: translateX(2px);
  box-shadow: 0 14px 30px rgba(233,40,40,.23);
}

.bmp-products-arrow {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,32,.06);
  background: rgba(255,255,255,.92);
  color: #101820;
  box-shadow: 0 18px 45px rgba(16,24,32,.16);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bmp-products-arrow:hover {
  color: #e92828;
}

.bmp-products-prev {
  left: -25px;
}

.bmp-products-next {
  right: -25px;
}

@media (max-width: 1024px) {
  .bmp-product-card {
    min-width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 768px) {
  .bmp-products-section {
    padding: 48px 0 60px;
  }

  .bmp-products-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .bmp-products-head h2 {
    font-size: 32px;
  }

  .bmp-product-card {
    min-width: 86%;
    min-height: 440px;
  }

  .bmp-product-image {
    height: 255px;
  }

  .bmp-products-arrow {
    display: none;
  }
}
