.product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.product-item-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap : 12px
}

.product-image img {
  width: 60px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.product-info {
  flex-grow: 1;
  text-align: right;
}

.product-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
}

.product-sku {
  font-size: 13px;
  color: #888;
  margin-top: 3px;
}

.remove-from-list {
  background: none;
  border: none;
  color: red;
  font-size: 20px;
  cursor: pointer;
}

html[dir="rtl"] .product-info {
  text-align: right;
}

html[dir="ltr"] .product-info {
  text-align: left;
}

.over-count {
  position: relative;
}

.count-badge {
  position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    border: 2.211px solid var(--B12028, #B12028);
    color: #B12028;
    font-size: 11.434px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    text-align: center;
    line-height: 1;
    z-index: 10;
    width: 18px;
    height: 18px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.over-count.just-added {
  animation: pulseIcon 0.4s ease;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

#popup-product-list {
    max-height: 350px;
    height: auto;
    overflow-y: auto;
}

.leos-toast {
  position: fixed;
  bottom: max(10vh, 65px);
  inset-inline-end: 5px;
  background: #323232;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
  font-size: 14px;
}
.leos-toast.show {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (width < 768px) {
  .jet-dropbar__content-wrapper {
    transform: translateX(-25%) !important;
  }
}