/* Give add-to-cart buttons room to breathe in two-column mobile product lists. */
@media (max-width: 575px) {
  #products .products .product-miniature__add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  #products .products .product-miniature__add .material-icons {
    display: inline-block;
    flex: 0 0 auto;
    margin: 0;
    font-size: 16px;
    line-height: 1;
  }

  #products .products .product-miniature__add-text {
    display: inline;
  }
}

@media (max-width: 359px) {
  #products .products .product-miniature__form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  #products .products .quantity-button {
    align-self: center;
  }
}
