:root {
  --vx-bg: #f6f8fc;
  --vx-surface: #ffffff;
  --vx-surface-2: #eef3fb;
  --vx-text: #1f2937;
  --vx-muted: #4D4D4D;
  --vx-primary: #0049F2;
  --vx-secondary: #0A8EDD;
  --vx-accent: #E84141;
  --vx-border: rgba(77,77,77,.12);
  --vx-shadow: 0 18px 50px rgba(15, 23, 42, .10);
  --vx-radius: 24px;
  --vx-radius-sm: 16px;
  --vx-card-img-bg: linear-gradient(135deg, rgba(10,142,221,.16), rgba(232,65,65,.12));
  --vx-max: 1180px;
  --vx-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--vx-bg);
  color: var(--vx-text);
  font-family: var(--vx-font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.vx-shell { min-height: 100vh; }
.vx-container { width: min(var(--vx-max), calc(100% - 32px)); margin-inline: auto; }

.vx-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--vx-bg) 78%, transparent);
  border-bottom: 1px solid var(--vx-border);
}
.vx-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.vx-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.vx-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, var(--vx-primary), var(--vx-secondary));
  box-shadow: 0 12px 25px rgba(0,0,0,.14);
}
.vx-brand h1 { margin: 0; font-size: clamp(1rem, 3vw, 1.2rem); line-height: 1.05; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 48vw; }
.vx-brand p { margin: 3px 0 0; color: var(--vx-muted); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 52vw; }
.vx-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--vx-accent) 12%, var(--vx-surface));
  color: color-mix(in srgb, var(--vx-accent) 60%, #111827);
  border: 1px solid color-mix(in srgb, var(--vx-accent) 20%, transparent);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}
.vx-status::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--vx-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--vx-accent) 18%, transparent); }

