.similarporduct-block {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  padding: 0 16px;
  box-sizing: border-box;
  overflow-x: clip;
}

.similarporduct-title {
  margin: 0 0 14px;
  color: #111;
  font-size: var(--sp-title-size, 24px);
  line-height: 1.2;
  font-weight: 700;
  border-bottom: 2px solid #1f6bc1;
  padding-bottom: 8px;
}

.similarporduct-products {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0;
  align-items: stretch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.similarporduct-products::-webkit-scrollbar {
  display: none;
}

.similarporduct-item {
  flex: 0 0 calc((100% - 48px) / 5);
  min-width: 220px;
}

.sp-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  height: 100%;
  min-height: 390px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.sp-image-link {
  display: block;
  height: 230px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  flex: 0 0 230px;
  position: relative;
  text-align: center;
}

.sp-image-link img {
  width: 178px;
  max-width: 100%;
  height: 230px;
  object-fit: contain;
  transition: opacity .25s ease;
}

.sp-image-hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.sp-image-link.has-hover:hover .sp-image-hover {
  opacity: 1;
}

.sp-image-link.has-hover:hover .sp-image-main {
  opacity: 0;
}

.sp-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #777;
}

.sp-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  min-height: 68px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.sp-title a {
  color: #111;
  text-decoration: none;
}

.sp-price {
  color: #0b68d0;
  font-size: var(--sp-title-size, 24px);
  font-weight: 700;
  margin: auto 0 10px;
  text-align: center;
}

.sp-btn-cart {
  margin-top: 0;
  display: block;
  align-self: center;
  margin-left: auto !important;
  margin-right: auto !important;
  min-width: 150px;
  text-align: center;
  font-size: 18px;
  padding: 11px 18px;
}

.sp-cart-form {
  width: 100%;
  text-align: center;
}

.similarporduct-prev,
.similarporduct-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255,255,255,.9);
  color: #666;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.similarporduct-prev { left: 0; }
.similarporduct-next { right: 0; }

@media (max-width: 1200px) {
  .similarporduct-item { flex-basis: calc((100% - 36px) / 4); min-width: 200px; }
  .similarporduct-title { font-size: 28px; }
  .sp-title { font-size: 18px; }
  .sp-price { font-size: 22px; }
  .sp-btn-cart { font-size: 14px; }
}

@media (max-width: 768px) {
  .similarporduct-block { padding: 0 12px; }
  .similarporduct-item { flex-basis: calc((100% - 12px) / 2); min-width: 160px; }
}

