
/* ESTILOS EXACTOS DEL ECOMMERCE GRUPOMECSA */
.product-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card .pcp-image-wrap {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.product-card .pcp-image-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-card .pcp-brand-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  left: auto;
  top: auto;
  z-index: 10;
  font-weight: normal;
  font-size: 0.85rem;
  background-color: #0064A5;
  border-radius: 3px;
  padding: 0.35em 0.65em;
  height: 22px;
  width: 50%;
  color: white;
  display: inline-block;
  text-align: center;
  pointer-events: none;
}

.product-card .product-card-body {
  padding: 1.2rem 0 0.7rem 0;
}

.product-card .pcp-title,
.product-card .product-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
  line-height: 1.3;
  padding: 0 1rem;
}

.product-card .pcp-rating,
.product-card .product-rating {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
}

.product-card .btn-cotizar {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  margin: 0 auto 1rem auto;
  display: block;
}

.product-card .btn-cotizar:hover {
  background: #ffb300;
}

.product-card .pcp-status-out {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-card .pcp-price,
.product-card .product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0064A5;
  margin-bottom: 1rem;
}

/* Alias para compatibilidad */
.product-card-premium {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card-premium:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card-premium .pcp-image-wrap {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.product-card-premium .pcp-image-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-card-premium .pcp-brand-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  left: auto;
  top: auto;
  z-index: 10;
  font-weight: normal;
  font-size: 0.85rem;
  background-color: #0064A5;
  border-radius: 3px;
  padding: 0.35em 0.65em;
  height: 22px;
  width: 50%;
  color: white;
  display: inline-block;
  text-align: center;
  pointer-events: none;
}

.product-card-premium .product-card-body {
  padding: 1.2rem 0 0.7rem 0;
}

.product-card-premium .pcp-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
  line-height: 1.3;
  padding: 0 1rem;
}

.product-card-premium .pcp-rating {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
}

.product-card-premium .btn-cotizar {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  margin: 0 auto 1rem auto;
  display: block;
}

.product-card-premium .btn-cotizar:hover {
  background: #ffb300;
}

.product-card-premium .pcp-status-out {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-card-premium .pcp-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0064A5;
  margin-bottom: 1rem;
}

/* FILTROS TIPO PÍLDORA PARA SECCIÓN DE COLABORADORES */
.team-section .filter-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-section .filter-pill {
  cursor: pointer;
  color: #333;
  font-size: 0.9rem;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.team-section .filter-pill::after {
  display: none !important;
}

.team-section .filter-pill:hover {
  border-color: #0064A5;
  color: #0064A5;
}

.team-section .filter-pill.active {
  color: white !important;
  font-weight: 600 !important;
  background-color: #0064A5 !important;
  border-color: #0064A5 !important;
}
