.product-container {
  margin-bottom: 20px;
}

.product {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}

.product-info {
  flex: 1;
}

.product-info h3 {
  margin-bottom: 10px;
}

.size-select label {
  display: block;
  margin-bottom: 5px;
}

.size-select select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#acos-popup-sales {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 10px;
  border: 1px solid #b5b5b5;
  display: none;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  gap: 5px;
  width: 90%;
  max-width: 350px; /* Limita a largura máxima para telas maiores */
  animation: slideInFromLeft 0.5s ease-in-out forwards;
}

@media (min-width: 767px) {
  #acos-popup-sales {
    width: 350px;
  }
}

.box-popup-sales {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
}

.box-popup-sales p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.box-popup-sales span {
  font-weight: bolder;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideOutToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}