.vx-hero { padding: 32px 0 20px; }
.vx-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: 24px;
  align-items: center;
  border-radius: calc(var(--vx-radius) + 8px);
  padding: clamp(24px, 5vw, 54px);
  background: var(--vx-hero-bg, linear-gradient(135deg, color-mix(in srgb, var(--vx-primary) 96%, #fff), color-mix(in srgb, var(--vx-secondary) 74%, #111827)));
  color: var(--vx-hero-text, #fff);
  box-shadow: var(--vx-shadow);
}
.vx-hero-card::before,
.vx-hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  filter: blur(1px);
}
.vx-hero-card::before { width: 280px; height: 280px; right: -80px; top: -90px; }
.vx-hero-card::after { width: 170px; height: 170px; left: 40%; bottom: -80px; background: rgba(255,255,255,.10); }
.vx-hero-copy { position: relative; z-index: 1; }
.vx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.vx-hero h2 { margin: 18px 0 12px; font-size: clamp(2rem, 6vw, 4.3rem); line-height: .95; letter-spacing: -.07em; max-width: 820px; }
.vx-hero p { margin: 0; max-width: 640px; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.55; color: color-mix(in srgb, var(--vx-hero-text, #fff) 85%, transparent); }
.vx-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--vx-primary);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.vx-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
.vx-btn.secondary { background: rgba(255,255,255,.16); color: inherit; border: 1px solid rgba(255,255,255,.24); box-shadow: none; }
.vx-btn.light { background: #fff; color: #111827; }
.vx-hero-visual { position: relative; z-index: 1; min-height: 230px; display: grid; place-items: center; }
.vx-feature-product {
  width: min(100%, 380px);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}
.vx-feature-img {
  min-height: 165px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.16);
  font-size: 4.6rem;
}
.vx-feature-row { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin-top: 14px; }
.vx-feature-row h3 { margin: 0 0 4px; font-size: 1.15rem; }
.vx-feature-row p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.vx-price { font-weight: 950; letter-spacing: -.04em; font-size: 1.25rem; white-space: nowrap; }

.vx-controls { padding: 18px 0 12px; }
.vx-controls-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--vx-border);
  background: color-mix(in srgb, var(--vx-surface) 94%, transparent);
  border-radius: var(--vx-radius);
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.vx-search { position: relative; }
.vx-search input {
  width: 100%;
  border: 1px solid var(--vx-border);
  outline: none;
  background: var(--vx-surface-2);
  color: var(--vx-text);
  border-radius: 18px;
  padding: 15px 16px 15px 45px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.vx-search input:focus { border-color: color-mix(in srgb, var(--vx-secondary) 60%, var(--vx-border)); background: var(--vx-surface); box-shadow: 0 0 0 5px color-mix(in srgb, var(--vx-secondary) 14%, transparent); }
.vx-search span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--vx-muted); }
.vx-cart-btn { background: var(--vx-secondary); color: var(--vx-cart-btn-text, #111827); }

.vx-cats-wrap { overflow-x: auto; scrollbar-width: none; padding: 12px 0 22px; }
.vx-cats-wrap::-webkit-scrollbar { display: none; }
.vx-cats { display: flex; gap: 10px; min-width: max-content; }
.vx-cat {
  border: 1px solid var(--vx-border);
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--vx-surface);
  color: var(--vx-text);
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(15,23,42,.04);
}
.vx-cat.active { background: var(--vx-primary); color: var(--vx-cat-active-text, #fff); border-color: transparent; }

.vx-section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 16px 0 18px; }
.vx-section-head h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.3rem); letter-spacing: -.06em; }
.vx-section-head p { margin: 6px 0 0; color: var(--vx-muted); }
.vx-count { color: var(--vx-muted); font-weight: 800; white-space: nowrap; }
.vx-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding-bottom: 90px; }
.vx-product {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  background: var(--vx-surface);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.vx-product:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(15,23,42,.11); border-color: color-mix(in srgb, var(--vx-secondary) 35%, var(--vx-border)); }
.vx-product-img {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: var(--vx-card-img-bg);
}
.vx-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 950;
  background: color-mix(in srgb, var(--vx-secondary) 90%, #fff);
  color: var(--vx-badge-text, #111827);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.vx-product-body { padding: 15px; }
.vx-product h3 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -.035em; }
.vx-product p { margin: 0 0 14px; color: var(--vx-muted); line-height: 1.45; font-size: .92rem; min-height: 52px; }
.vx-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vx-product-price { font-weight: 950; font-size: 1.1rem; letter-spacing: -.045em; }
.vx-small-btn {
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--vx-primary);
  color: var(--vx-add-text, #fff);
  font-weight: 900;
}

.vx-floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #072113;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(37,211,102,.36);
}

.vx-cart-panel {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}
.vx-cart-panel.open { display: block; }
.vx-cart-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.52); backdrop-filter: blur(4px); }
.vx-cart-box {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: 14px;
  width: min(430px, calc(100vw - 28px));
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: var(--vx-surface);
  color: var(--vx-text);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  overflow: hidden;
}
.vx-cart-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px; border-bottom: 1px solid var(--vx-border); }
.vx-cart-head h3 { margin: 0; font-size: 1.25rem; letter-spacing: -.04em; }
.vx-icon-btn { border: 0; width: 38px; height: 38px; border-radius: 999px; background: var(--vx-surface-2); color: var(--vx-text); font-weight: 900; }
.vx-cart-items { flex: 1; overflow: auto; padding: 14px 18px; display: grid; gap: 12px; align-content: start; }
.vx-empty { color: var(--vx-muted); text-align: center; padding: 48px 18px; }
.vx-cart-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--vx-border); border-radius: 18px; }
.vx-cart-emoji { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--vx-card-img-bg); font-size: 1.5rem; }
.vx-cart-item h4 { margin: 0 0 4px; font-size: .95rem; }
.vx-cart-item p { margin: 0; color: var(--vx-muted); font-size: .84rem; }
.vx-qty { display: flex; align-items: center; gap: 8px; }
.vx-qty button { width: 30px; height: 30px; border: 0; border-radius: 999px; background: var(--vx-surface-2); font-weight: 900; color: var(--vx-text); }
.vx-cart-foot { padding: 18px; border-top: 1px solid var(--vx-border); display: grid; gap: 12px; }
.vx-total-row { display: flex; justify-content: space-between; align-items: center; font-weight: 950; font-size: 1.2rem; }
.vx-note textarea { width: 100%; min-height: 78px; resize: vertical; border-radius: 18px; border: 1px solid var(--vx-border); background: var(--vx-surface-2); color: var(--vx-text); padding: 12px; outline: none; }
.vx-checkout { width: 100%; background: #25d366; color: #052c16; }

.vx-footer { border-top: 1px solid var(--vx-border); padding: 28px 0 90px; color: var(--vx-muted); }
.vx-footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.vx-footer strong { color: var(--vx-text); }

@media (max-width: 960px) {
  .vx-hero-card { grid-template-columns: 1fr; }
  .vx-hero-visual { min-height: auto; }
  .vx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .vx-container { width: min(var(--vx-max), calc(100% - 22px)); }
  .vx-status { display: none; }
  .vx-brand p { max-width: 62vw; }
  .vx-hero { padding-top: 18px; }
  .vx-hero-card { padding: 22px; border-radius: 24px; min-height: auto; }
  .vx-hero h2 { font-size: 2.45rem; }
  .vx-feature-product { display: none; }
  .vx-controls-card { grid-template-columns: 1fr; }
  .vx-cart-btn { width: 100%; }
  .vx-section-head { align-items: start; flex-direction: column; }
  .vx-grid { grid-template-columns: 1fr; gap: 14px; }
  .vx-product { display: grid; grid-template-columns: 120px 1fr; border-radius: 20px; }
  .vx-product-img { min-height: 100%; font-size: 2.8rem; }
  .vx-product p { min-height: auto; font-size: .88rem; }
  .vx-floating-whatsapp { left: 12px; right: 12px; justify-content: center; bottom: 12px; }
  .vx-footer { padding-bottom: 88px; }
}


/* Store share action */
.vx-top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex:0 0 auto;
}
.vx-share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:40px;
  padding:9px 14px;
  border:1px solid color-mix(in srgb, var(--vx-border) 88%, transparent);
  border-radius:16px;
  background:color-mix(in srgb, var(--vx-surface) 86%, transparent);
  color:var(--vx-text);
  font-weight:850;
  letter-spacing:-.01em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.vx-share-btn:hover{
  transform:translateY(-1px);
  background:color-mix(in srgb, var(--vx-surface) 94%, #fff);
  border-color:color-mix(in srgb, var(--vx-secondary) 22%, var(--vx-border));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.82), 0 14px 30px rgba(15,23,42,.09);
}
.vx-share-btn .vx-inline-icon{width:16px;height:16px;opacity:.9}
.vx-hero-actions .js-share-store{
  background:linear-gradient(180deg, rgba(255,255,255,.17), rgba(255,255,255,.11));
  border:1px solid rgba(255,255,255,.20);
  color:#fff;
  box-shadow:0 14px 26px rgba(0,0,0,.10);
}
.vx-hero-actions .js-share-store:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.15));
  box-shadow:0 18px 36px rgba(0,0,0,.14);
}
.vx-mobile-share{
  background:linear-gradient(180deg, color-mix(in srgb, var(--vx-primary) 92%, #fff), var(--vx-primary))!important;
  color:#fff!important;
  box-shadow:0 14px 28px rgba(15,23,42,.18)!important;
}
@media (max-width:680px){
  .vx-top-actions{gap:8px}
  .vx-share-btn{
    width:42px;
    height:42px;
    min-height:42px;
    padding:0;
    border-radius:14px;
    background:color-mix(in srgb, var(--vx-surface) 78%, transparent);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 8px 20px rgba(15,23,42,.06);
  }
  .vx-share-btn span{display:none}
  .vx-status{display:none!important}
  .vx-mobile-actions{grid-template-columns:repeat(3,minmax(0,1fr))}
  .vx-mobile-action{font-size:.78rem!important;gap:5px!important;padding:0 6px!important}
  .vx-mobile-action .vx-inline-icon{width:16px!important;height:16px!important}
}

/* =========================================================
   Mobile UX patch - LojiMix
   Mantém os 15 modelos espelhados, mas força uma experiência
   boa no celular mesmo quando o layout do modelo altera grid,
   cards ou tamanhos de imagem.
   ========================================================= */
.vx-mobile-actions { display: none; }
.vx-toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  z-index: 60;
  max-width: min(92vw, 380px);
  transform: translate(-50%, 14px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 15px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--vx-text) 90%, #000);
  color: var(--vx-surface);
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  transition: opacity .2s ease, transform .2s ease;
}
.vx-toast.show { opacity: 1; transform: translate(-50%, 0); }
body.vx-cart-open { overflow: hidden; }

@media (max-width: 680px) {
  html, body { overflow-x: hidden; }
  .vx-shell { min-height: 100dvh; }
  .vx-container { width: min(var(--vx-max), calc(100% - 22px)) !important; }

  .vx-topbar { z-index: 35; }
  .vx-topbar-inner { padding: 10px 0 !important; gap: 10px !important; }
  .vx-logo { width: 42px !important; height: 42px !important; border-radius: 14px !important; font-size: .95rem !important; }
  .vx-brand { gap: 10px !important; min-width: 0 !important; }
  .vx-brand h1 { max-width: 70vw !important; font-size: 1rem !important; line-height: 1.08 !important; }
  .vx-brand p { max-width: 70vw !important; font-size: .78rem !important; }

  .vx-hero { padding: 14px 0 8px !important; }
  .vx-hero-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    min-height: 0 !important;
    padding: 20px !important;
    border-radius: 24px !important;
  }
  .vx-hero-card::before { width: 180px !important; height: 180px !important; right: -80px !important; top: -70px !important; }
  .vx-hero-card::after { display: none !important; }
  .vx-eyebrow { padding: 7px 10px !important; font-size: .68rem !important; }
  .vx-hero h2 { margin: 14px 0 9px !important; font-size: clamp(1.85rem, 10vw, 2.35rem) !important; line-height: .96 !important; }
  .vx-hero p { font-size: .92rem !important; line-height: 1.45 !important; }
  .vx-hero-actions { margin-top: 16px !important; gap: 10px !important; }
  .vx-hero-actions .vx-btn { flex: 1 1 135px !important; min-height: 44px !important; padding: 12px 13px !important; font-size: .88rem !important; }
  .vx-feature-product { display: none !important; }

  .vx-controls { padding: 10px 0 6px !important; }
  .vx-controls-card {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 20px !important;
  }
  .vx-search input { padding: 13px 14px 13px 42px !important; border-radius: 16px !important; font-size: .92rem !important; }
  .vx-search span { left: 14px !important; }
  .vx-controls-card .vx-cart-btn { display: none !important; }

  .vx-cats-wrap { padding: 8px 0 14px !important; }
  .vx-cats { gap: 8px !important; }
  .vx-cat { padding: 10px 13px !important; border-radius: 999px !important; font-size: .84rem !important; box-shadow: none !important; }

  .vx-section-head { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; padding: 8px 0 13px !important; }
  .vx-section-head h2 { font-size: 1.35rem !important; line-height: 1.05 !important; }
  .vx-section-head p { font-size: .86rem !important; line-height: 1.35 !important; }
  .vx-count { font-size: .85rem !important; }

  .vx-grid { grid-template-columns: 1fr !important; gap: 12px !important; padding-bottom: 128px !important; }
  .vx-product {
    display: grid !important;
    grid-template-columns: minmax(96px, 30%) 1fr !important;
    min-height: 134px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 24px rgba(15,23,42,.08) !important;
    transform: none !important;
  }
  .vx-product:hover { transform: none !important; }
  .vx-product-img {
    min-height: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    font-size: 2.35rem !important;
  }
  .vx-badge {
    top: 8px !important;
    left: 8px !important;
    max-width: 82px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding: 5px 7px !important;
    font-size: .62rem !important;
  }
  .vx-product-body { min-width: 0 !important; display: flex !important; flex-direction: column !important; padding: 12px !important; }
  .vx-product h3 {
    margin: 0 0 5px !important;
    font-size: .98rem !important;
    line-height: 1.15 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .vx-product p {
    margin: 0 0 10px !important;
    min-height: 0 !important;
    font-size: .82rem !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .vx-product-foot { margin-top: auto !important; gap: 8px !important; }
  .vx-product-price { font-size: .98rem !important; }
  .vx-small-btn { min-height: 36px !important; padding: 8px 10px !important; font-size: .78rem !important; }

  .vx-floating-whatsapp { display: none !important; }
  .vx-mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 42;
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid var(--vx-border);
    background: color-mix(in srgb, var(--vx-surface) 86%, transparent);
    color: var(--vx-text);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(15,23,42,.18);
  }
  .vx-mobile-action {
    min-height: 48px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: var(--vx-primary);
    font-weight: 950;
    text-align: center;
    box-shadow: none;
  }
  .vx-mobile-action strong {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    padding: 0 6px;
    background: rgba(255,255,255,.20);
    font-size: .78rem;
  }
  .vx-mobile-whats { background: #25d366 !important; color: #052c16 !important; }

  .vx-cart-box {
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    height: min(88dvh, 680px) !important;
    border-radius: 28px 28px 0 0 !important;
  }
  .vx-cart-head { padding: 15px 16px !important; }
  .vx-cart-items { padding: 12px 14px !important; gap: 10px !important; }
  .vx-cart-item { grid-template-columns: 44px 1fr auto !important; gap: 10px !important; padding: 9px !important; border-radius: 16px !important; }
  .vx-cart-emoji { width: 44px !important; height: 44px !important; border-radius: 14px !important; font-size: 1.35rem !important; }
  .vx-cart-item h4 { font-size: .9rem !important; }
  .vx-cart-item p { font-size: .78rem !important; }
  .vx-qty { gap: 5px !important; }
  .vx-qty button { width: 34px !important; height: 34px !important; }
  .vx-cart-foot { padding: 14px 14px calc(14px + env(safe-area-inset-bottom)) !important; gap: 10px !important; }
  .vx-note textarea { min-height: 64px !important; border-radius: 16px !important; }
  .vx-checkout { min-height: 48px !important; }

  .vx-footer { padding-bottom: 116px !important; }
}

@media (max-width: 380px) {
  .vx-hero h2 { font-size: 1.82rem !important; }
  .vx-product { grid-template-columns: 98px 1fr !important; min-height: 132px !important; }
  .vx-product-img { font-size: 2.05rem !important; }
  .vx-product-body { padding: 10px !important; }
  .vx-product h3 { font-size: .92rem !important; }
  .vx-product p { font-size: .78rem !important; -webkit-line-clamp: 2 !important; }
  .vx-product-foot { align-items: flex-start !important; flex-direction: column !important; gap: 6px !important; }
  .vx-small-btn { width: 100% !important; }
  .vx-mobile-actions { left: 8px !important; right: 8px !important; bottom: calc(8px + env(safe-area-inset-bottom)) !important; }
  .vx-mobile-action { min-height: 46px !important; font-size: .86rem !important; }
}


.vx-inline-icon{width:18px;height:18px;display:inline-block;vertical-align:middle;flex:0 0 auto}.vx-inline-icon.lg{width:36px;height:36px}.vx-icon-tile{width:78px;height:78px;border-radius:24px;display:grid;place-items:center;background:linear-gradient(135deg,color-mix(in srgb,var(--vx-secondary) 20%,#fff),color-mix(in srgb,var(--vx-primary) 10%,#fff));color:var(--vx-primary);box-shadow:inset 0 1px 0 rgba(255,255,255,.6),0 18px 34px rgba(15,23,42,.08);border:1px solid rgba(255,255,255,.75)}.vx-icon-tile.hero{width:110px;height:110px;border-radius:30px;background:rgba(255,255,255,.18);color:#fff;border:1px solid rgba(255,255,255,.24);box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 18px 44px rgba(0,0,0,.16)}.vx-btn{border:1px solid transparent;background:linear-gradient(180deg,color-mix(in srgb,var(--vx-primary) 92%,#fff),var(--vx-primary));border-radius:18px}.vx-btn.secondary{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.22);border-radius:18px}.vx-btn.light{background:#fff;border:1px solid rgba(255,255,255,.45);border-radius:18px}.vx-cart-btn{background:linear-gradient(180deg,color-mix(in srgb,var(--vx-secondary) 88%,#fff),var(--vx-secondary));border-radius:18px}.vx-small-btn{display:inline-flex;align-items:center;gap:8px;border-radius:16px;padding:11px 14px;background:linear-gradient(180deg,color-mix(in srgb,var(--vx-primary) 94%,#fff),var(--vx-primary));box-shadow:0 14px 26px rgba(15,23,42,.16)}.vx-small-btn .vx-inline-icon{width:16px;height:16px}.vx-cat{display:inline-flex;align-items:center;gap:10px;padding:11px 16px;border-radius:16px;background:linear-gradient(180deg,#fff,color-mix(in srgb,var(--vx-surface) 94%,#edf1f7))}.vx-cat.active{box-shadow:0 14px 26px rgba(15,23,42,.16);background:linear-gradient(180deg,color-mix(in srgb,var(--vx-primary) 94%,#fff),var(--vx-primary))}.vx-cat-icon{width:24px;height:24px;display:grid;place-items:center;border-radius:10px;background:color-mix(in srgb,var(--vx-secondary) 16%,#fff);color:var(--vx-primary)}.vx-product-img{padding:18px}.vx-product{border-radius:22px}.vx-product-body{padding:18px}.vx-cart-emoji{width:46px;height:46px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(135deg,color-mix(in srgb,var(--vx-secondary) 20%,#fff),color-mix(in srgb,var(--vx-primary) 8%,#fff));color:var(--vx-primary);box-shadow:inset 0 1px 0 rgba(255,255,255,.6)}.vx-search span{display:grid;place-items:center}.vx-floating-whatsapp,.vx-mobile-action{border-radius:18px}.vx-mobile-action{display:inline-flex;align-items:center;justify-content:center;gap:8px}.vx-mobile-action .vx-inline-icon{width:17px;height:17px}.vx-checkout{background:linear-gradient(180deg,#22c55e,#16a34a);color:#fff}.vx-feature-img{background:none}


/* LojiMix branding */
.vx-logo.vx-logo-img{
  background:linear-gradient(135deg,var(--vx-primary),var(--vx-secondary));
  overflow:hidden;
}
.vx-logo.vx-logo-img img{
  width:76%;
  height:76%;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 1px 0 rgba(0,0,0,.08));
}


.vx-cart-btn { background: linear-gradient(135deg, var(--vx-primary), var(--vx-secondary)); color: #fff; box-shadow: 0 14px 34px rgba(0,73,242,.20); }
.vx-btn { box-shadow: 0 12px 28px rgba(0,73,242,.16); }
.vx-btn.primary, .vx-add, .vx-cat.active { background: linear-gradient(135deg, var(--vx-primary), var(--vx-secondary)); }
.vx-share-btn, .vx-mobile-share { background: linear-gradient(135deg, #B82A2A, #E84141) !important; color: #fff !important; border: 0 !important; box-shadow: 0 14px 32px rgba(184,42,42,.24); }
.vx-mobile-share:hover, .vx-share-btn:hover { filter: brightness(1.03); }

