/* Similar Products Manager – Frontend Styles */

.spm-similar-products {
  margin: 2em 0;
  clear: both;
}

.spm-heading {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: .5em;
}

/* ── Grid style ─────────────────────────────────────────────────────────── */
.spm-style-grid .spm-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── List style ─────────────────────────────────────────────────────────── */
.spm-style-list .spm-product-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.spm-style-list .spm-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
}

.spm-style-list .spm-product-image { width: 64px; flex-shrink: 0; }
.spm-style-list .spm-product-image img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
.spm-style-list .spm-product-link { display: flex; align-items: center; gap: 1rem; flex: 1; text-decoration: none; color: inherit; }
.spm-style-list .spm-product-title { margin: 0; font-size: .95em; }
.spm-style-list .spm-product-price { margin-left: auto; }

/* ── Slider style ───────────────────────────────────────────────────────── */
.spm-style-slider .spm-product-list {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  list-style: none;
  padding: 0 0 .5rem;
  margin: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.spm-style-slider .spm-product-list::-webkit-scrollbar { height: 4px; }
.spm-style-slider .spm-product-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

.spm-style-slider .spm-product {
  min-width: 180px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ── Product card (shared) ──────────────────────────────────────────────── */
.spm-product {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
}

.spm-product:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

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

.spm-product-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.spm-product-title {
  font-size: .9em;
  font-weight: 600;
  padding: .6em .75em .25em;
  margin: 0;
  line-height: 1.3;
}

.spm-product-price {
  display: block;
  padding: 0 .75em .6em;
  font-size: .95em;
  color: #333;
}

.spm-add-to-cart {
  display: block;
  width: calc(100% - 1.5em);
  margin: 0 .75em .75em;
  text-align: center;
  padding: .5em .75em;
  font-size: .85em;
  border-radius: 4px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .spm-style-grid .spm-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
