div.shop-item-box-image{
  position: relative;
	width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-bottom: 75%;
}

div.shop-item-box-image img{
	position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.product-item img {
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.product-details {
  flex-grow: 1;
  padding-left: 15px;
}
.product-name {
  font-weight: bold;
  font-size: 1.2em;
}
.product-price {
  font-size: 1em;
  color: #666;
}
.product-actions {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.product-actions .switch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 25px; /* Ajuste a margem conforme necessário */
}
.product-actions .btn {
  margin-left: 10px;
}
.switch {
  position: relative;
  display: block;
  width: 40px; /* Ajuste a largura conforme necessário */
  height: 20px; /* Ajuste a altura conforme necessário */
  margin-top: 5px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px; /* Ajuste a altura conforme necessário */
  width: 14px; /* Ajuste a largura conforme necessário */
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  transform: translateX(20px); /* Ajuste o valor conforme necessário */
}
.slider.round {
  border-radius: 20px; /* Ajuste o valor conforme necessário */
}
.slider.round:before {
  border-radius: 50%;
}
