/* Container styling */
#custom-cart {
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 400px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

/* Group spacing */
.qty-group {
  margin-bottom: 20px;
}

/* Label styling */
.qty-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Quantity control layout */
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Quantity input box */
.qty-control input[type="number"] {
  width: 45px;
  height: 35px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  padding: 0;
}

/* Quantity buttons */
.qty-control button {
  width: 35px;
  height: 35px;
  font-size: 18px;
  font-weight: bold;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease;
}

.qty-control button:hover {
  background-color: #ddd;
}

/* Add to cart button */
.add-cart-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Cart message */
#cart-message {
  margin-top: 15px;
  font-size: 14px;
  color: green;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  #custom-cart {
    padding: 15px;
  }

  .qty-control input[type="number"] {
    width: 40px;
    font-size: 14px;
  }

  .qty-control button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .add-cart-btn {
    width: 100%;
    font-size: 15px;
  }
}