.otm-catalogue {
  background: #f7f8fc;
  padding: 72px 24px 88px;
}

.otm-catalogue__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.otm-catalogue__heading {
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.otm-catalogue__eyebrow {
  margin: 0 0 10px;
  color: #302aff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.otm-catalogue__heading h2 {
  margin: 0 0 12px;
  color: #15172a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.otm-catalogue__heading p:last-child {
  margin: 0;
  color: #62677c;
  font-size: 17px;
  line-height: 1.6;
}

.otm-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.otm-product {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe2ed;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 22px rgba(22, 28, 55, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.otm-product:hover,
.otm-product:focus-within {
  transform: translateY(-4px);
  border-color: #302aff;
  box-shadow: 0 14px 34px rgba(48, 42, 255, .14);
}

.otm-product__link {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 18px;
  color: inherit;
  text-decoration: none !important;
}

.otm-product__badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 4px;
  background: #ff3d5a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}

.otm-product__badge--muted {
  background: #6f7487;
}

.otm-product__image {
  display: flex;
  height: 245px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 20px 8px 8px;
}

.otm-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.otm-product:hover .otm-product__image img {
  transform: scale(1.035);
}

.otm-product__tags {
  display: flex;
  min-height: 29px;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.otm-product__tag {
  padding: 5px 8px;
  border-radius: 3px;
  background: #ff693d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.otm-product h3 {
  margin: 0 0 12px;
  color: #303650;
  font-size: 17px;
  line-height: 1.35;
}

.otm-product__description {
  margin: -4px 0 12px;
  color: #73788c;
  font-size: 13px;
  line-height: 1.45;
}

.otm-product__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: auto 0 22px;
}

.otm-product__old-price {
  color: #7e8395;
  font-size: 14px;
  text-decoration: line-through;
}

.otm-product__price {
  color: #302aff;
  font-size: 20px;
  font-weight: 800;
}

.otm-product__button {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 2px solid #303650;
  border-radius: 999px;
  color: #303650;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.otm-product:hover .otm-product__button {
  background: #302aff;
  border-color: #302aff;
  color: #fff;
}

@media (max-width: 959px) {
  .otm-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 569px) {
  .otm-catalogue { padding: 52px 16px 64px; }
  .otm-products { grid-template-columns: 1fr; gap: 18px; }
  .otm-product__image { height: 220px; }
}
