1 ? " done" : "")}>
{step > 1 ? : "1"} Datos
2 ? " done" : "")}>
{step > 2 ? : "2"} Envío
3 Pago
{step === 1 && (
<>
¿Cómo te contactamos?
update("email", e.target.value)} placeholder="vos@email.com" type="email" />
update("nombre", e.target.value)} placeholder="María Pérez" />
update("telefono", e.target.value)} placeholder="+54 9 11 ..." />
>
)}
{step === 2 && (
<>
¿Cómo lo recibís?
setShippingMethod("envio")} style={{ borderColor: shippingMethod === "envio" ? "var(--sage-700)" : "var(--line)" }}>
{shippingMethod === "envio" && }
Envío a domicilio · CABA / GBA
24 a 72 hs hábiles
{subtotal >= 35000 ? "Gratis" : formatPrice(4500, currency, rates)}
setShippingMethod("nacional")} style={{ borderColor: shippingMethod === "nacional" ? "var(--sage-700)" : "var(--line)" }}>
{shippingMethod === "nacional" && }
Envío nacional · Andreani / OCA
3 a 7 días hábiles
{formatPrice(6800, currency, rates)}
setShippingMethod("retiro")} style={{ borderColor: shippingMethod === "retiro" ? "var(--sage-700)" : "var(--line)" }}>
{shippingMethod === "retiro" && }
Retiro en showroom · Palermo
Lu a Vi 11 a 19 hs
Gratis
{shippingMethod !== "retiro" && (
<>
Dirección de entrega
update("direccion", e.target.value)} placeholder="Av. Santa Fe 1234, 4°B" />
>
)}
>
)}
{step === 3 && (
<>
Método de pago
{[
{ id: "mp", nm: "Mercado Pago", sb: "Tarjetas, débito, dinero en cuenta" },
{ id: "transfer", nm: "Transferencia bancaria", sb: "5% off · te enviamos los datos" },
{ id: "tarjeta", nm: "Link de pago tarjeta", sb: "Hasta 6 cuotas sin interés" },
{ id: "efectivo", nm: "Efectivo", sb: "Solo retiro en showroom" },
{ id: "wpp", nm: "Coordinar por WhatsApp", sb: "Te escribimos para terminar" },
].map(m => (
))}
Resumen
Subtotal{formatPrice(subtotal, currency, rates)}
{discount > 0 &&
Cupón MIMA10− {formatPrice(discount, currency, rates)}
}
Envío{shippingCost === 0 ? "Gratis" : formatPrice(shippingCost, currency, rates)}
Total{formatPrice(total, currency, rates)}
>
)}