/* Contenedor general */
.prseinto-related-groups {
  --prse-radius: 14px;
  --prse-shadow: 0 2px 10px rgba(0,0,0,.06);
  --prse-border: #e9ecef;
  --prse-muted: #6c757d;
}

/* Tarjeta */
.prse-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--prse-border);
  border-radius: var(--prse-radius);
  background: #fff;
  box-shadow: var(--prse-shadow);
  overflow: hidden;
}

/* Imagen superior */
.prse-card .prse-img {
  background: #fff;
  display: block;
  padding: 8px;

}
.prse-card .prse-img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
}

/* Cuerpo */
.prse-card .prse-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 52px; /* espacio para el botón flotante */
}

/* Título */
.prse-title {
  font-weight: 800;
  font-size: 1.0rem;
  line-height: 1.2;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  color: #111;
}
.prse-title a { color: inherit; text-decoration: none; }
.prse-title a:hover { text-decoration: underline; }

/* Subtítulo (línea gris) */
.prse-subtitle {
  font-size: .85rem;
  line-height: 1.2;
  color: var(--prse-muted);
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

/* Meta (OEM/ID) */
.prse-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
}
.prse-meta li {
  font-size: .9rem;
  color: #111;
}
.prse-meta strong {
  font-weight: 700;
}

/* Precios */
.prse-price-excl {
  font-size: .85rem;
  color: var(--prse-muted);
  margin: 0;
}
.prse-price-incl {
  font-weight: 800;
  font-size: 1.25rem;
  margin: 2px 0 0 0;
  color: #111;
}

/* Botón flotante (carrito) */
.prse-cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.prse-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
  opacity: .95;
}
.prse-cta svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Grupos */
.prseinto-group > .h5 {
  font-weight: 800;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 575.98px) {
  .prse-card .prse-body { padding-bottom: 56px; }
}
