







/* === BOTÃO + PARA QUICK ADD === */
.uxe-add-product-btn {
  position: absolute;
  /*top: 8px;*/
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #007cba;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.uxe-add-product-btn:hover {
  background: #005a87;
  transform: scale(1.1);
}

.uxe-add-product-btn.uxe-disabled {
  background: #95a5a6;
  cursor: not-allowed;
  opacity: 0.7;
}

.uxe-add-product-btn:disabled {
  pointer-events: none;
  opacity: 0.6;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.uxe-add-product-btn.processing {
  animation: pulse 1s infinite;
}

/* === POSICIONAMENTO DO BOTÃO NOS CARDS === */
.hlm-product-card {
  position: relative;
}

.hlm-product-card img {
  position: relative;
  z-index: 1;
}

/* === ÂNCORA CARD-WRAPPER === */
.card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.card-wrapper:hover {
  text-decoration: none;
  color: inherit;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .uxe-add-product-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
