.elementor-330 .elementor-element.elementor-element-92ad17f{--display:flex;}/* Start custom CSS */.woocommerce-button.button-product.product_type_simple.add_to_cart_button {
  position: relative; /* برای قرار دادن دکمه "افزودن به سبد خرید" در موقعیت نسبی */
}

.woocommerce-button.button-product.product_type_simple.add_to_cart_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* لایه شفاف روی دکمه */
  opacity: 0; /* لایه شفاف به طور پیش فرض پنهان است */
  cursor: pointer;
  transition: opacity 0.3s ease; /* تنظیم افکت انتقال */
}

.woocommerce-button.button-product.product_type_simple.add_to_cart_button:hover::after {
  opacity: 1; /* نمایش لایه شفاف هنگام هاور روی دکمه */
}

.woocommerce-button.button-product.product_type_simple.add_to_cart_button:click {
  pointer-events: none; /* غیرفعال کردن کلیک دکمه در حین نمایش پاپ آپ */
}/* End custom CSS */