.market-link {
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 15px;
  border-radius: 9px;
  background: #176ac6;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.market-link:hover { background: #0d56a8; }
.product-card {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.product-number {
  flex: 0 0 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: var(--amber);
  font: 800 22px Manrope;
}
.product-info { flex: 1; }
.product-label {
  margin: 0 0 7px;
  color: #176ac6;
  font: 700 13px Manrope;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-card h3 {
  font: 700 clamp(24px,3vw,34px) Manrope;
  line-height: 1.2;
  margin: 0 0 8px;
}
.product-card p { margin: 0; color: var(--muted); }
.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 25px;
}
.product-buy strong { font: 800 25px Manrope; }
.buy-button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.buy-button:hover { background: #ffb21c; }
@media (max-width: 780px) {
  .product-card { align-items: flex-start; gap: 20px; padding: 26px 22px; }
  .product-number { flex-basis: 52px; height: 52px; border-radius: 13px; font-size: 17px; }
  .product-buy { align-items: flex-start; flex-direction: column; }
  .buy-button { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .product-card { display: block; }
  .product-number { margin-bottom: 20px; }
}
