// en/cart
export const cart = {
  title: 'Shopping Cart',
  empty: 'Your cart is empty',
  emptyCta: 'Browse deals',
  add: 'Add to cart',
  added: 'Added to cart',
  remove: 'Remove item',
  qty: 'Quantity',
  qty_decrease: 'Decrease quantity',
  qty_increase: 'Increase quantity',
  qty_updated: 'Quantity updated',
  subtotal: 'Subtotal',
  total: 'Total',
  checkout: 'Checkout',
  badgeLabel: '{count} items in cart',
  removedExpired: 'Expired',
  removedSoldOut: 'Sold out',
  viewCart: 'View cart',
  outOfStock: 'Out of stock',
  maxReached: 'Maximum quantity reached',
  mergeToast: 'Your cart has been merged',
  mergeRemovedToast: 'Some items were removed because they expired or sold out',
  checkout_login_title: 'Sign in to complete checkout',
  checkout_login_desc: 'Enter your phone number to complete your purchase',
  checkout_payment_method: 'Payment method',
  checkout_pay: 'Pay now',
  checkout_processing: 'Processing...',
  checkout_stale_title: 'Some items are no longer available',
  checkout_stale_desc: 'Update your cart and re-confirm to continue',
  checkout_reconfirm: 'Re-confirm and pay',
  checkout_updated_qty: 'Quantity updated to {qty}',
  checkout_error: 'Checkout failed. Please try again.',
  checkout_empty: 'Your cart is empty',
  checkout_inactive: 'Deal no longer active',
  no_saved_methods: 'No saved payment methods',
  add_payment_method: 'Add payment method',
  wishlist_upsell_title: 'Also in your wishlist',
  drawer_desc: 'Shopping cart panel. Navigate items, update quantities, and proceed to checkout.',
  loading: 'Loading...',
} as const;
