
/* Style Ueeshop conservé, sans conflit */
.us-row-wrap{
  display:flex;
  gap:24px;
  align-items:flex-start;
  margin-bottom:30px;
  box-sizing: border-box;
}
.us-left-col{
  flex:1;
  box-sizing: border-box;
}
.us-right-col{
  flex:0 0 42%;
  text-align:center;
  box-sizing: border-box;
}
.us-right-col img{
  max-width:100%;
  height:auto;
  object-fit:contain;
  box-sizing: border-box;
}
.us-tag-group{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0 18px;
  box-sizing: border-box;
}
.us-tag{
  background:#e8f1fc;
  color:#1b57a0;
  font-size:12px;
  padding:4px 10px;
  border-radius:6px;
  box-sizing: border-box;
}
.us-feature-item{
  display:flex;
  gap:12px;
  margin-bottom:12px;
  box-sizing: border-box;
}
.us-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#2563eb;
  margin-top:8px;
  flex-shrink:0;
  box-sizing: border-box;
}
.us-scene{
  background:#f7f9fc;
  padding:16px;
  border-radius:10px;
  margin-top:20px;
  box-sizing: border-box;
}
/* Empilement sur mobile */
@media (max-width:768px){
  .us-row-wrap{
    flex-direction:column;
  }
  .us-right-col{
    flex:none;
  }
}
