export type CheckoutSelectOption = {
  value: string;
  label: string;
};

export const checkoutCountryOptions: CheckoutSelectOption[] = [
  { value: "US", label: "United States (US)" },
  { value: "CA", label: "Canada" },
  { value: "GB", label: "United Kingdom" },
  { value: "AU", label: "Australia" },
];

export const checkoutStateOptions: CheckoutSelectOption[] = [
  { value: "", label: "Select state" },
  { value: "CA", label: "California" },
  { value: "NY", label: "New York" },
  { value: "TX", label: "Texas" },
  { value: "FL", label: "Florida" },
  { value: "IL", label: "Illinois" },
  { value: "WA", label: "Washington" },
];

export const checkoutCopy = {
  paymentBankDescription:
    "Make a direct bank transfer to complete your order. Payment instructions will be sent to your email after checkout.",
  policy:
    "Your personal data will be used to process your order and support your experience. See our Privacy Policy for details.",
} as const;
