.quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.quantity input[type=number] {
  width: 50px;
  text-align: center;
  border: none;
  height: 36px;
  font-size: 16px;
}

.quantity button {
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
}

.quantity button:hover {
  background: #ddd;
}

/* WhatsApp & Call Buttons */
.myfix-buttons {
  position: fixed;
  bottom: 20px;
  width: 100%;
  pointer-events: none;
}

.myfix-call-btn,
.myfix-whatsapp-btn {
  position: absolute;
  bottom: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 26px;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.myfix-call-btn {
  left: 20px;
  background: #0a84ff;
}

.myfix-whatsapp-btn {
  right: 20px;
  background: #25d366;
}

.myfix-call-btn:hover,
.myfix-whatsapp-btn:hover {
  transform: scale(1.1);
}
.myfix-whatsapp-btn svg {
  vertical-align: middle;
}
