
/* Mobile Styles */
@media (max-width: 768px) {
  table.wpf_tabular_items {
    table-layout: fixed;
    width: 100%;
    display: table;
  }
  table.wpf_tabular_items th,
  table.wpf_tabular_items td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  table.wpf_tabular_items th.wpf_tabular_product_title,
  table.wpf_tabular_items td:first-child {
    white-space: normal;
    overflow: visible;
  }
  .wpf_tabular_qty input {
    width: 60px;
  }
}

.wpf-qty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wpf-qty-buttons {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.wpf-qty-btn {
  background-color: #ddd;
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.wpf-qty-btn:hover {
  background-color: #bbb;
}

td.wpf_tabular_qty {
  text-align: center;
  vertical-align: middle;
}
