.aandenken-producten {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aandenken-producten .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.aandenken-producten .product {
  width: 30%;
  padding: 15px 15px 15px 0;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 10px;
}

.aandenken-producten .product img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.aandenken-producten .product .amount {
  font-size: 16px;
}

.aandenken-producten .button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  width: 100%;
}

.aandenken-producten .button.add_to_cart_button {
  background: #f2f2f2;
  color: #333;
}

.aandenken-producten .button.add_to_cart_button:hover {
  background: #ddd;
}

.aandenken-producten .button.remove_from_cart_button {
  background: #e2e2e2;
  color: #333;
}

.aandenken-producten .button.remove_from_cart_button:hover {
  background: #ccc;
}

.aandenken-producten .button.added_to_cart_button {
  background: #28a745;
  color: #fff;
  border: 1px solid #28a745;
}

.aandenken-producten .button.added_to_cart_button:hover {
  background: #218838;
}

.aandenken-producten h6.product-title {
  font-family: 'Work Sans', Sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
  color: var(--e-global-color-text);
}

/* Hide the label for the Aandenken Producten field */
label[for='form-field-aandenken'] {
  display: none;
}

/* Loading spinner */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
