#price-filter-form {
  margin-bottom: 20px;
}

#price-filter-form label {
  display: block;
  margin-bottom: 5px;
}

#price-filter-form button {
  margin-top: 10px;
  padding: 5px 10px;
}

/* Ensure the parent container is positioned relative */
#products-grid {
  position: relative;
}

/* Spinner container */
#products-grid-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; /* Ensure it's on top */
}

/* Spinner animation */
#products-grid-spinner .spinner {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Spinner keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Layout */
#mhp-shop-wrap {
  display: flex;
  gap: 2rem;
}
#mhp-shop-wrap .add_to_cart_button {
  background-color: #e82c2f;
  color: white;
}

.mhp-cart-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.5em;
}

.mhp-qty {
  width: 3.5em;
  padding: 0.15em 0.3em;
  min-width: 60px;
  max-width: 100px;
}

.mhp-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mhp-card-link:hover {
  text-decoration: none;
}

/* Cart icon */
.mhp-cart-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.35em;
}

.mhp-cart-ico svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
} /* inherits btn colour */
.mhp-iconised {
  white-space: nowrap;
} /* keeps icon + text on one line */
#mhp-shop-wrap aside {
  width: 220px;
}

#mhp-product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
}
#mhp-product-grid .mhp-card {
  border: 1px solid #e5e5e5;
  text-align: center;
  width: 280px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
#mhp-product-grid .mhp-card .added_to_cart {
  display: none;
}
#mhp-product-grid .mhp-card .mhp-title {
  font-size: 16px;
  font-weight: 600;
  color: #54595f;
}
#mhp-product-grid .mhp-card .mhp-price {
  color: #e82c2f;
}
#mhp-product-grid .mhp-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
}
#mhp-product-grid .mhp-card .card-inner {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Media queries for #mhp-product-grid */
@media (min-width: 800px) and (max-width: 1115px) {
  #mhp-product-grid {
    max-width: 800px;
  }
}
@media (min-width: 500px) and (max-width: 800px) {
  #mhp-product-grid {
    max-width: 500px;
  }
}
/* Spinner */
.mhp-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 5px solid #e82c2f;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 100;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=mhp-utilities-custom.css.map */
