.product {
  --_product-bg: var(--color-gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 10rem;
  width: 100%;
  padding: 0.5rem 7rem 0.5rem 7rem;
  background-color: var(--_product-bg);
  border-radius: 1rem;
  font-weight: bold;
  margin-top: 1.7rem;
  gap: 0.5rem;
}

.product__img {
  width: 5rem;
  height: 6rem;
  position: relative;
  z-index: 1;
  left: -0.5rem;
  top: -2rem;
}

.product__btn {
  font-size: 0.8rem;
  cursor: pointer;
}

.product__list {
  padding: 0;
}


.product--bonbon {
  --_product-bg: var(--color-beige);
}



@media (width > 40rem) {
  .product {
    display: flex;
    margin-top: 10rem;
  }

  .product__list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  .product__item {
    display: flex;
  }

  .product__img {
    position: relative;
    z-index: 1;
    top: -3.5rem;
    left: 0.5rem;
  }
}


