.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;

  max-width: 360px;
  padding: 22px;
  border-radius: 18px;

  text-decoration: none;
  color: #1f2933;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f6 100%);
  border: 1px solid rgba(159, 48, 34, 0.14);
  box-shadow: 0 12px 32px rgba(70, 30, 24, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 48, 34, 0.38);
  box-shadow: 0 18px 44px rgba(70, 30, 24, 0.14);
}

.pin-icon {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  padding: 7px 11px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #9f3022;

  background: rgba(159, 48, 34, 0.09);
}

.prod-card {
    margin-bottom: 25px;
}

.prod-card__title {
  margin-top: 4px;
  min-height: 75px;
  height: 75px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  color: #241412;
}

.prod-card__text {
  margin: 0;

  font-size: 15px;
  line-height: 1.5;
  color: #745f5b;
}

.prod-card__btn {
  margin-top: auto;
  align-self: flex-start;

  padding: 10px 16px;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 700;
  color: #ffffff;

  background: #9f3022;
  box-shadow: 0 8px 18px rgba(159, 48, 34, 0.28);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.prod-card:hover .prod-card__btn {
  background: #84271c;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(159, 48, 34, 0.35);
}

.cat-list-items {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin: 0 0 25px 0;
  padding: 0;
  list-style: none;
}

.cat-list-item-link {
  width: 100%;
}

.cat-list-item-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;

  padding: 10px 16px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;

  color: #5f2a23;
  background: #ffffff;
  border: 1px solid rgba(159, 48, 34, 0.18);
  box-shadow: 0 8px 22px rgba(70, 30, 24, 0.07);

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cat-list-item-link:hover {
  color: #9f3022;
  border-color: rgba(159, 48, 34, 0.4);
  box-shadow: 0 12px 28px rgba(70, 30, 24, 0.12);
  transform: translateY(-2px);
}

.cat-list-item.active .cat-list-item-link {
  color: #ffffff;
  background: #9f3022;
  border-color: #9f3022;
  box-shadow: 0 10px 24px rgba(159, 48, 34, 0.28);
}

.cat-list-item.active .cat-list-item-link:hover {
  color: #ffffff;
  background: #84271c;
  border-color: #84271c;
}