/* ===== Product Categories ===== */
.cats {
  padding: 104px 0 10px;
}

.cats__title {
  margin: 0 0 18px;
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0d2640;
}

/* Одна карточка на всю ширину */
.cats__card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #0d2640;
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cats__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.cats__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
}

.cats__label {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.4;
  color: #0d2640;
}

.cats__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b8d4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
}

.cats__card:hover .cats__arrow {
  background: #8ab9e0;
}

.cats__img {
  margin: 0 12px 12px;
  line-height: 0;
}

.cats__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* ===== Планшет ===== */
@media (max-width: 980px) {

}

/* ===== Мобайл ===== */
@media (max-width: 520px) {
  .cats {
    padding: 18px 0 6px;
  }

  .cats__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .cats__card {
    border-radius: 18px;
  }

  .cats__top {
    padding: 16px 16px 12px;
  }

  .cats__label {
    font-size: 14px;
  }

  .cats__arrow {
    width: 38px;
    height: 38px;
  }

  .cats__img {
    margin: 0 10px 10px;
    border-radius: 12px;
    height: 240px;
  }
}