.related-products-section {
  padding: 68px 0 76px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  border-top: 1px solid rgba(12, 31, 63, .07);
}

.related-products-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.related-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.related-products-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #009d73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.related-products-title {
  margin: 0;
  color: #0c1f3f;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
}

.related-products-note {
  max-width: 430px;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.related-product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 63, .1);
  border-radius: 17px;
  box-shadow: 0 8px 26px rgba(12, 31, 63, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.related-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 181, 132, .35);
  box-shadow: 0 15px 34px rgba(12, 31, 63, .12);
}

.related-product-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.related-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #edf3f8, #f8fafc);
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.035);
}

.related-product-placeholder {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #0c1f3f;
  color: #00e5a0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .03em;
}

.related-product-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(12, 31, 63, .86);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.related-product-body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 18px;
}

.related-product-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 229, 160, .1);
  color: #087a59;
  font-size: 10px;
  font-weight: 800;
}

.related-product-name {
  margin: 0 0 8px;
  color: #0c1f3f;
  font-size: 17px;
  line-height: 1.35;
}

.related-product-summary {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #0c1f3f;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.related-product-link span {
  color: #00a979;
  font-size: 16px;
  transition: transform .18s ease;
}

.related-product-link:hover span {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .related-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-products-head { align-items: flex-start; flex-direction: column; }
  .related-products-note { text-align: left; }
}

@media (max-width: 560px) {
  .related-products-section { padding: 48px 0 56px; }
  .related-products-inner { width: min(100% - 32px, 1200px); }
  .related-products-grid { grid-template-columns: 1fr; }
  .related-product-body { min-height: 0; }
}
