/* Catalog sites: a simple ordering app — categories beside the products, cart by WhatsApp. */
.lfc { --lfc-bg:#f4f7f5; --lfc-card:#fff; --lfc-line:#e4eae7; --lfc-out:#c9564f; --lfc-cta:color-mix(in srgb,var(--site-accent) 86%,#fff); --lfc-ink:#16211c; --lfc-muted:#6b7a73; --lfc-whatsapp:#128c55; min-height:100vh; margin:0; background:var(--lfc-bg); color:var(--lfc-ink); font-family:Archivo,Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
.lfc .lfb-icon { width:20px; height:20px; flex:none; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.lfc .lfb-sr { position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.lfc .lfb-icon-sprite { position:absolute; width:0; height:0; overflow:hidden; }
.lfc .skip-link { position:absolute; left:12px; top:-60px; z-index:30; padding:10px 14px; border-radius:8px; background:var(--lfc-ink); color:#fff; }
.lfc .skip-link:focus { top:12px; }
.lfc :focus-visible { outline:3px solid color-mix(in srgb,var(--site-accent) 55%,transparent); outline-offset:2px; }
.lfc [hidden] { display:none !important; }

/* Header */
.lfc-header { position:sticky; top:0; z-index:20; background:#fff; box-shadow:0 1px 0 var(--lfc-line); }
.lfc-header-inner { width:min(1400px,100%); margin:0 auto; padding:13px 22px; display:grid; grid-template-columns:1fr minmax(0,560px) 1fr; align-items:center; gap:22px; }
.lfc-header-inner > .lfc-brand { justify-self:start; }
.lfc-header-inner > .lfc-header-actions { justify-self:end; }
.lfc-brand { min-width:0; max-width:100%; display:flex; align-items:center; gap:11px; color:var(--lfc-ink); text-decoration:none; }
.lfc-brand img { max-width:190px; max-height:46px; width:auto; object-fit:contain; }
.lfc-brand-text { min-width:0; display:flex; flex-direction:column; gap:2px; }
.lfc-brand-text strong { overflow:hidden; font-size:15px; font-weight:800; letter-spacing:-.01em; text-overflow:ellipsis; white-space:nowrap; }
.lfc-brand-text small { overflow:hidden; color:var(--lfc-muted); font-size:12px; text-overflow:ellipsis; white-space:nowrap; }
.lfc-mark { width:40px; height:40px; display:grid; flex:none; place-items:center; border-radius:13px; background:var(--site-accent); color:#fff; font-size:17px; font-weight:800; }
.lfc-search { position:relative; width:100%; justify-self:center; display:flex; align-items:center; }
.lfc-search .lfb-icon { position:absolute; left:15px; color:var(--lfc-muted); pointer-events:none; }
.lfc-search input { width:100%; min-height:46px; padding:0 15px 0 46px; border:1px solid #e0e7e3; border-radius:14px; background:var(--lfc-bg); color:var(--lfc-ink); font-size:14.5px; }
.lfc-search input:focus { border-color:var(--site-accent); background:#fff; outline:0; box-shadow:0 0 0 3px color-mix(in srgb,var(--site-accent) 16%,transparent); }
.lfc-cart { position:relative; min-height:48px; padding:0 12px; display:inline-flex; align-items:center; gap:10px; border:1px solid #dde7e2; border-radius:14px; background:#fff; color:var(--lfc-ink); font-size:14px; font-weight:700; text-align:left; }
.lfc-cart-copy { min-width:68px; display:flex; flex-direction:column; gap:1px; line-height:1.15; }
.lfc-cart-copy > span { font-size:12.5px; font-weight:750; }
.lfc-cart-copy strong { color:var(--lfc-muted); font-size:11.5px; font-weight:750; font-variant-numeric:tabular-nums; }
.lfc-cart.has-items .lfc-cart-copy strong { color:var(--site-accent); }
.lfc-cart b { min-width:22px; height:22px; padding:0 6px; display:grid; place-items:center; border-radius:999px; background:#eef2f0; color:#8e9a94; font-size:11.5px; font-weight:800; }
.lfc-cart.has-items b { background:var(--site-accent); color:#fff; }
.lfc-cart b.is-bumped { animation:lfc-bump .35s ease-out; }
@keyframes lfc-bump { 50% { transform:scale(1.35); } }

/* Category chips (phones) */
.lfc-chips { display:none; gap:8px; padding:0 16px 12px; overflow-x:auto; scrollbar-width:none; }
.lfc-chips::-webkit-scrollbar { display:none; }
.lfc-chips a { min-height:36px; padding:0 13px; display:inline-flex; flex:0 0 auto; align-items:center; gap:7px; border:1px solid #e2e9e5; border-radius:999px; background:#fff; color:#35463e; font-size:12px; font-weight:600; text-decoration:none; }
.lfc-chips a[aria-current] { border-color:var(--site-accent); background:var(--site-accent); color:#fff; }
.lfc-chips .lfb-icon { width:16px; height:16px; }

/* Body */
.lfc-body { width:min(1400px,100%); margin:0 auto; display:flex; align-items:flex-start; }
.lfc-sidebar { position:sticky; top:85px; width:252px; flex:none; max-height:calc(100dvh - 85px); overflow:hidden auto; overscroll-behavior:contain; scrollbar-width:thin; padding:18px 12px 24px; display:flex; flex-direction:column; gap:5px; }
.lfc-sidebar-title { margin:0 0 6px; padding:0 10px; font-size:10.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#8e9a94; }
.lfc-cat { min-height:40px; padding:0 10px; display:flex; align-items:center; gap:10px; border-radius:12px; color:#24352d; text-decoration:none; }
.lfc-cat:hover { background:#fff; }
.lfc-cat[aria-current] { background:color-mix(in srgb,var(--site-accent) 10%,#fff); box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--site-accent) 28%,transparent); color:var(--site-accent); }
.lfc-cat-icon { width:28px; height:28px; flex:none; display:grid; place-items:center; border-radius:10px; background:color-mix(in srgb,var(--site-accent) 12%,#fff); color:var(--site-accent); }
.lfc-cat-icon .lfb-icon { width:16px; height:16px; }
.lfc-cat-name { flex:1; min-width:0; overflow-wrap:anywhere; font-size:12.5px; font-weight:500; line-height:1.3; letter-spacing:0; }
.lfc-cat[aria-current] .lfc-cat-name { font-weight:650; }
.lfc-cat small { color:#9aa7a1; font-size:11px; font-weight:500; font-variant-numeric:tabular-nums; }
.lfc-cat[aria-current] small { color:var(--site-accent); }

.lfc-main { flex:1; min-width:0; padding:20px 22px 32px; }
.lfc-heading { margin-bottom:14px; display:flex; flex-wrap:wrap; align-items:center; gap:10px 14px; }
.lfc-heading h1 { flex:1; min-width:0; margin:0; font-size:18px; font-weight:650; line-height:1.25; letter-spacing:-.01em; overflow-wrap:anywhere; }
.lfc-heading span { flex:none; color:var(--lfc-muted); font-size:13px; font-weight:600; }

/* Products */
.lfc-products { display:grid; grid-template-columns:repeat(auto-fill,minmax(208px,1fr)); gap:14px; }
.lfc-product { min-width:0; display:flex; flex-direction:column; overflow:hidden; border:1px solid var(--lfc-line); border-radius:17px; background:var(--lfc-card); }
.lfc-product-image { position:relative; flex:none; width:100%; aspect-ratio:1/1; min-height:0; overflow:hidden; display:grid; place-items:center; background:var(--lfc-tint,#f4f7f5); }
.lfc-product-image.has-photo { background:#fff; }
.lfc-product-image img { position:absolute; top:50%; left:50%; width:78%; height:78%; transform:translate(-50%,-50%); object-fit:contain; object-position:center; }
.lfc-product-image .lfb-icon { width:40px; height:40px; stroke-width:1.4; }
.lfc-price { position:absolute; top:10px; right:10px; padding:5px 10px; border-radius:999px; background:#fff; color:var(--site-accent); font-size:12.5px; font-weight:700; font-variant-numeric:tabular-nums; box-shadow:0 6px 14px -10px rgba(10,40,26,.9); }
.lfc-product-image em { position:absolute; top:10px; left:10px; padding:4px 9px; border-radius:999px; background:color-mix(in srgb,var(--lfc-out) 14%,#fff); color:var(--lfc-out); font-size:10.5px; font-style:normal; font-weight:700; }
.lfc-product-body { flex:1; padding:10px 12px 12px; display:flex; flex-direction:column; gap:3px; }
.lfc-product-brand { color:#9aa7a1; font-size:10.5px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; }
.lfc-product-body h2 { margin:0; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden; font-size:12.5px; font-weight:500; line-height:1.35; letter-spacing:0; }
.lfc-product-compare { color:var(--lfc-muted); font-size:12px; }
.lfc-buy { margin-top:auto; padding-top:8px; }
.lfc-add { width:100%; min-height:40px; display:flex; align-items:center; justify-content:center; gap:7px; border:0; border-radius:12px; background:var(--lfc-cta); color:#fff; font-size:13px; font-weight:650; letter-spacing:-.01em; transition:background .16s ease-out,transform .12s ease-out; }
.lfc-add .lfb-icon { width:16px; height:16px; stroke-width:2.4; }
.lfc-add:hover:not(:disabled) { background:var(--site-accent); }
.lfc-add:active:not(:disabled) { transform:translateY(1px); }
.lfc-add:disabled { background:color-mix(in srgb,var(--lfc-out) 12%,#fff); color:var(--lfc-out); opacity:1; box-shadow:none; }
.lfc-stepper { display:flex; align-items:center; justify-content:space-between; gap:6px; height:40px; padding:0 4px; border-radius:12px; background:color-mix(in srgb,var(--site-accent) 8%,#fff); }
.lfc-stepper strong { font-size:14px; font-weight:800; font-variant-numeric:tabular-nums; }
.lfc-stepper button { width:32px; height:32px; display:grid; place-items:center; border:0; border-radius:10px; background:#fff; color:var(--site-accent); box-shadow:0 1px 2px rgba(10,40,26,.12); }
.lfc-stepper button[data-step="1"] { background:var(--lfc-cta); color:#fff; box-shadow:none; }
.lfc-stepper .lfb-icon { width:15px; height:15px; stroke-width:2.6; }

.lfc-send-again { padding:0; border:0; background:none; color:var(--site-accent); font-size:inherit; font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.lfc-send-again:hover { color:color-mix(in srgb,var(--site-accent) 80%,#000); }

/* Categories as the home page (catalogCategoryLayout = home) */
.lfc.is-home .lfc-body { display:block; }
.lfc.is-home .lfc-main { padding:22px 22px 36px; }
.lfc.is-home .lfc-filters-button { display:inline-flex; }
.lfc-home-head { margin-bottom:16px; }
.lfc-home-head h1 { margin:0 0 4px; font-size:21px; font-weight:700; letter-spacing:-.02em; }
.lfc-home-head p { margin:0; color:var(--lfc-muted); font-size:13.5px; line-height:1.5; }
.lfc-home-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(252px,1fr)); gap:10px; }
.lfc-home-card { min-height:72px; padding:11px 12px; display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:12px; border:1px solid var(--lfc-line); border-radius:14px; background:var(--lfc-card); color:var(--lfc-ink); text-decoration:none; transition:border-color .16s ease-out,box-shadow .16s ease-out; }
.lfc-home-card:hover { border-color:color-mix(in srgb,var(--site-accent) 45%,transparent); box-shadow:0 16px 26px -24px rgba(10,40,26,.9); }
.lfc-home-icon { width:46px; height:46px; flex:none; display:grid; place-items:center; overflow:hidden; border-radius:13px; background:var(--lfc-tint,#eef2f0); }
.lfc-home-icon .lfb-icon { width:22px; height:22px; stroke-width:1.6; }
.lfc-home-icon img { width:100%; height:100%; object-fit:cover; }
.lfc-home-copy { min-width:0; display:flex; flex-direction:column; gap:2px; }
.lfc-home-copy strong { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; font-size:12.5px; font-weight:600; line-height:1.3; letter-spacing:-.01em; overflow-wrap:anywhere; }
.lfc-home-copy small { color:#9aa7a1; font-size:11px; font-weight:500; font-variant-numeric:tabular-nums; }
.lfc-home-card > .lfb-icon { width:17px; height:17px; color:#c3cec9; transition:color .16s ease-out,transform .16s ease-out; }
.lfc-home-card:hover > .lfb-icon { color:var(--site-accent); transform:translateX(2px); }
.lfc-back { flex:none; min-height:34px; padding:0 12px 0 9px; display:inline-flex; align-items:center; gap:6px; border:1px solid var(--lfc-line); border-radius:999px; background:#fff; color:var(--lfc-ink); font-size:12.5px; font-weight:600; text-decoration:none; }
.lfc-back:hover { border-color:color-mix(in srgb,var(--site-accent) 45%,transparent); color:var(--site-accent); }
.lfc-back .lfb-icon { width:15px; height:15px; }
/* On the home layout the products take the whole width, six or more to a row. */
.lfc.is-home .lfc-products { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
@media (min-width:600px) { .lfc.is-home .lfc-products { grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (min-width:820px) { .lfc.is-home .lfc-products { grid-template-columns:repeat(4,minmax(0,1fr)); } }
@media (min-width:1040px) { .lfc.is-home .lfc-products { grid-template-columns:repeat(5,minmax(0,1fr)); } }
@media (min-width:1200px) { .lfc.is-home .lfc-products { grid-template-columns:repeat(6,minmax(0,1fr)); gap:13px; } }
.lfc-heading > .lfc-back + h1 { font-size:17px; }
@media (max-width:640px) { .lfc-heading .lfc-back { width:34px; padding:0; justify-content:center; } .lfc-heading .lfc-back span { display:none; } }
@media (max-width:560px) { .lfc-home-grid { grid-template-columns:1fr; gap:8px; } .lfc-home-card { min-height:64px; padding:10px 12px; } .lfc-home-icon { width:42px; height:42px; } .lfc.is-home .lfc-main { padding:16px 16px 28px; } }

.lfc-pages { margin-top:26px; display:flex; justify-content:center; gap:10px; }
.lfc-pages a, .lfc-empty a { min-height:44px; padding:0 18px; display:inline-flex; align-items:center; border-radius:12px; background:var(--site-accent); color:#fff; font-weight:800; text-decoration:none; }
.lfc-empty { padding:52px 24px; display:flex; flex-direction:column; align-items:center; gap:10px; border:1px dashed #d8e2dd; border-radius:18px; background:#fff; text-align:center; }
.lfc-empty h2 { margin:0; font-size:19px; font-weight:800; }
.lfc-empty p { margin:0; max-width:420px; color:var(--lfc-muted); line-height:1.5; }

/* Order and delivery drawer */
.lfc.cart-drawer-open { overflow:hidden; }
.lfc-cart-dialog { position:fixed; inset:0 0 0 auto; width:min(500px,100vw); max-width:none; height:100dvh; max-height:none; margin:0; padding:0; border:0; border-radius:0; overflow:hidden; background:#fff; color:var(--lfc-ink); box-shadow:-24px 0 64px -36px rgba(10,40,26,.75); transform:translateX(100%); transition:transform .28s cubic-bezier(.22,1,.36,1); }
.lfc-cart-dialog[open] { display:flex; flex-direction:column; }
.lfc-cart-dialog.is-open { transform:translateX(0); }
.lfc-cart-dialog::backdrop { background:rgba(11,27,20,0); backdrop-filter:blur(0); transition:background .28s ease-out,backdrop-filter .28s ease-out; }
.lfc-cart-dialog.is-open::backdrop { background:rgba(11,27,20,.48); backdrop-filter:blur(2px); }
.lfc-cart-dialog header { position:relative; z-index:2; min-height:82px; padding:18px 22px; display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid var(--lfc-line); background:#fff; }
.lfc-cart-dialog h2 { margin:0 0 3px; font-size:20px; font-weight:800; letter-spacing:-.025em; }
.lfc-cart-dialog header small { color:var(--lfc-muted); font-size:12.5px; }
.lfc-cart-dialog header button { width:42px; height:42px; display:grid; flex:none; place-items:center; padding:0; border:1px solid var(--lfc-line); border-radius:13px; background:#fff; color:var(--lfc-ink); transition:background .16s ease-out,border-color .16s ease-out; }
.lfc-cart-dialog header button:hover { border-color:#ccd8d2; background:var(--lfc-bg); }
.lfc-cart-progress { min-height:58px; padding:0 22px; display:grid; grid-template-columns:auto minmax(28px,1fr) auto; align-items:center; gap:10px; border-bottom:1px solid var(--lfc-line); background:#fff; }
.lfc-cart-progress span { display:flex; align-items:center; gap:7px; color:var(--lfc-muted); font-size:12px; font-weight:700; }
.lfc-cart-progress span b { width:24px; height:24px; display:grid; place-items:center; border-radius:50%; background:#eef3f0; color:#728078; font-size:11px; }
.lfc-cart-progress span[aria-current="step"] { color:var(--lfc-ink); }
.lfc-cart-progress span[aria-current="step"] b { background:var(--site-accent); color:#fff; }
.lfc-cart-progress i { height:1px; background:#dfe7e3; }
.lfc-cart-content { flex:1; min-height:0; overflow-y:auto; scrollbar-color:#b9c7c0 transparent; scrollbar-width:thin; }
.lfc-cart-content::-webkit-scrollbar { width:8px; }
.lfc-cart-content::-webkit-scrollbar-thumb { border:2px solid transparent; border-radius:999px; background:#b9c7c0; background-clip:padding-box; }
.lfc-cart-step { min-height:100%; display:flex; flex-direction:column; }
.lfc-cart-step[hidden] { display:none; }
.lfc-cart-section { padding:22px 22px 8px; }
.lfc-cart-section-heading { margin-bottom:5px; display:flex; align-items:baseline; justify-content:space-between; gap:16px; }
.lfc-cart-section-heading h3 { margin:0; font-size:14px; font-weight:800; letter-spacing:-.01em; }
.lfc-cart-section-heading span { color:var(--lfc-muted); font-size:12px; }
.lfc-cart-section-heading b { color:var(--lfc-ink); font-weight:800; }
#cart-lines { padding:4px 0; }
.lfc-line { padding:12px 0; display:flex; align-items:center; gap:11px; border-bottom:1px solid #f1f5f3; }
.lfc-line-copy { flex:1; min-width:0; display:flex; flex-direction:column; gap:2px; }
.lfc-line-copy strong { font-size:13.5px; font-weight:700; line-height:1.3; }
.lfc-line-copy small { color:#7b8a83; font-size:11.5px; }
.lfc-line-steps { display:flex; align-items:center; gap:7px; }
.lfc-line-steps button { width:34px; height:34px; display:grid; place-items:center; padding:0; border:1px solid #e2e9e5; border-radius:11px; background:#fff; color:var(--lfc-ink); }
.lfc-line-steps button:last-child { border-color:transparent; background:color-mix(in srgb,var(--site-accent) 12%,#fff); color:var(--site-accent); }
.lfc-line-steps .lfb-icon { width:15px; height:15px; stroke-width:2.4; }
.lfc-line-steps strong { min-width:18px; text-align:center; font-size:14px; font-weight:800; font-variant-numeric:tabular-nums; }
.lfc-line-total { min-width:66px; text-align:right; font-size:13.5px; font-weight:800; font-variant-numeric:tabular-nums; }
.lfc-cart-empty { padding:32px 10px 40px; text-align:center; color:var(--lfc-muted); }
.lfc-cart-empty strong { display:block; margin-bottom:4px; color:var(--lfc-ink); font-size:15px; }
.lfc-cart-dialog form { display:grid; gap:18px; }
.lfc-cart-back { width:max-content; margin:18px 22px -2px; padding:0; display:inline-flex; align-items:center; gap:7px; border:0; background:transparent; color:var(--site-accent); font-size:12.5px; font-weight:750; }
.lfc-cart-back .lfb-icon { width:17px; height:17px; }
.lfc-delivery-method { margin:0; padding:20px 22px 0; display:grid; grid-template-columns:1fr 1fr; gap:10px; border:0; border-top:1px solid var(--lfc-line); }
.lfc-delivery-method legend { width:100%; margin:0 0 12px; padding:0; font-size:14px; font-weight:800; letter-spacing:-.01em; }
.lfc-delivery-method label { position:relative; min-width:0; cursor:pointer; }
.lfc-delivery-method input { position:absolute; width:1px; height:1px; opacity:0; }
.lfc-delivery-method label > span { min-height:82px; padding:12px; display:grid; grid-template-columns:auto 1fr; grid-template-rows:auto auto; column-gap:9px; align-content:center; border:1px solid #dfe8e3; border-radius:14px; background:#fff; color:#526159; transition:border-color .16s ease-out,background .16s ease-out,box-shadow .16s ease-out; }
.lfc-delivery-method .lfb-icon { grid-row:1/3; align-self:center; color:var(--site-accent); }
.lfc-delivery-method b { color:var(--lfc-ink); font-size:13.5px; }
.lfc-delivery-method small { overflow:hidden; color:var(--lfc-muted); font-size:11px; font-weight:500; line-height:1.3; text-overflow:ellipsis; white-space:nowrap; }
.lfc-delivery-method input:checked + span { border-color:color-mix(in srgb,var(--site-accent) 48%,#fff); background:color-mix(in srgb,var(--site-accent) 7%,#fff); box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--site-accent) 18%,transparent); }
.lfc-delivery-method input:focus-visible + span { outline:3px solid color-mix(in srgb,var(--site-accent) 42%,transparent); outline-offset:2px; }
.lfc-delivery-fields { padding:0 22px; display:grid; gap:13px; }
.lfc-delivery-fields > label { display:grid; gap:6px; color:#4a5a53; font-size:12.5px; font-weight:700; }
.lfc-delivery-fields > label small { color:#829089; font-weight:500; }
.lfc-delivery-fields input, .lfc-delivery-fields textarea { width:100%; padding:11px 12px; border:1px solid #dce5e0; border-radius:12px; background:#f7faf8; color:var(--lfc-ink); font:inherit; font-size:13.5px; resize:vertical; }
.lfc-delivery-fields input:focus, .lfc-delivery-fields textarea:focus { border-color:var(--site-accent); background:#fff; outline:0; box-shadow:0 0 0 3px color-mix(in srgb,var(--site-accent) 14%,transparent); }
.lfc-delivery-fields input::placeholder, .lfc-delivery-fields textarea::placeholder { color:#8a9891; }
.lfc-payment-methods { margin:0; padding:0 22px; border:0; }
.lfc-payment-methods legend { width:100%; margin:0 0 10px; padding:0; font-size:14px; font-weight:800; }
.lfc-payment-methods > div { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.lfc-payment-methods label { position:relative; min-width:0; cursor:pointer; }
.lfc-payment-methods input { position:absolute; width:1px; height:1px; opacity:0; }
.lfc-payment-methods label span { min-height:58px; padding:10px 12px; display:grid; align-content:center; gap:2px; border:1px solid #dfe8e3; border-radius:12px; background:#fff; transition:border-color .16s ease-out,background .16s ease-out,box-shadow .16s ease-out; }
.lfc-payment-methods label b { overflow:hidden; color:var(--lfc-ink); font-size:13px; text-overflow:ellipsis; white-space:nowrap; }
.lfc-payment-methods label small { color:var(--lfc-muted); font-size:11px; }
.lfc-payment-methods input:checked + span { border-color:color-mix(in srgb,var(--site-accent) 48%,#fff); background:color-mix(in srgb,var(--site-accent) 7%,#fff); box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--site-accent) 18%,transparent); }
.lfc-payment-methods input:focus-visible + span { outline:3px solid color-mix(in srgb,var(--site-accent) 42%,transparent); outline-offset:2px; }
.lfc-cart-actions { position:sticky; bottom:0; z-index:1; padding:16px 22px calc(20px + env(safe-area-inset-bottom,0px)); display:grid; gap:10px; border-top:1px solid var(--lfc-line); background:#fff; box-shadow:0 -18px 32px -30px rgba(10,40,26,.7); }
.lfc-cart-next { margin-top:auto; }
.lfc-cart-total { margin:0 0 2px; display:flex; align-items:baseline; justify-content:space-between; color:var(--lfc-muted); font-size:13.5px; }
.lfc-cart-total strong { color:var(--lfc-ink); font-size:22px; font-weight:800; letter-spacing:-.025em; font-variant-numeric:tabular-nums; }
#send-order { min-height:52px; display:flex; align-items:center; justify-content:center; gap:9px; border:0; border-radius:14px; background:var(--lfc-whatsapp); color:#fff; font-size:15px; font-weight:800; }
#send-order:hover:not(:disabled) { background:#0d7546; }
#send-order:disabled { background:#c8d4ce; cursor:not-allowed; }
#cart-continue { min-height:52px; display:flex; align-items:center; justify-content:center; gap:9px; border:0; border-radius:14px; background:var(--site-accent); color:#fff; font-size:15px; font-weight:800; }
#cart-continue:hover:not(:disabled) { filter:brightness(.92); }
#cart-continue:disabled { background:#c8d4ce; cursor:not-allowed; }
#cart-continue .lfb-icon { width:18px; height:18px; }
#clear-order { min-height:44px; border:1px solid var(--lfc-line); border-radius:12px; background:#fff; color:#344054; font-weight:700; }
#order-message:not(:empty) { margin:0; padding:10px 12px; border-radius:12px; background:#f1f5f3; color:#24352d; font-size:13px; line-height:1.5; }
.lfc-cart-note { color:#7b8a83; font-size:11.5px; line-height:1.45; }
.lfc-preview-notice { position:fixed; left:50%; bottom:18px; z-index:25; width:min(560px,calc(100vw - 32px)); padding:12px 16px; transform:translateX(-50%); border-radius:12px; background:var(--lfc-ink); color:#fff; font-size:13px; line-height:1.45; }
.lfc-noscript { margin:0; padding:12px; text-align:center; }

/* Editor preview: the bar sits in the flow of the canvas. */
.lfc-editor { min-height:0; padding-bottom:0; }
.lfc-editor .lfc-header, .lfc-editor .lfc-sidebar { position:static; }
@media (max-width:1040px) {
  .lfc-header-inner { grid-template-columns:minmax(0,1fr) auto; gap:12px; padding:12px 16px; }
  .lfc-search { grid-column:1/-1; grid-row:2; max-width:none; }
  .lfc-chips { display:flex; }
  .lfc-sidebar { display:none; }
  .lfc-main { padding:16px 16px 28px; }
  .lfc-heading h1 { font-size:16.5px; }
  .lfc-products { grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:10px; }
  .lfc-product-image { aspect-ratio:1/1; }
  .lfc-product-image img { width:80%; height:80%; }
  .lfc-product-body { padding:9px 10px 11px; }
  .lfc-stepper { height:44px; }
  .lfc-stepper button { width:40px; height:40px; }
  .lfc-add { min-height:44px; }
  .lfc-product-body h2 { font-size:12px; }
  .lfc-cart-dialog { width:100%; }
}
@media (max-width:420px) { .lfc-cart-copy > span { display:none; } .lfc-cart-copy { min-width:auto; } .lfc-brand-text small { display:none; } }
@media (prefers-reduced-motion:reduce) { .lfc-cart b.is-bumped { animation:none; } .lfc-cart-dialog,.lfc-cart-dialog::backdrop { transition:none; } }

/* Filters: brand, price, active chips and the phone dialog */
.lfc-header-actions { display:flex; align-items:center; gap:10px; }
.lfc-filters-button { position:relative; display:none; min-height:46px; padding:0 14px; align-items:center; gap:8px; border:1px solid #dde7e2; border-radius:14px; background:#fff; color:var(--lfc-ink); font-size:14px; font-weight:700; }
.lfc-filters-button i { position:absolute; top:9px; right:9px; width:8px; height:8px; border-radius:999px; background:var(--site-accent); }
.lfc-brands { display:flex; flex-direction:column; gap:2px; margin-bottom:4px; }
.lfc-brands a { min-height:38px; padding:0 10px; display:flex; align-items:center; justify-content:space-between; gap:10px; border-radius:11px; color:#24352d; font-size:13px; font-weight:600; text-decoration:none; }
.lfc-brands a:hover { background:#fff; }
.lfc-brands a[aria-current] { background:color-mix(in srgb,var(--site-accent) 10%,#fff); box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--site-accent) 28%,transparent); color:var(--site-accent); font-weight:800; }
.lfc-brands small { color:#93a09a; font-size:11.5px; font-weight:700; }
.lfc-price-filter { padding:0 10px; display:flex; align-items:center; flex-wrap:wrap; gap:8px; }
.lfc-price-filter label { flex:1 1 84px; min-width:0; }
.lfc-price-filter input { width:100%; min-height:40px; padding:0 10px; border:1px solid #e0e7e3; border-radius:11px; background:#fff; color:var(--lfc-ink); font-size:13.5px; }
.lfc-price-filter input:focus { border-color:var(--site-accent); outline:0; box-shadow:0 0 0 3px color-mix(in srgb,var(--site-accent) 16%,transparent); }
.lfc-price-dash { color:#9aa7a1; }
.lfc-price-filter button { min-height:40px; padding:0 14px; border:1px solid color-mix(in srgb,var(--site-accent) 30%,transparent); border-radius:11px; background:color-mix(in srgb,var(--site-accent) 10%,#fff); color:var(--site-accent); font-size:13px; font-weight:800; }
.lfc-sidebar .lfc-clear, .lfc-filters-body .lfc-clear { margin:10px 10px 0; color:var(--lfc-muted); font-size:12.5px; font-weight:700; text-decoration:underline; }
.lfc-active-filters { margin:0 0 16px; display:flex; flex-wrap:wrap; align-items:center; gap:7px; }
.lfc-active-filters a { min-height:32px; padding:0 11px; display:inline-flex; align-items:center; gap:6px; border:1px solid #dde7e2; border-radius:999px; background:#fff; color:#3a4a43; font-size:12px; font-weight:600; text-decoration:none; transition:border-color .16s ease-out,color .16s ease-out,background .16s ease-out; }
.lfc-active-filters a:hover { border-color:var(--site-accent); color:var(--site-accent); }
.lfc-active-filters .lfb-icon { width:14px; height:14px; stroke-width:2.2; }
.lfc-active-filters .lfc-clear { margin:0; border-color:transparent; background:color-mix(in srgb,var(--lfc-out) 9%,#fff); color:var(--lfc-out); font-weight:600; text-decoration:none; }
.lfc-active-filters .lfc-clear:hover { border-color:color-mix(in srgb,var(--lfc-out) 35%,transparent); background:color-mix(in srgb,var(--lfc-out) 14%,#fff); color:var(--lfc-out); }
.lfc-active-filters .lfc-clear .lfb-icon { width:13px; height:13px; }
.lfc-live-empty { padding:40px 24px; border:1px dashed #d8e2dd; border-radius:18px; background:#fff; text-align:center; }
.lfc-live-empty h2 { margin:0 0 6px; font-size:17px; font-weight:800; }
.lfc-live-empty p { margin:0; color:var(--lfc-muted); }
.lfc-filters-dialog { width:min(420px,calc(100vw - 20px)); max-height:86dvh; padding:0; border:0; border-radius:20px; overflow:hidden; }
.lfc-filters-dialog::backdrop { background:rgba(11,27,20,.42); }
.lfc-filters-dialog header { padding:16px 18px 12px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #eef2f0; }
.lfc-filters-dialog h2 { margin:0; font-size:17px; font-weight:800; letter-spacing:-.02em; }
.lfc-filters-dialog header button { width:38px; height:38px; display:grid; place-items:center; padding:0; border:1px solid var(--lfc-line); border-radius:11px; background:#fff; color:var(--lfc-ink); }
.lfc-filters-body { padding:12px 8px 20px; max-height:calc(86dvh - 64px); overflow-y:auto; }
@media (max-width:1040px) {
  .lfc-filters-button { display:inline-flex; }
  .lfc-filters-button span { display:none; }
  .lfc-filters-dialog { width:100%; max-width:none; margin:auto auto 0; border-radius:22px 22px 0 0; }
}

/* Promotions: notices under the header and labels on the products */
.lfc-notices { width:min(1400px,100%); margin:0 auto; padding:12px 22px 0; display:flex; flex-direction:column; gap:8px; }
.lfc-notice { margin:0; padding:11px 14px; display:flex; align-items:center; gap:10px; border-radius:13px; font-size:13.5px; line-height:1.4; }
.lfc-notice b { padding:3px 9px; border-radius:999px; background:#ffffffcc; font-size:11.5px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.lfc-notice.tone-offer { background:#fdecdd; color:#8a3d10; }
.lfc-notice.tone-new { background:#e4f2e9; color:#12603f; }
.lfc-notice.tone-info { background:#e3edfb; color:#1d4e87; }
.lfc-notice.tone-warning { background:#fdeaea; color:#8f2b2b; }
.lfc-badges { position:absolute; top:10px; left:10px; display:flex; flex-wrap:wrap; gap:5px; max-width:calc(100% - 78px); }
.lfc-badge { padding:4px 9px; border-radius:999px; font-size:11px; font-weight:800; letter-spacing:.02em; text-decoration:none; }
.lfc-badge.tone-offer { background:#f4a15a; color:#3b1c05; }
.lfc-badge.tone-new { background:#2f9d63; color:#fff; }
.lfc-badge.tone-info { background:#4f86d6; color:#fff; }
.lfc-badge.tone-warning { background:#e0655f; color:#fff; }
.lfc-promo-filters { padding:0 10px 4px; display:flex; flex-wrap:wrap; gap:6px; }
.lfc-promo-filters .lfc-badge { opacity:.85; }
.lfc-promo-filters .lfc-badge:hover { opacity:1; }
.lfc-promo-filters .lfc-badge[aria-current] { opacity:1; box-shadow:0 0 0 2px #fff,0 0 0 4px currentColor; }
@media (max-width:1040px) { .lfc-notices { padding:10px 16px 0; } .lfc-notice { font-size:13px; } }

/* Promo popup: the advert that greets the visitor once per session */
.lfc-promo-popup { width:min(440px,calc(100vw - 28px)); padding:0; border:0; border-radius:22px; text-align:center; overflow:hidden; }
.lfc-promo-image { width:100%; height:auto; aspect-ratio:1.6; object-fit:cover; display:block; background:#eef2f0; }
.lfc-promo-copy { padding:22px 24px 20px; }
.lfc-promo-popup:not(:has(.lfc-promo-image)) .lfc-promo-copy { padding-top:30px; }
.lfc-promo-popup::backdrop { background:rgba(11,27,20,.5); }
.lfc-promo-popup.tone-offer { background:linear-gradient(160deg,#fff4e8,#fff); }
.lfc-promo-popup.tone-new { background:linear-gradient(160deg,#e9f6ee,#fff); }
.lfc-promo-popup.tone-info { background:linear-gradient(160deg,#e9f0fb,#fff); }
.lfc-promo-popup.tone-warning { background:linear-gradient(160deg,#fdeced,#fff); }
.lfc-promo-close { position:absolute; top:12px; right:12px; z-index:2; width:36px; height:36px; display:grid; place-items:center; padding:0; border:0; border-radius:999px; background:#ffffffe6; color:var(--lfc-ink); box-shadow:0 6px 16px -10px rgba(10,40,26,.9); }
.lfc-promo-badge { display:inline-block; margin-bottom:14px; padding:6px 14px; border-radius:999px; font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.lfc-promo-popup.tone-offer .lfc-promo-badge { background:#f4a15a; color:#3b1c05; }
.lfc-promo-popup.tone-new .lfc-promo-badge { background:#2f9d63; color:#fff; }
.lfc-promo-popup.tone-info .lfc-promo-badge { background:#4f86d6; color:#fff; }
.lfc-promo-popup.tone-warning .lfc-promo-badge { background:#e0655f; color:#fff; }
.lfc-promo-message { margin:0 0 18px; font-size:21px; font-weight:800; line-height:1.3; letter-spacing:-.02em; color:var(--lfc-ink); text-wrap:pretty; }
.lfc-promo-cta { min-height:50px; display:flex; align-items:center; justify-content:center; gap:9px; border-radius:14px; background:var(--site-accent); color:#fff; font-size:15px; font-weight:800; text-decoration:none; }
.lfc-promo-cta .lfb-icon { width:18px; height:18px; }
.lfc-promo-dismiss { width:100%; min-height:44px; margin-top:8px; border:0; background:transparent; color:var(--lfc-muted); font-size:13.5px; font-weight:700; }
@media (max-width:520px) { .lfc-promo-copy { padding:18px 18px 16px; } .lfc-promo-message { font-size:19px; } .lfc-promo-image { aspect-ratio:1.4; } }

/* Pictures the business uploaded for its categories and brands */
.lfc-cat-icon.has-image { overflow:hidden; padding:0; }
.lfc-cat-icon img { width:100%; height:100%; object-fit:cover; }
.lfc-chip-thumb { width:22px; height:22px; flex:none; border-radius:7px; object-fit:cover; }
.lfc-brand-thumb { width:26px; height:26px; flex:none; border-radius:8px; object-fit:cover; }
.lfc-brands a { gap:9px; }
.lfc-brands a span { flex:1; min-width:0; }
