.elementor-1020 .elementor-element.elementor-element-7ebdf7c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-7ebdf7c *//* ===============================
   AXO Shop Grid
   =============================== */

.axo-shop ul.products {
  display:inline;
  gap: 1.5rem;
}

/* Desktop */
@media (min-width: 768px) {
  .axo-shop ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .axo-shop ul.products li.product {
    width: 100% !important;
  }
}

/* Product Card */
.axo-shop ul.products li.product {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

/* Hover */
.axo-shop ul.products li.product:hover {
  border-color: #00FFDB;
  transform: translateY(-3px);
}

/* Title */
.axo-shop ul.products li.product h2 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Price */
.axo-shop ul.products li.product .price {
  color: #00FFDB;
  font-weight: 600;
  margin: 0.5rem 0;
}

/* Button */
.axo-shop ul.products li.product a.button {
  background: #000;
  color: #00FFDB;
  border: 1px solid rgba(0,255,219,0.4);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
}

.axo-shop ul.products li.product a.button:hover {
  border-color: #00FFDB;
}

/* Ensure positioning */
.axo-shop .product.product_tag-premium {
  position: relative;
}

/* Badge */
.axo-shop .product.product_tag-premium::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  right: 10px;

  background: #00FFDB;
  color: #000;

  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;

  border-radius: 0.4rem;

  box-shadow: 0 0 10px rgba(0,255,219,0.25);
  z-index: 2;
}/* End custom CSS */