/* VISTA LISTA */
.exel-product-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.exel-list-item {
  display: flex;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  gap: 15px;
  align-items: flex-start;
}

.exel-list-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.exel-list-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.exel-list-info {
  flex-grow: 1;
}

.exel-list-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.exel-list-info p {
  margin: 2px 0;
  font-size: 14px;
}

.exel-list-sku {
  color: #cc0000;
  font-weight: bold;
}

.exel-list-sub {
  font-size: 13px;
  color: #666;
}
