/* MAKMEESHOP V12 Production Front Catalog Speed */
.catalog-loading,.catalog-empty{
  display:flex;align-items:center;gap:.55rem;
  border:1px solid rgba(129,188,255,.22);
  background:rgba(47,140,255,.09);
  border-radius:16px;padding:.85rem 1rem;
  color:#dbeaff;font-weight:800;
}
.catalog-loading .dot{
  width:10px;height:10px;border-radius:50%;
  background:#2f8cff;box-shadow:0 0 0 6px rgba(47,140,255,.13);
  animation:catalogPulse 1s infinite ease-in-out;
}
@keyframes catalogPulse{50%{opacity:.35;transform:scale(.86)}}
.catalog-speed-item{
  width:100%;display:flex;align-items:center;gap:12px;
  border:1px solid rgba(129,188,255,.18);
  background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  color:inherit;border-radius:18px;padding:12px;
  text-align:left;cursor:pointer;margin:8px 0;
}
.catalog-speed-item:hover,.catalog-speed-item.active,.catalog-speed-item.selected{
  border-color:rgba(67,215,255,.58);
  box-shadow:0 0 0 3px rgba(47,140,255,.14);
  background:rgba(47,140,255,.13);
}
.catalog-speed-icon{
  width:42px;height:42px;border-radius:14px;display:grid;place-items:center;
  background:radial-gradient(circle at 30% 20%,rgba(67,215,255,.24),transparent 42%),linear-gradient(135deg,rgba(47,140,255,.18),rgba(255,255,255,.06));
  border:1px solid rgba(129,188,255,.16);
  font-size:1.25rem;flex:0 0 auto;
}
.catalog-speed-meta{min-width:0;display:flex;flex-direction:column;gap:2px}
.catalog-speed-meta b{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.catalog-speed-meta small{color:#95a8c7;font-size:.78rem}
@media(max-width:760px){
  .catalog-speed-item{border-radius:16px;padding:11px}
  .catalog-speed-icon{width:38px;height:38px}
}
