body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.product-card {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  border-color: #0d6efd !important;
}

.product-img {
  height: 150px;
  object-fit: cover;
  background-color: #eee;
}

.cart-item-remove {
  cursor: pointer;
  color: #dc3545;
}

.cart-item-remove:hover {
  color: #bb2d3b;
}

/* Receipt Styling */
.receipt {
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  padding: 10px;
  background: #fff;
}

.receipt-header {
  text-align: center;
  border-bottom: 1px dashed #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.receipt-total {
  border-top: 1px dashed #000;
  padding-top: 10px;
  margin-top: 10px;
}

.receipt-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}

@media print {
  body * {
    visibility: hidden;
  }
  #receiptModal,
  #receiptModal * {
    visibility: visible;
  }
  #receiptModal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .modal-footer,
  .modal-header {
    display: none;
  }
}
