/* Use flex layout and allow items to shrink / wrap as needed */
#my-categories-124360502 {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin: 0 auto !important;

  /* Try to disable overflow hiding */
  overflow: visible !important;
  white-space: nowrap !important;
}

/* Style the links */
#my-categories-124360502 a {
  color: #000 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  margin: 0 0.8em !important;
  display: inline-block !important;
  /* allow shrinking so more items can fit */
  flex-shrink: 1 !important;
}

/* Hover / focus */
#my-categories-124360502 a:hover,
#my-categories-124360502 a:focus {
  color: #000 !important;
  text-decoration: underline !important;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #my-categories-124360502 {
    justify-content: center !important;
  }
  #my-categories-124360502 a {
    margin: 0 0.4em !important;
    font-size: 0.9rem !important;
  }
}

.ecwid .product-details__title,
.ecwid .ec-store .grid-product__title-inner {
  font-family: "Your Preferred Font", sans-serif !important;
  font-size: 18px !important;
  color: #333333 !important;
}

.ecwid .product-details__price,
.ecwid .ec-store .grid-product__price-amount {
  font-family: "Another Font", serif !important;
  font-size: 16px !important;
  color: #555 !important;
}

.my-products-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* spacing between product cards */
}

.my-products-row .my-prod-item {
  flex: 0 1 300px; /* each card up to 300px wide */
  /* or use width: 300px; or max-width etc */
}

.my-products-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.ec-cart-widget . {
  background-color: #B876FF !important;
}


  Ecwid.OnPageLoaded.add(function(page) {
    // look for any element that has “Powered by” text inside
    var els = document.querySelectorAll("a[href*='lightspeed'], .ecsp-mw-footer, .ec-poweredby, .PoweredBy");
    els.forEach(function(e) {
      e.style.display = "none";
    });
  });
  
  /* Try hiding the “Powered by Lightspeed / Ecwid” footer text */
.ecsp .ecsp-mw-footer,
.ecsp .ecsp-PoweredBy,
.ec-PoweredBy,
.ecsp .ecsp-mw-footer a,
.ec-poweredby {
  display: none !important;
}

/* More generic fallback */
.ec-poweredby, .ecsp .ecsp-mw-footer {
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Try hiding the “Powered by Lightspeed / Ecwid” footer text */
.ecsp .ecsp-mw-footer,
.ecsp .ecsp-PoweredBy,
.ec-PoweredBy,
.ecsp .ecsp-mw-footer a,
.ec-poweredby {
  display: none !important;
}

/* More generic fallback */
.ec-poweredby, .ecsp .ecsp-mw-footer {
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}



