.product-carousel-section{
  width: 90%;
  margin: 40px auto;
}
.section-title{
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 800;
  color: #1f52dc;
}

.product-swiper{ padding: 10px 0 36px; }

.product-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration:none;
  color:#1f2937;
  box-shadow: 0 6px 18px rgba(17,24,39,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:block;
}
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(17,24,39,.12);
  border-color:#cbd5e1;
}

.product-media{
  background:#f8fafc;
  aspect-ratio: 5/3;             /* mantiene alto consistente */
  display:flex; align-items:center; justify-content:center;
}
.product-media img{
  width:85%;
  height:auto;
  object-fit: contain;           /* que no se recorte */
}

.product-body{ padding:10px 12px 12px; text-align:center; }
.product-brand{
  font-size:.9rem; font-weight:700; margin-bottom:4px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.product-name{
  font-size:.85rem; line-height:1.3; height:2.6em; overflow:hidden;
  color:#334155; margin:0 0 6px;
    display: -webkit-box;
  -webkit-line-clamp: 3;    /* máximo 3 líneas */
  -webkit-box-orient: vertical;
  
}
.product-price{ font-weight:800; color:#e53935; }

/* botones del carrusel */
.swiper-button-next, .swiper-button-prev{ color:#1f52dc; }
.swiper-button-disabled{ opacity:.35 !important; }

@media (max-width: 640px){
  .product-name{ height: 2.6em; }
}
