.gab-glass-card {
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(200,200,200,0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 15px;
  padding: 1rem;
  z-index: 10;
}

.item.active-product-card {
  border: 2px solid #127DAE !important;
  box-shadow: 0 0 10px rgba(18, 125, 174, 0.4);
  border-radius: 15px;
}

.item.active-card {
  border: 2px solid #fcba3d !important;
  box-shadow: 0 0 10px rgba(252, 186, 61, 0.6);
  border-radius: 15px;
}

.product-card-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.selected-product-item {
  margin: 1rem 0;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(200, 200, 200, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;

  display: flex;
  align-items: center;
}

.selected-product-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 1rem;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  gap: 0.25rem;
}

.qty-controls button {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 0 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  width: 28px;
  height: 28px;
}

.qty-input {
  width: 40px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px;
}

.disable-drag .owl-stage {
  pointer-events: none; 
  touch-action: none;   
}

.product-card-enabled {
  pointer-events: auto !important;
}

@media (max-width: 576px) {
  .selected-product-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .product-info {
    width: 100%;
  }

  .price-qty-row {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-select-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #127dae;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s ease;
}

.product-select-checkbox:checked {
  border-color: #fcba3d;
  background-color: #fcba3d;
  box-shadow: 0 0 5px #fcba3d;
}

.product-select-checkbox:checked::after {
  content: "";
  display: block;
  position: relative;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
