.lokaly-category-showcase {
  margin: 34px 0 28px;
  overflow: hidden;
}

.lokaly-category-showcase__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.lokaly-category-showcase__heading span {
  display: block;
  margin-bottom: 6px;
  color: #037cfa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lokaly-category-showcase__heading h2 {
  margin: 0;
  color: #071d31;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.lokaly-category-showcase__heading p {
  max-width: 390px;
  margin: 0;
  color: #637186;
  font-size: 0.82rem;
  text-align: right;
}

.lokaly-category-showcase__rail {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 15px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: #b9c8d8 transparent;
  scrollbar-width: thin;
}

.lokaly-category-box {
  display: flex;
  min-width: 0;
  min-height: 518px;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 49, 0.09);
  border-radius: 24px;
  color: var(--lokaly-box-color);
  background: var(--lokaly-box-bg);
  box-shadow: 0 12px 30px rgba(19, 45, 72, 0.09);
  scroll-snap-align: start;
}

.lokaly-category-box__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
  margin-bottom: 15px;
}

.lokaly-category-box__header span {
  display: block;
  margin-bottom: 5px;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.66;
  text-transform: uppercase;
}

.lokaly-category-box__header h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lokaly-category-box__header > a {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 13px;
  color: inherit;
  text-decoration: none;
  opacity: 0.74;
}

.lokaly-category-box__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.lokaly-category-product {
  display: flex;
  min-width: 0;
  min-height: 174px;
  flex-direction: column;
  padding: 8px;
  border: 1px solid rgba(7, 29, 49, 0.08);
  border-radius: 15px;
  color: #0c1a2a;
  background: #ffffff;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.lokaly-category-product:hover {
  color: #037cfa;
  box-shadow: 0 10px 24px rgba(7, 29, 49, 0.13);
  transform: translateY(-2px);
}

.lokaly-category-product__media {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 0.8;
  overflow: hidden;
  place-items: center;
  border-radius: 11px;
  background: #f6f8fb;
}

.lokaly-category-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.lokaly-category-product__discount {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  border-radius: 7px;
  color: #ffffff;
  background: #df1747;
  font-size: 0.63rem;
  font-weight: 800;
}

.lokaly-category-product__name {
  display: -webkit-box;
  min-height: 31px;
  margin-top: 7px;
  overflow: hidden;
  color: #304258;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lokaly-category-product strong {
  margin-top: auto;
  color: #071d31;
  font-size: 0.78rem;
}

.lokaly-category-box__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-category-box--empty {
  min-height: 210px;
}

.lokaly-category-box--empty .lokaly-category-box__header {
  min-height: 105px;
}

@media (min-width: 1200px) {
  .lokaly-category-showcase__rail {
    grid-auto-columns: calc((100% - 42px) / 4);
  }
}

@media (max-width: 767.98px) {
  .lokaly-category-showcase {
    margin-top: 26px;
  }

  .lokaly-category-showcase__heading {
    align-items: start;
  }

  .lokaly-category-showcase__heading p {
    display: none;
  }

  .lokaly-category-showcase__rail {
    grid-auto-columns: calc(100% - 18px);
    gap: 10px;
    margin-right: -10px;
    padding-right: 10px;
  }

  .lokaly-category-box {
    min-height: 520px;
    padding: 16px;
    border-radius: 22px;
  }

  .lokaly-category-box__header h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 389.98px) {
  .lokaly-category-box {
    min-height: 490px;
  }

  .lokaly-category-product {
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lokaly-category-showcase__rail {
    scroll-behavior: auto;
  }
}
