.ssi-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f3f7fb;
  border: 1px solid #d7e3ef;
  color: #243447;
  font-size: 13px;
  line-height: 1.4;
}
.ssi-banner-ok {
  background: #eef8f1;
  border-color: #c6e6d0;
}
.ssi-banner-empty {
  background: #fff8eb;
  border-color: #f0dfb4;
}
.ssi-banner-text strong {
  font-weight: 700;
}
.ssi-banner-link {
  font-weight: 700;
  color: #0d7ea4;
  text-decoration: none;
  white-space: nowrap;
}
.ssi-banner-link:hover {
  text-decoration: underline;
}

.ssi-related {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  background: #fff;
}
.ssi-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.ssi-related-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.ssi-related-head a {
  font-size: 13px;
  font-weight: 700;
  color: #0d7ea4;
  text-decoration: none;
}
.ssi-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.ssi-related-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f7f9fb;
  border: 1px solid #e8eef4;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.ssi-related-card:hover {
  border-color: #c9d7e6;
  background: #eef4fa;
}
.ssi-related-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ssi-related-price {
  font-size: 12px;
  font-weight: 700;
  color: #0d7ea4;
}

@media (max-width: 640px) {
  .ssi-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}
