.quantity{
  text-align: center;
  display: flex;
  margin: 0px;
  width: 10%;
  overflow: hidden;
  border-bottom: 1px solid black;
  border-left: none;
  border-right: none;
  border-top: none;
}

.quantity-controls{
  display: flex;
  margin-bottom: 10px;
}

.quantity-controls button{
  border: none;
  background-color: transparent;
  /* border: 1px solid #000000; */
  /* padding: 10px; */
  border-radius: 5px;
  font-size:20px;
}

.quantity-controls input{
  font-size: 20px;
}
.quantity-controls .shop-product__block__title{
  margin-top: 15px;
}

.wattage{
  padding: 10px;
  font-size: 20px;
  border-left: none;
  border-top: none;
  border-right: none;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

button:hover{
  background-color: #000000;
  color: #fff;
}
/* Style for the "Go to Cart" button */
#goToCartBtn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  cursor: pointer;
  display: none; /* Initially hide the "Go to Cart" button */
}

/* Animation for the "Go to Cart" button rotation */
@keyframes rotateCartButton {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Apply the animation when the "Go to Cart" button is displayed */
#goToCartBtn.show-rotation {
  animation: rotateCartButton 2s linear infinite;
}

/* .cart {
  border-top: 1px solid #ccc;
  padding-top: 20px;
} */

.cart h2 {
  text-align: center;
}

.cart-items li {
  list-style: none;
}
