.image-products {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}
  .quantity-selector {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;

  }

  .quantity-selector button {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .quantity-selector button:hover {
    background-color: #ffffff;
  }

  .quantity-selector button:active {
    background-color: #ffffff;
  }

  .quantity-selector .decrement-btn {
    border-right: none;
    border-radius: 8px 0 0 8px;
  }

  .quantity-selector .increment-btn {
    border-left: none;
    border-radius: 0 8px 8px 0;
  }

  .quantity-selector .quantity-input {
    border-radius: 10px;
    background-color: #ffffff;
    margin: 5px;
    min-width: 57px;
  }

  .quantity-selector .quantity-input::-webkit-outer-spin-button,
  .quantity-selector .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
