.af-card {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  margin: 24px 0;
  padding: 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.af-card:hover {
  border-color: #b8b8b8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.af-card-img {
  flex: 0 0 120px;
  width: 120px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-card-img img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.af-card-sc {
  min-width: 0;
  flex: 1;
}

.af-card-title {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  color: #222;
}

.af-card-price {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #b12704;
}

.af-card-buy {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  border-radius: 6px;
  background: #f5a623;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .af-card {
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }

  .af-card-img {
    flex-basis: 92px;
    width: 92px;
    min-height: 92px;
  }

  .af-card-img img {
    max-width: 92px;
    max-height: 92px;
  }

  .af-card-title {
    font-size: 14px;
  }

  .af-card-buy {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
