.section { padding: 48px 40px; }
.section-title { font-size: 22px; font-weight: 700; color: #111; margin-bottom: 6px; }
.section-sub { font-size: 13px; color: #999; margin-bottom: 28px; }

.bikes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: box-shadow .22s, transform .22s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.14);
  transform: translateY(-3px);
}
.card-img {
  aspect-ratio: 16/10; background: #f3f3f3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img--contain img { object-fit: contain; background: #fff; }
.card-img svg { opacity: .18; }
.card-tag {
  position: absolute; top: 10px; left: 10px;
  background: #2d9e00; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .03em;
}
.card-tag.sold { background: #ccc; color: #888; }
.card-tag-sold   { background: #bbb !important; color: #fff !important; }
.card-tag-status { background: #e67e00 !important; }
.sold-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; }
.sold-text { font-size: 16px; font-weight: 700; color: #aaa; border: 2px solid #ccc; padding: 6px 18px; border-radius: 3px; transform: rotate(-8deg); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card-specs { margin-top: auto; }
.card-footer { margin-top: 14px; }
.card-name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 3px; line-height: 1.35; }
.card-year { font-size: 12px; color: #aaa; margin-bottom: 12px; }
.card-specs {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: #888;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 0;
}
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-price { font-size: 19px; font-weight: 800; color: #111; }
.card-price em { font-size: 13px; color: #2d9e00; font-style: normal; font-weight: 600; }
.card-price-uah { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.card-price-uah .cp-main { font-size: 19px; font-weight: 800; color: #111; }
.card-price-uah .cp-main em { font-size: 13px; font-style: normal; font-weight: 700; color: #2d9e00; margin-left: 3px; }
.card-price-uah .cp-usd { font-size: 11px; font-weight: 600; color: #bbb; }
.card-price-na { font-size: 18px; font-weight: 700; color: #ccc; }
.btn-detail {
  background: #f2f2f2; color: #333; font-size: 12px; font-weight: 700;
  padding: 8px 18px; border-radius: 50px;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-detail:hover { background: #2d9e00; color: #fff; }