:root{--t:#ce134c;--bg:#eaeaea;--w:#fff;--d:#34313a;--m:#8f8f8f;--g:#4daf3d;--r:#e53935;--s:0 4px 18px #00000018}*{box-sizing:border-box}html,body{margin:0;min-height:100%;font-family:Montserrat,Arial,sans-serif;background:var(--bg);color:var(--d)}button,input,select,textarea{font:inherit}button{cursor:pointer}.app{max-width:760px;margin:auto;min-height:100vh;background:#f6f6f6;box-shadow:0 0 20px #0001}.topbar{position:sticky;top:0;z-index:20;background:var(--t);color:#fff;padding:10px 12px;display:flex;align-items:center;gap:10px;min-height:54px}.brand{font-weight:700;flex:1}.iconbtn{border:0;background:transparent;color:#fff;font-size:22px;padding:7px;position:relative}.badge{position:absolute;top:0;right:0;background:#ff1744;border-radius:10px;font-size:10px;padding:2px 5px}.search{padding:8px;background:var(--t)}.search input{width:100%;border:0;border-radius:5px;padding:11px 14px;outline:0}.hero{position:relative;overflow:hidden;background:#fff}.hero img{width:100%;display:block;aspect-ratio:2.25/1;object-fit:cover}.hero .copy{position:absolute;left:20px;top:18%;max-width:48%;font-size:13px}.hero .copy b{display:block;font-size:22px;margin-bottom:4px}.section{padding:14px 12px}.section h3{margin:0 0 12px;font-size:15px}.categories{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.cat{background:#fff;border:1px solid #eee;border-radius:7px;padding:10px;text-align:center;box-shadow:var(--s);min-height:108px}.cat img{width:58px;height:58px;object-fit:contain;margin:auto}.cat span{display:block;margin-top:6px;font-size:11px;font-weight:600}.products{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.product{background:#fff;border-radius:7px;padding:10px;box-shadow:var(--s)}.product img{width:100%;height:140px;object-fit:contain}.product h4{font-size:12px;line-height:1.35;min-height:33px;margin:8px 0 5px}.sub{font-size:10px;color:#888;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.price{font-size:16px;font-weight:700;color:var(--t);margin-top:6px}.stock{font-size:10px;color:var(--g)}.stock.off{color:var(--r)}.btn{border:0;border-radius:22px;background:var(--t);color:#fff;padding:11px 18px;font-weight:600}.btn.secondary{background:#fff;color:var(--t);border:1px solid var(--t)}.btn.full{width:100%}.btn:disabled{opacity:.45}.bottom{position:sticky;bottom:0;z-index:20;background:#fff;border-top:1px solid #ddd;display:grid;grid-template-columns:repeat(6,1fr);min-height:60px}.bottom button{border:0;background:#fff;color:#777;font-size:10px;padding:6px 2px}.bottom button b{display:block;font-size:19px;color:var(--t);margin-bottom:2px}.overlay{position:fixed;inset:0;background:#0008;z-index:80;display:none;align-items:flex-end;justify-content:center}.overlay.open{display:flex}.sheet{background:#fff;width:min(760px,100%);max-height:92vh;border-radius:16px 16px 0 0;overflow:auto;padding:16px}.sheet-head{display:flex;align-items:center;gap:10px;margin-bottom:12px}.sheet-head h2{font-size:18px;margin:0;flex:1}.close{border:0;background:#eee;border-radius:50%;width:34px;height:34px}.form{display:grid;gap:10px}.form input,.form select,.form textarea{width:100%;border:1px solid #ddd;background:#fff;border-radius:7px;padding:11px}.form label{font-size:11px;color:#666}.cart-item,.order-card{display:grid;grid-template-columns:72px 1fr auto;gap:10px;align-items:center;border-bottom:1px solid #eee;padding:10px 0}.cart-item img{width:68px;height:68px;object-fit:contain}.cart-item h4{font-size:12px;margin:0 0 5px}.qty{width:68px}.total{display:flex;justify-content:space-between;font-weight:800;font-size:18px;padding:16px 0}.empty{text-align:center;color:#888;padding:35px 10px}.login-logo{width:100px;height:100px;object-fit:contain;margin:8px auto 16px;display:block}.notice{padding:10px;border-radius:7px;background:#fff4f7;color:#8a1237;font-size:12px;margin:8px 0}.toast{position:fixed;left:50%;bottom:80px;transform:translateX(-50%);z-index:200;background:#292929;color:#fff;padding:10px 14px;border-radius:18px;font-size:12px;display:none;max-width:85%}.toast.show{display:block}.profile{background:#fff;border-radius:8px;padding:14px;box-shadow:var(--s)}.small{font-size:11px;color:#777}@media(min-width:620px){.categories{grid-template-columns:repeat(6,1fr)}.products{grid-template-columns:repeat(3,1fr)}}

/* Card de acesso/cadastro na home */
.account-card{
  margin:12px;
  background:#fff;
  border:1px solid #ececec;
  border-radius:12px;
  box-shadow:0 5px 16px rgba(0,0,0,.07);
  padding:11px 12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.account-card-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  background:#fff0f5;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.account-card-icon img{
  width:31px;
  height:31px;
  object-fit:contain;
}
.account-card-copy{
  flex:1;
  min-width:0;
}
.account-card-copy strong{
  display:block;
  color:#34313a;
  font-size:12px;
  line-height:1.2;
  margin-bottom:3px;
}
.account-card-copy span{
  display:block;
  color:#777;
  font-size:9.5px;
  line-height:1.35;
}
.account-card-actions{
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
}
.account-btn{
  border-radius:18px;
  padding:8px 11px;
  font-size:10px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.account-btn-light{
  background:#fff;
  color:var(--t);
  border:1px solid #e5a2b7;
}
.account-btn-primary{
  background:var(--t);
  color:#fff;
  border:1px solid var(--t);
}
.account-card.logged{
  border-color:#f1cad7;
  background:linear-gradient(90deg,#fff,#fff8fa);
}
.account-card.logged .account-card-copy strong{
  color:var(--t);
}
@media(max-width:560px){
  .account-card{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .account-card-copy{
    padding-top:3px;
  }
  .account-card-actions{
    width:100%;
    padding-left:52px;
  }
  .account-btn{
    flex:1;
    padding:9px 10px;
  }
}

.promo-badge{
  display:inline-block;
  background:#ce134c;
  color:#fff;
  border-radius:4px;
  padding:4px 7px;
  font-size:9px;
  font-weight:800;
  margin:3px 0 5px;
  text-transform:uppercase;
}
.old-price{
  color:#929292;
  font-size:10px;
  text-decoration:line-through;
  margin-top:5px;
}
.promo-price{
  color:#ce134c;
  font-size:17px;
  font-weight:800;
  margin-top:2px;
}
.promo-valid{
  color:#777;
  font-size:9px;
  margin-top:4px;
}
.promo-screen-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
@media(max-width:420px){
  .bottom button{font-size:8px}
  .bottom button b{font-size:17px}
}
